
    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_39345f199003969d6a63b94d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_b5dc4e0a6134200068c21429.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_2b3f87c49e8df640366c23f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_bb62e4bf55a082f7e8c47e29.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966016;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_bc0ef0e30503a388359c8378.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39345f199003969d6a63b94d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_e7eea7a0df4e1d013c6b53c7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_39345f199003969d6a63b94d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.026000;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_7f56d6f73e0228c87a1c9cea.woff')format("woff");}.ff9{font-family:ff9;line-height:1.026000;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_3b4fbeb08c4bc4357eda85b9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.763000;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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:46.477200px;}
.ls7{letter-spacing:-0.972000px;}
.ls2{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.384780px;}
.ls3{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.192390px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.384780px;}
.ls0{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.660000px;}
.lsa{letter-spacing:4.288200px;}
.ls9{letter-spacing:4.656600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.016000px;}
.ws111{word-spacing:-18.348000px;}
.ws53{word-spacing:-16.500000px;}
.wsf5{word-spacing:-16.170000px;}
.ws10a{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.011200px;}
.ws2{word-spacing:-13.680000px;}
.ws7c{word-spacing:-13.500000px;}
.ws7b{word-spacing:-12.528000px;}
.ws7a{word-spacing:-10.004280px;}
.ws22{word-spacing:-9.619500px;}
.ws66{word-spacing:-9.427110px;}
.wse7{word-spacing:-9.234720px;}
.ws5f{word-spacing:-3.366000px;}
.ws107{word-spacing:-3.300000px;}
.ws105{word-spacing:-3.234000px;}
.wsea{word-spacing:-3.102000px;}
.ws29{word-spacing:-3.036000px;}
.ws56{word-spacing:-2.970000px;}
.wsd1{word-spacing:-2.904000px;}
.ws54{word-spacing:-2.838000px;}
.ws101{word-spacing:-2.772000px;}
.wsfb{word-spacing:-2.760000px;}
.wsfd{word-spacing:-2.706000px;}
.wscb{word-spacing:-2.646000px;}
.ws99{word-spacing:-2.640000px;}
.ws79{word-spacing:-2.592000px;}
.wsff{word-spacing:-2.580000px;}
.ws9d{word-spacing:-2.508000px;}
.ws59{word-spacing:-2.442000px;}
.ws57{word-spacing:-2.376000px;}
.wsc2{word-spacing:-2.322000px;}
.ws31{word-spacing:-2.310000px;}
.ws7e{word-spacing:-2.244000px;}
.ws60{word-spacing:-2.178000px;}
.ws2f{word-spacing:-2.112000px;}
.ws49{word-spacing:-2.046000px;}
.ws95{word-spacing:-1.980000px;}
.wsd5{word-spacing:-1.944000px;}
.ws5a{word-spacing:-1.914000px;}
.ws10f{word-spacing:-1.890000px;}
.wsb1{word-spacing:-1.848000px;}
.ws2e{word-spacing:-1.782000px;}
.wsba{word-spacing:-1.728000px;}
.ws33{word-spacing:-1.716000px;}
.ws98{word-spacing:-1.650000px;}
.wsb8{word-spacing:-1.620000px;}
.ws27{word-spacing:-1.584000px;}
.wsdf{word-spacing:-1.566000px;}
.wse3{word-spacing:-1.518000px;}
.wsab{word-spacing:-1.512000px;}
.ws26{word-spacing:-1.452000px;}
.ws68{word-spacing:-1.386000px;}
.ws45{word-spacing:-1.320000px;}
.wsb4{word-spacing:-1.296000px;}
.wsb2{word-spacing:-1.254000px;}
.ws96{word-spacing:-1.188000px;}
.wsa7{word-spacing:-1.122000px;}
.ws38{word-spacing:-1.056000px;}
.ws16{word-spacing:-1.026000px;}
.ws83{word-spacing:-0.990000px;}
.wsb0{word-spacing:-0.924000px;}
.wsde{word-spacing:-0.918000px;}
.wse9{word-spacing:-0.858000px;}
.ws92{word-spacing:-0.792000px;}
.ws69{word-spacing:-0.726000px;}
.wsbd{word-spacing:-0.660000px;}
.ws65{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.627000px;}
.ws80{word-spacing:-0.594000px;}
.ws28{word-spacing:-0.462000px;}
.ws110{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.396000px;}
.ws35{word-spacing:-0.330000px;}
.ws8d{word-spacing:-0.324000px;}
.ws51{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.252000px;}
.wsa8{word-spacing:-0.198000px;}
.ws44{word-spacing:-0.132000px;}
.wsf4{word-spacing:-0.120000px;}
.ws64{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.066000px;}
.wsc7{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.054000px;}
.ws6c{word-spacing:0.066000px;}
.ws11{word-spacing:0.114000px;}
.ws61{word-spacing:0.132000px;}
.wsc4{word-spacing:0.162000px;}
.ws42{word-spacing:0.198000px;}
.wsb9{word-spacing:0.216000px;}
.ws2a{word-spacing:0.264000px;}
.wscd{word-spacing:0.270000px;}
.wsad{word-spacing:0.324000px;}
.ws3f{word-spacing:0.330000px;}
.wsdc{word-spacing:0.378000px;}
.ws67{word-spacing:0.396000px;}
.wsb3{word-spacing:0.462000px;}
.wsef{word-spacing:0.480000px;}
.ws4a{word-spacing:0.528000px;}
.ws5d{word-spacing:0.594000px;}
.ws103{word-spacing:0.600000px;}
.ws5{word-spacing:0.627000px;}
.ws40{word-spacing:0.660000px;}
.wscc{word-spacing:0.702000px;}
.wsda{word-spacing:0.726000px;}
.wsc9{word-spacing:0.756000px;}
.ws6f{word-spacing:0.792000px;}
.ws63{word-spacing:0.858000px;}
.ws85{word-spacing:0.924000px;}
.ws1f{word-spacing:0.972000px;}
.ws37{word-spacing:0.990000px;}
.wsa0{word-spacing:1.056000px;}
.wsaa{word-spacing:1.080000px;}
.ws36{word-spacing:1.122000px;}
.ws8a{word-spacing:1.188000px;}
.wsc6{word-spacing:1.242000px;}
.wsd2{word-spacing:1.254000px;}
.ws58{word-spacing:1.320000px;}
.ws8f{word-spacing:1.350000px;}
.ws52{word-spacing:1.386000px;}
.wse1{word-spacing:1.440000px;}
.wsbf{word-spacing:1.452000px;}
.wsb6{word-spacing:1.458000px;}
.ws5e{word-spacing:1.518000px;}
.ws4c{word-spacing:1.584000px;}
.wsf{word-spacing:1.596000px;}
.wsbb{word-spacing:1.620000px;}
.ws30{word-spacing:1.650000px;}
.ws82{word-spacing:1.716000px;}
.ws8b{word-spacing:1.728000px;}
.wsa6{word-spacing:1.782000px;}
.ws3e{word-spacing:1.848000px;}
.ws18{word-spacing:1.881000px;}
.ws8e{word-spacing:1.890000px;}
.ws7f{word-spacing:1.914000px;}
.ws1e{word-spacing:1.974000px;}
.ws73{word-spacing:1.980000px;}
.wsd8{word-spacing:2.046000px;}
.ws70{word-spacing:2.112000px;}
.wsdd{word-spacing:2.160000px;}
.ws9c{word-spacing:2.178000px;}
.ws48{word-spacing:2.244000px;}
.wsae{word-spacing:2.268000px;}
.ws23{word-spacing:2.310000px;}
.ws9f{word-spacing:2.322000px;}
.ws88{word-spacing:2.376000px;}
.ws10b{word-spacing:2.400000px;}
.ws106{word-spacing:2.442000px;}
.wsc3{word-spacing:2.484000px;}
.ws32{word-spacing:2.508000px;}
.wsce{word-spacing:2.574000px;}
.ws4f{word-spacing:2.640000px;}
.ws9{word-spacing:2.679000px;}
.ws55{word-spacing:2.706000px;}
.wsbe{word-spacing:2.772000px;}
.ws19{word-spacing:2.793000px;}
.ws62{word-spacing:2.838000px;}
.ws47{word-spacing:2.904000px;}
.ws1a{word-spacing:2.964000px;}
.wsf0{word-spacing:2.970000px;}
.ws41{word-spacing:3.036000px;}
.wsb5{word-spacing:3.078000px;}
.wsd4{word-spacing:3.102000px;}
.ws1c{word-spacing:3.135000px;}
.ws6a{word-spacing:3.168000px;}
.ws94{word-spacing:3.234000px;}
.wsed{word-spacing:3.294000px;}
.wsd0{word-spacing:3.366000px;}
.ws46{word-spacing:3.432000px;}
.wsac{word-spacing:3.456000px;}
.ws34{word-spacing:3.498000px;}
.ws6e{word-spacing:3.564000px;}
.ws77{word-spacing:3.630000px;}
.wsca{word-spacing:3.672000px;}
.ws25{word-spacing:3.696000px;}
.wsbc{word-spacing:3.726000px;}
.ws3b{word-spacing:3.762000px;}
.ws90{word-spacing:3.780000px;}
.wsa3{word-spacing:3.828000px;}
.wsc5{word-spacing:3.888000px;}
.ws7d{word-spacing:3.894000px;}
.wsf7{word-spacing:3.942000px;}
.wsa5{word-spacing:3.960000px;}
.ws3c{word-spacing:4.026000px;}
.ws78{word-spacing:4.092000px;}
.ws1b{word-spacing:4.104000px;}
.ws43{word-spacing:4.158000px;}
.ws10e{word-spacing:4.212000px;}
.ws50{word-spacing:4.224000px;}
.ws4{word-spacing:4.275000px;}
.ws116{word-spacing:4.290000px;}
.ws100{word-spacing:4.320000px;}
.ws3d{word-spacing:4.356000px;}
.ws102{word-spacing:4.380000px;}
.ws113{word-spacing:4.422000px;}
.wsa2{word-spacing:4.488000px;}
.ws104{word-spacing:4.620000px;}
.wsb{word-spacing:4.674000px;}
.wsfa{word-spacing:4.680000px;}
.wsa1{word-spacing:4.686000px;}
.wsd3{word-spacing:4.752000px;}
.wsf8{word-spacing:4.806000px;}
.ws6d{word-spacing:4.818000px;}
.wseb{word-spacing:4.884000px;}
.wsa4{word-spacing:4.950000px;}
.ws84{word-spacing:5.016000px;}
.ws4b{word-spacing:5.082000px;}
.ws74{word-spacing:5.148000px;}
.wsf9{word-spacing:5.160000px;}
.wse0{word-spacing:5.184000px;}
.ws75{word-spacing:5.214000px;}
.wsee{word-spacing:5.220000px;}
.ws5b{word-spacing:5.280000px;}
.ws91{word-spacing:5.412000px;}
.wsa9{word-spacing:5.478000px;}
.ws8{word-spacing:5.529000px;}
.wsf3{word-spacing:5.544000px;}
.ws2c{word-spacing:5.610000px;}
.wsc1{word-spacing:5.616000px;}
.ws5c{word-spacing:5.742000px;}
.wsc8{word-spacing:5.778000px;}
.wscf{word-spacing:5.808000px;}
.ws72{word-spacing:5.874000px;}
.ws6b{word-spacing:6.006000px;}
.ws3a{word-spacing:6.072000px;}
.wsdb{word-spacing:6.138000px;}
.ws8c{word-spacing:6.156000px;}
.ws2d{word-spacing:6.204000px;}
.wsb7{word-spacing:6.264000px;}
.ws9e{word-spacing:6.270000px;}
.wsaf{word-spacing:6.336000px;}
.ws97{word-spacing:6.402000px;}
.ws93{word-spacing:6.468000px;}
.wsfe{word-spacing:6.534000px;}
.wsf1{word-spacing:6.600000px;}
.wsc0{word-spacing:6.666000px;}
.wsd9{word-spacing:6.930000px;}
.ws81{word-spacing:6.996000px;}
.ws109{word-spacing:7.020000px;}
.wse6{word-spacing:7.062000px;}
.ws4d{word-spacing:7.194000px;}
.wsfc{word-spacing:7.260000px;}
.ws4e{word-spacing:7.326000px;}
.ws112{word-spacing:7.392000px;}
.wse4{word-spacing:7.458000px;}
.ws76{word-spacing:7.524000px;}
.ws71{word-spacing:7.590000px;}
.ws87{word-spacing:7.656000px;}
.ws89{word-spacing:7.722000px;}
.ws10d{word-spacing:7.788000px;}
.ws13{word-spacing:7.809000px;}
.wse2{word-spacing:8.052000px;}
.ws9b{word-spacing:8.184000px;}
.wsd7{word-spacing:8.448000px;}
.wsf2{word-spacing:8.646000px;}
.ws15{word-spacing:8.892000px;}
.wse8{word-spacing:8.910000px;}
.wse5{word-spacing:8.976000px;}
.ws14{word-spacing:9.063000px;}
.ws39{word-spacing:9.108000px;}
.ws115{word-spacing:9.174000px;}
.ws10c{word-spacing:9.240000px;}
.ws108{word-spacing:9.438000px;}
.ws86{word-spacing:9.504000px;}
.ws24{word-spacing:9.636000px;}
.wsc{word-spacing:9.804000px;}
.wsd6{word-spacing:9.834000px;}
.ws6{word-spacing:9.861000px;}
.wsd{word-spacing:10.260000px;}
.ws17{word-spacing:10.545000px;}
.ws114{word-spacing:11.352000px;}
.ws12{word-spacing:11.514000px;}
.wse{word-spacing:11.571000px;}
.ws7{word-spacing:12.426000px;}
.wsf6{word-spacing:20.466000px;}
.wsa{word-spacing:20.577000px;}
.wsec{word-spacing:32.184000px;}
.ws21{word-spacing:777.813000px;}
._9{margin-left:-36.117000px;}
._b{margin-left:-11.788200px;}
._6{margin-left:-10.389600px;}
._7{margin-left:-8.580000px;}
._2{margin-left:-7.179000px;}
._5{margin-left:-6.006000px;}
._0{margin-left:-4.329000px;}
._3{margin-left:-2.520000px;}
._1{margin-left:-1.224000px;}
._4{width:1.026000px;}
._8{width:2.394600px;}
._a{width:3.661200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.478000px;}
.fs2{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fs1{font-size:45.403800px;}
.fs6{font-size:50.400000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.007200px;}
.y4{bottom:42.748350px;}
.y1{bottom:42.829050px;}
.y3{bottom:54.448350px;}
.y2a{bottom:101.266050px;}
.y56{bottom:106.299150px;}
.y9f{bottom:106.299300px;}
.y100{bottom:108.134700px;}
.y29{bottom:113.266050px;}
.y55{bottom:122.499150px;}
.y9e{bottom:122.499300px;}
.yfb{bottom:122.499450px;}
.y124{bottom:124.133100px;}
.yff{bottom:126.134700px;}
.y28{bottom:134.077650px;}
.ydf{bottom:136.204500px;}
.y54{bottom:138.699150px;}
.yc8{bottom:138.699300px;}
.y9d{bottom:138.699450px;}
.y123{bottom:143.933100px;}
.y27{bottom:146.077650px;}
.yef{bottom:152.206050px;}
.y53{bottom:154.899150px;}
.y9c{bottom:154.899450px;}
.yde{bottom:156.004500px;}
.y26{bottom:158.077650px;}
.yba{bottom:162.963600px;}
.y122{bottom:163.733100px;}
.y52{bottom:171.099150px;}
.y9b{bottom:171.099450px;}
.yc7{bottom:171.099600px;}
.yee{bottom:172.006050px;}
.y125{bottom:175.195050px;}
.ydd{bottom:175.804500px;}
.yb9{bottom:182.763600px;}
.y121{bottom:183.533100px;}
.y2d{bottom:186.001650px;}
.ya8{bottom:186.009300px;}
.y6e{bottom:187.299150px;}
.y9a{bottom:187.299600px;}
.yed{bottom:191.806050px;}
.yfa{bottom:193.847100px;}
.y78{bottom:194.995050px;}
.ydc{bottom:195.604500px;}
.y2c{bottom:202.201650px;}
.yb8{bottom:202.563600px;}
.y120{bottom:203.333100px;}
.y6d{bottom:203.499150px;}
.y99{bottom:203.499600px;}
.yc6{bottom:203.499750px;}
.ya7{bottom:205.809150px;}
.yec{bottom:211.606050px;}
.y6c{bottom:211.939200px;}
.yf9{bottom:213.647100px;}
.y51{bottom:214.795050px;}
.ydb{bottom:215.404500px;}
.y2b{bottom:218.401650px;}
.y77{bottom:219.699150px;}
.y98{bottom:219.699600px;}
.yc5{bottom:219.699900px;}
.yb7{bottom:222.363600px;}
.y11f{bottom:223.133100px;}
.ya6{bottom:225.609300px;}
.yeb{bottom:231.406050px;}
.y6b{bottom:231.739200px;}
.yf8{bottom:233.446950px;}
.y50{bottom:234.595050px;}
.yda{bottom:235.204500px;}
.y76{bottom:235.899150px;}
.y97{bottom:235.899600px;}
.yb6{bottom:242.163600px;}
.y11e{bottom:242.933100px;}
.ya5{bottom:245.409300px;}
.yea{bottom:251.206050px;}
.y6a{bottom:251.539200px;}
.y75{bottom:252.099150px;}
.y25{bottom:252.334950px;}
.yf7{bottom:253.247100px;}
.y4f{bottom:254.395050px;}
.yd9{bottom:255.004500px;}
.yb5{bottom:261.963600px;}
.y11d{bottom:262.733100px;}
.yc4{bottom:264.004500px;}
.ya4{bottom:265.209300px;}
.y74{bottom:268.299150px;}
.y91{bottom:268.572600px;}
.y24{bottom:269.434950px;}
.ye9{bottom:271.006050px;}
.y69{bottom:271.339200px;}
.yf6{bottom:273.046950px;}
.y4e{bottom:274.195050px;}
.yd8{bottom:274.804500px;}
.yb4{bottom:281.763600px;}
.y11c{bottom:282.533100px;}
.yc3{bottom:283.804500px;}
.y73{bottom:284.499150px;}
.ya3{bottom:285.009300px;}
.y90{bottom:288.372600px;}
.y96{bottom:289.388700px;}
.ye8{bottom:290.806050px;}
.y68{bottom:291.139200px;}
.yf5{bottom:292.847100px;}
.y4d{bottom:293.995050px;}
.yd7{bottom:294.604500px;}
.y72{bottom:300.699150px;}
.yb3{bottom:301.563600px;}
.y11b{bottom:302.333100px;}
.yc2{bottom:303.604500px;}
.ya2{bottom:304.809150px;}
.y21{bottom:307.675800px;}
.y8f{bottom:308.172600px;}
.y95{bottom:309.188850px;}
.ye7{bottom:310.606050px;}
.y67{bottom:310.939200px;}
.yf4{bottom:312.647100px;}
.y4c{bottom:313.795050px;}
.yd6{bottom:314.404500px;}
.y71{bottom:316.899150px;}
.yb2{bottom:321.363600px;}
.y11a{bottom:322.133100px;}
.yc1{bottom:323.404500px;}
.y20{bottom:324.175800px;}
.y7e{bottom:325.116600px;}
.y8e{bottom:327.972450px;}
.y94{bottom:328.988700px;}
.ye6{bottom:330.406050px;}
.y66{bottom:330.739200px;}
.yf3{bottom:332.446950px;}
.y70{bottom:333.099150px;}
.y4b{bottom:333.595050px;}
.yd5{bottom:334.204500px;}
.y23{bottom:340.675800px;}
.yb1{bottom:341.163600px;}
.y119{bottom:341.933100px;}
.yc0{bottom:343.204500px;}
.y1f{bottom:344.897850px;}
.y7d{bottom:344.916600px;}
.y8d{bottom:347.772600px;}
.y93{bottom:348.788700px;}
.y6f{bottom:349.299150px;}
.yab{bottom:349.541550px;}
.ye5{bottom:350.206050px;}
.y65{bottom:350.539200px;}
.y4a{bottom:353.395050px;}
.yd4{bottom:354.004500px;}
.yb0{bottom:360.963600px;}
.y22{bottom:361.397850px;}
.y118{bottom:361.733100px;}
.ybf{bottom:363.004500px;}
.y7c{bottom:364.716600px;}
.y82{bottom:365.499150px;}
.yaa{bottom:367.541550px;}
.y8c{bottom:367.572600px;}
.y92{bottom:368.588700px;}
.y1e{bottom:369.901800px;}
.ye4{bottom:370.006050px;}
.y64{bottom:370.339200px;}
.y49{bottom:373.195050px;}
.yd3{bottom:373.804500px;}
.yfe{bottom:376.224750px;}
.yaf{bottom:380.763600px;}
.y117{bottom:381.533100px;}
.y81{bottom:381.699150px;}
.ybe{bottom:382.804500px;}
.y7b{bottom:384.516600px;}
.ya9{bottom:385.541400px;}
.y1d{bottom:386.401800px;}
.y8b{bottom:387.372600px;}
.y63{bottom:390.139200px;}
.y48{bottom:392.995050px;}
.yd2{bottom:393.604500px;}
.yfd{bottom:394.224750px;}
.y80{bottom:397.899150px;}
.yae{bottom:400.563600px;}
.y116{bottom:401.333100px;}
.ybd{bottom:402.604500px;}
.y1c{bottom:402.901800px;}
.y8a{bottom:407.172600px;}
.y62{bottom:409.939200px;}
.ya1{bottom:410.575050px;}
.yfc{bottom:412.224750px;}
.y7a{bottom:412.790850px;}
.y47{bottom:412.795050px;}
.yf2{bottom:412.969350px;}
.yd1{bottom:413.404500px;}
.y7f{bottom:414.099150px;}
.y1b{bottom:419.401800px;}
.yad{bottom:420.363600px;}
.y115{bottom:421.133100px;}
.y89{bottom:426.972450px;}
.ya0{bottom:428.575050px;}
.y61{bottom:429.739200px;}
.yf1{bottom:430.969350px;}
.y46{bottom:432.595050px;}
.yd0{bottom:433.204500px;}
.y1a{bottom:435.901800px;}
.yac{bottom:440.163600px;}
.y114{bottom:440.933100px;}
.ycc{bottom:444.487650px;}
.y88{bottom:446.772600px;}
.yf0{bottom:448.969350px;}
.y60{bottom:449.539200px;}
.y45{bottom:452.395050px;}
.y19{bottom:452.401800px;}
.ycf{bottom:453.004500px;}
.y79{bottom:458.013300px;}
.y113{bottom:460.733100px;}
.ycb{bottom:462.487650px;}
.y87{bottom:466.572600px;}
.y18{bottom:468.901800px;}
.y5f{bottom:469.339200px;}
.y44{bottom:472.195050px;}
.yce{bottom:472.804500px;}
.yca{bottom:480.487650px;}
.y112{bottom:480.533100px;}
.ybc{bottom:483.779250px;}
.y17{bottom:485.401800px;}
.y86{bottom:486.372600px;}
.y5e{bottom:489.139200px;}
.y43{bottom:491.995050px;}
.ycd{bottom:492.604500px;}
.yc9{bottom:498.487650px;}
.ybb{bottom:501.779250px;}
.y16{bottom:501.901800px;}
.y85{bottom:506.172600px;}
.y111{bottom:508.807200px;}
.y5d{bottom:508.939200px;}
.y42{bottom:511.795050px;}
.y15{bottom:518.401800px;}
.y84{bottom:525.972600px;}
.y5c{bottom:528.739200px;}
.y41{bottom:531.595050px;}
.ye3{bottom:534.652650px;}
.y14{bottom:534.901950px;}
.y5b{bottom:548.539050px;}
.y40{bottom:551.395050px;}
.y13{bottom:551.401950px;}
.ye2{bottom:552.652650px;}
.y83{bottom:554.246700px;}
.y110{bottom:562.588950px;}
.y12{bottom:567.901950px;}
.y5a{bottom:568.339200px;}
.ye1{bottom:570.652650px;}
.y3f{bottom:571.195050px;}
.y10f{bottom:582.388950px;}
.y59{bottom:588.139200px;}
.y11{bottom:588.624000px;}
.ye0{bottom:588.652650px;}
.y3e{bottom:590.995050px;}
.y10e{bottom:602.188950px;}
.y58{bottom:607.939200px;}
.y3d{bottom:610.795050px;}
.y10d{bottom:621.988950px;}
.y10{bottom:622.072350px;}
.y3c{bottom:630.595050px;}
.y57{bottom:636.213300px;}
.yf{bottom:640.072350px;}
.y10c{bottom:641.788950px;}
.y3b{bottom:650.395050px;}
.ye{bottom:658.072350px;}
.y10b{bottom:661.588950px;}
.y3a{bottom:670.195050px;}
.yd{bottom:678.198450px;}
.y10a{bottom:681.388950px;}
.y39{bottom:689.995050px;}
.y109{bottom:701.188950px;}
.yc{bottom:708.272550px;}
.y38{bottom:709.795050px;}
.y108{bottom:720.988950px;}
.yb{bottom:728.072550px;}
.y37{bottom:729.595050px;}
.y107{bottom:740.788950px;}
.ya{bottom:746.072550px;}
.y36{bottom:749.395050px;}
.y106{bottom:760.588950px;}
.y9{bottom:766.198500px;}
.y35{bottom:769.195050px;}
.y105{bottom:780.388950px;}
.y34{bottom:788.995050px;}
.y104{bottom:800.188950px;}
.y8{bottom:800.554500px;}
.y33{bottom:808.795050px;}
.y103{bottom:819.988950px;}
.y7{bottom:825.754500px;}
.y32{bottom:828.595050px;}
.y102{bottom:839.788950px;}
.y31{bottom:848.395050px;}
.y6{bottom:855.206400px;}
.y101{bottom:868.063050px;}
.y30{bottom:868.195050px;}
.y5{bottom:885.206400px;}
.y2f{bottom:910.997550px;}
.y2e{bottom:929.897700px;}
.h4{height:29.445000px;}
.hc{height:31.068000px;}
.h3{height:34.279869px;}
.hd{height:36.246000px;}
.hf{height:38.612571px;}
.ha{height:40.755000px;}
.h2{height:40.770000px;}
.h8{height:45.300000px;}
.he{height:46.602000px;}
.h14{height:47.193143px;}
.h12{height:49.104000px;}
.hb{height:49.191000px;}
.h11{height:49.830000px;}
.h13{height:51.780000px;}
.h9{height:56.958000px;}
.h6{height:63.420000px;}
.h7{height:65.088000px;}
.h10{height:75.922200px;}
.h5{height:77.010000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:93.543300px;}
.x8{left:97.795350px;}
.xc{left:110.551200px;}
.x7{left:114.378000px;}
.x9{left:119.055150px;}
.x2{left:210.220650px;}
.xb{left:231.560550px;}
.xa{left:293.320950px;}
.x3{left:318.519300px;}
.x4{left:336.384600px;}
.x6{left:372.047250px;}
.x1{left:602.521350px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:41.313067pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.342027pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.171013pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.342027pt;}
.ls0{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.586667pt;}
.lsa{letter-spacing:3.811733pt;}
.ls9{letter-spacing:4.139200pt;}
.ws0{word-spacing:-17.792000pt;}
.ws111{word-spacing:-16.309333pt;}
.ws53{word-spacing:-14.666667pt;}
.wsf5{word-spacing:-14.373333pt;}
.ws10a{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.454400pt;}
.ws2{word-spacing:-12.160000pt;}
.ws7c{word-spacing:-12.000000pt;}
.ws7b{word-spacing:-11.136000pt;}
.ws7a{word-spacing:-8.892693pt;}
.ws22{word-spacing:-8.550667pt;}
.ws66{word-spacing:-8.379653pt;}
.wse7{word-spacing:-8.208640pt;}
.ws5f{word-spacing:-2.992000pt;}
.ws107{word-spacing:-2.933333pt;}
.ws105{word-spacing:-2.874667pt;}
.wsea{word-spacing:-2.757333pt;}
.ws29{word-spacing:-2.698667pt;}
.ws56{word-spacing:-2.640000pt;}
.wsd1{word-spacing:-2.581333pt;}
.ws54{word-spacing:-2.522667pt;}
.ws101{word-spacing:-2.464000pt;}
.wsfb{word-spacing:-2.453333pt;}
.wsfd{word-spacing:-2.405333pt;}
.wscb{word-spacing:-2.352000pt;}
.ws99{word-spacing:-2.346667pt;}
.ws79{word-spacing:-2.304000pt;}
.wsff{word-spacing:-2.293333pt;}
.ws9d{word-spacing:-2.229333pt;}
.ws59{word-spacing:-2.170667pt;}
.ws57{word-spacing:-2.112000pt;}
.wsc2{word-spacing:-2.064000pt;}
.ws31{word-spacing:-2.053333pt;}
.ws7e{word-spacing:-1.994667pt;}
.ws60{word-spacing:-1.936000pt;}
.ws2f{word-spacing:-1.877333pt;}
.ws49{word-spacing:-1.818667pt;}
.ws95{word-spacing:-1.760000pt;}
.wsd5{word-spacing:-1.728000pt;}
.ws5a{word-spacing:-1.701333pt;}
.ws10f{word-spacing:-1.680000pt;}
.wsb1{word-spacing:-1.642667pt;}
.ws2e{word-spacing:-1.584000pt;}
.wsba{word-spacing:-1.536000pt;}
.ws33{word-spacing:-1.525333pt;}
.ws98{word-spacing:-1.466667pt;}
.wsb8{word-spacing:-1.440000pt;}
.ws27{word-spacing:-1.408000pt;}
.wsdf{word-spacing:-1.392000pt;}
.wse3{word-spacing:-1.349333pt;}
.wsab{word-spacing:-1.344000pt;}
.ws26{word-spacing:-1.290667pt;}
.ws68{word-spacing:-1.232000pt;}
.ws45{word-spacing:-1.173333pt;}
.wsb4{word-spacing:-1.152000pt;}
.wsb2{word-spacing:-1.114667pt;}
.ws96{word-spacing:-1.056000pt;}
.wsa7{word-spacing:-0.997333pt;}
.ws38{word-spacing:-0.938667pt;}
.ws16{word-spacing:-0.912000pt;}
.ws83{word-spacing:-0.880000pt;}
.wsb0{word-spacing:-0.821333pt;}
.wsde{word-spacing:-0.816000pt;}
.wse9{word-spacing:-0.762667pt;}
.ws92{word-spacing:-0.704000pt;}
.ws69{word-spacing:-0.645333pt;}
.wsbd{word-spacing:-0.586667pt;}
.ws65{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.557333pt;}
.ws80{word-spacing:-0.528000pt;}
.ws28{word-spacing:-0.410667pt;}
.ws110{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.352000pt;}
.ws35{word-spacing:-0.293333pt;}
.ws8d{word-spacing:-0.288000pt;}
.ws51{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.224000pt;}
.wsa8{word-spacing:-0.176000pt;}
.ws44{word-spacing:-0.117333pt;}
.wsf4{word-spacing:-0.106667pt;}
.ws64{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.058667pt;}
.wsc7{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.048000pt;}
.ws6c{word-spacing:0.058667pt;}
.ws11{word-spacing:0.101333pt;}
.ws61{word-spacing:0.117333pt;}
.wsc4{word-spacing:0.144000pt;}
.ws42{word-spacing:0.176000pt;}
.wsb9{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.234667pt;}
.wscd{word-spacing:0.240000pt;}
.wsad{word-spacing:0.288000pt;}
.ws3f{word-spacing:0.293333pt;}
.wsdc{word-spacing:0.336000pt;}
.ws67{word-spacing:0.352000pt;}
.wsb3{word-spacing:0.410667pt;}
.wsef{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.469333pt;}
.ws5d{word-spacing:0.528000pt;}
.ws103{word-spacing:0.533333pt;}
.ws5{word-spacing:0.557333pt;}
.ws40{word-spacing:0.586667pt;}
.wscc{word-spacing:0.624000pt;}
.wsda{word-spacing:0.645333pt;}
.wsc9{word-spacing:0.672000pt;}
.ws6f{word-spacing:0.704000pt;}
.ws63{word-spacing:0.762667pt;}
.ws85{word-spacing:0.821333pt;}
.ws1f{word-spacing:0.864000pt;}
.ws37{word-spacing:0.880000pt;}
.wsa0{word-spacing:0.938667pt;}
.wsaa{word-spacing:0.960000pt;}
.ws36{word-spacing:0.997333pt;}
.ws8a{word-spacing:1.056000pt;}
.wsc6{word-spacing:1.104000pt;}
.wsd2{word-spacing:1.114667pt;}
.ws58{word-spacing:1.173333pt;}
.ws8f{word-spacing:1.200000pt;}
.ws52{word-spacing:1.232000pt;}
.wse1{word-spacing:1.280000pt;}
.wsbf{word-spacing:1.290667pt;}
.wsb6{word-spacing:1.296000pt;}
.ws5e{word-spacing:1.349333pt;}
.ws4c{word-spacing:1.408000pt;}
.wsf{word-spacing:1.418667pt;}
.wsbb{word-spacing:1.440000pt;}
.ws30{word-spacing:1.466667pt;}
.ws82{word-spacing:1.525333pt;}
.ws8b{word-spacing:1.536000pt;}
.wsa6{word-spacing:1.584000pt;}
.ws3e{word-spacing:1.642667pt;}
.ws18{word-spacing:1.672000pt;}
.ws8e{word-spacing:1.680000pt;}
.ws7f{word-spacing:1.701333pt;}
.ws1e{word-spacing:1.754667pt;}
.ws73{word-spacing:1.760000pt;}
.wsd8{word-spacing:1.818667pt;}
.ws70{word-spacing:1.877333pt;}
.wsdd{word-spacing:1.920000pt;}
.ws9c{word-spacing:1.936000pt;}
.ws48{word-spacing:1.994667pt;}
.wsae{word-spacing:2.016000pt;}
.ws23{word-spacing:2.053333pt;}
.ws9f{word-spacing:2.064000pt;}
.ws88{word-spacing:2.112000pt;}
.ws10b{word-spacing:2.133333pt;}
.ws106{word-spacing:2.170667pt;}
.wsc3{word-spacing:2.208000pt;}
.ws32{word-spacing:2.229333pt;}
.wsce{word-spacing:2.288000pt;}
.ws4f{word-spacing:2.346667pt;}
.ws9{word-spacing:2.381333pt;}
.ws55{word-spacing:2.405333pt;}
.wsbe{word-spacing:2.464000pt;}
.ws19{word-spacing:2.482667pt;}
.ws62{word-spacing:2.522667pt;}
.ws47{word-spacing:2.581333pt;}
.ws1a{word-spacing:2.634667pt;}
.wsf0{word-spacing:2.640000pt;}
.ws41{word-spacing:2.698667pt;}
.wsb5{word-spacing:2.736000pt;}
.wsd4{word-spacing:2.757333pt;}
.ws1c{word-spacing:2.786667pt;}
.ws6a{word-spacing:2.816000pt;}
.ws94{word-spacing:2.874667pt;}
.wsed{word-spacing:2.928000pt;}
.wsd0{word-spacing:2.992000pt;}
.ws46{word-spacing:3.050667pt;}
.wsac{word-spacing:3.072000pt;}
.ws34{word-spacing:3.109333pt;}
.ws6e{word-spacing:3.168000pt;}
.ws77{word-spacing:3.226667pt;}
.wsca{word-spacing:3.264000pt;}
.ws25{word-spacing:3.285333pt;}
.wsbc{word-spacing:3.312000pt;}
.ws3b{word-spacing:3.344000pt;}
.ws90{word-spacing:3.360000pt;}
.wsa3{word-spacing:3.402667pt;}
.wsc5{word-spacing:3.456000pt;}
.ws7d{word-spacing:3.461333pt;}
.wsf7{word-spacing:3.504000pt;}
.wsa5{word-spacing:3.520000pt;}
.ws3c{word-spacing:3.578667pt;}
.ws78{word-spacing:3.637333pt;}
.ws1b{word-spacing:3.648000pt;}
.ws43{word-spacing:3.696000pt;}
.ws10e{word-spacing:3.744000pt;}
.ws50{word-spacing:3.754667pt;}
.ws4{word-spacing:3.800000pt;}
.ws116{word-spacing:3.813333pt;}
.ws100{word-spacing:3.840000pt;}
.ws3d{word-spacing:3.872000pt;}
.ws102{word-spacing:3.893333pt;}
.ws113{word-spacing:3.930667pt;}
.wsa2{word-spacing:3.989333pt;}
.ws104{word-spacing:4.106667pt;}
.wsb{word-spacing:4.154667pt;}
.wsfa{word-spacing:4.160000pt;}
.wsa1{word-spacing:4.165333pt;}
.wsd3{word-spacing:4.224000pt;}
.wsf8{word-spacing:4.272000pt;}
.ws6d{word-spacing:4.282667pt;}
.wseb{word-spacing:4.341333pt;}
.wsa4{word-spacing:4.400000pt;}
.ws84{word-spacing:4.458667pt;}
.ws4b{word-spacing:4.517333pt;}
.ws74{word-spacing:4.576000pt;}
.wsf9{word-spacing:4.586667pt;}
.wse0{word-spacing:4.608000pt;}
.ws75{word-spacing:4.634667pt;}
.wsee{word-spacing:4.640000pt;}
.ws5b{word-spacing:4.693333pt;}
.ws91{word-spacing:4.810667pt;}
.wsa9{word-spacing:4.869333pt;}
.ws8{word-spacing:4.914667pt;}
.wsf3{word-spacing:4.928000pt;}
.ws2c{word-spacing:4.986667pt;}
.wsc1{word-spacing:4.992000pt;}
.ws5c{word-spacing:5.104000pt;}
.wsc8{word-spacing:5.136000pt;}
.wscf{word-spacing:5.162667pt;}
.ws72{word-spacing:5.221333pt;}
.ws6b{word-spacing:5.338667pt;}
.ws3a{word-spacing:5.397333pt;}
.wsdb{word-spacing:5.456000pt;}
.ws8c{word-spacing:5.472000pt;}
.ws2d{word-spacing:5.514667pt;}
.wsb7{word-spacing:5.568000pt;}
.ws9e{word-spacing:5.573333pt;}
.wsaf{word-spacing:5.632000pt;}
.ws97{word-spacing:5.690667pt;}
.ws93{word-spacing:5.749333pt;}
.wsfe{word-spacing:5.808000pt;}
.wsf1{word-spacing:5.866667pt;}
.wsc0{word-spacing:5.925333pt;}
.wsd9{word-spacing:6.160000pt;}
.ws81{word-spacing:6.218667pt;}
.ws109{word-spacing:6.240000pt;}
.wse6{word-spacing:6.277333pt;}
.ws4d{word-spacing:6.394667pt;}
.wsfc{word-spacing:6.453333pt;}
.ws4e{word-spacing:6.512000pt;}
.ws112{word-spacing:6.570667pt;}
.wse4{word-spacing:6.629333pt;}
.ws76{word-spacing:6.688000pt;}
.ws71{word-spacing:6.746667pt;}
.ws87{word-spacing:6.805333pt;}
.ws89{word-spacing:6.864000pt;}
.ws10d{word-spacing:6.922667pt;}
.ws13{word-spacing:6.941333pt;}
.wse2{word-spacing:7.157333pt;}
.ws9b{word-spacing:7.274667pt;}
.wsd7{word-spacing:7.509333pt;}
.wsf2{word-spacing:7.685333pt;}
.ws15{word-spacing:7.904000pt;}
.wse8{word-spacing:7.920000pt;}
.wse5{word-spacing:7.978667pt;}
.ws14{word-spacing:8.056000pt;}
.ws39{word-spacing:8.096000pt;}
.ws115{word-spacing:8.154667pt;}
.ws10c{word-spacing:8.213333pt;}
.ws108{word-spacing:8.389333pt;}
.ws86{word-spacing:8.448000pt;}
.ws24{word-spacing:8.565333pt;}
.wsc{word-spacing:8.714667pt;}
.wsd6{word-spacing:8.741333pt;}
.ws6{word-spacing:8.765333pt;}
.wsd{word-spacing:9.120000pt;}
.ws17{word-spacing:9.373333pt;}
.ws114{word-spacing:10.090667pt;}
.ws12{word-spacing:10.234667pt;}
.wse{word-spacing:10.285333pt;}
.ws7{word-spacing:11.045333pt;}
.wsf6{word-spacing:18.192000pt;}
.wsa{word-spacing:18.290667pt;}
.wsec{word-spacing:28.608000pt;}
.ws21{word-spacing:691.389333pt;}
._9{margin-left:-32.104000pt;}
._b{margin-left:-10.478400pt;}
._6{margin-left:-9.235200pt;}
._7{margin-left:-7.626667pt;}
._2{margin-left:-6.381333pt;}
._5{margin-left:-5.338667pt;}
._0{margin-left:-3.848000pt;}
._3{margin-left:-2.240000pt;}
._1{margin-left:-1.088000pt;}
._4{width:0.912000pt;}
._8{width:2.128533pt;}
._a{width:3.254400pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.202667pt;}
.fs2{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fs1{font-size:40.358933pt;}
.fs6{font-size:44.800000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.339733pt;}
.y4{bottom:37.998533pt;}
.y1{bottom:38.070267pt;}
.y3{bottom:48.398533pt;}
.y2a{bottom:90.014267pt;}
.y56{bottom:94.488133pt;}
.y9f{bottom:94.488267pt;}
.y100{bottom:96.119733pt;}
.y29{bottom:100.680933pt;}
.y55{bottom:108.888133pt;}
.y9e{bottom:108.888267pt;}
.yfb{bottom:108.888400pt;}
.y124{bottom:110.340533pt;}
.yff{bottom:112.119733pt;}
.y28{bottom:119.180133pt;}
.ydf{bottom:121.070667pt;}
.y54{bottom:123.288133pt;}
.yc8{bottom:123.288267pt;}
.y9d{bottom:123.288400pt;}
.y123{bottom:127.940533pt;}
.y27{bottom:129.846800pt;}
.yef{bottom:135.294267pt;}
.y53{bottom:137.688133pt;}
.y9c{bottom:137.688400pt;}
.yde{bottom:138.670667pt;}
.y26{bottom:140.513467pt;}
.yba{bottom:144.856533pt;}
.y122{bottom:145.540533pt;}
.y52{bottom:152.088133pt;}
.y9b{bottom:152.088400pt;}
.yc7{bottom:152.088533pt;}
.yee{bottom:152.894267pt;}
.y125{bottom:155.728933pt;}
.ydd{bottom:156.270667pt;}
.yb9{bottom:162.456533pt;}
.y121{bottom:163.140533pt;}
.y2d{bottom:165.334800pt;}
.ya8{bottom:165.341600pt;}
.y6e{bottom:166.488133pt;}
.y9a{bottom:166.488533pt;}
.yed{bottom:170.494267pt;}
.yfa{bottom:172.308533pt;}
.y78{bottom:173.328933pt;}
.ydc{bottom:173.870667pt;}
.y2c{bottom:179.734800pt;}
.yb8{bottom:180.056533pt;}
.y120{bottom:180.740533pt;}
.y6d{bottom:180.888133pt;}
.y99{bottom:180.888533pt;}
.yc6{bottom:180.888667pt;}
.ya7{bottom:182.941467pt;}
.yec{bottom:188.094267pt;}
.y6c{bottom:188.390400pt;}
.yf9{bottom:189.908533pt;}
.y51{bottom:190.928933pt;}
.ydb{bottom:191.470667pt;}
.y2b{bottom:194.134800pt;}
.y77{bottom:195.288133pt;}
.y98{bottom:195.288533pt;}
.yc5{bottom:195.288800pt;}
.yb7{bottom:197.656533pt;}
.y11f{bottom:198.340533pt;}
.ya6{bottom:200.541600pt;}
.yeb{bottom:205.694267pt;}
.y6b{bottom:205.990400pt;}
.yf8{bottom:207.508400pt;}
.y50{bottom:208.528933pt;}
.yda{bottom:209.070667pt;}
.y76{bottom:209.688133pt;}
.y97{bottom:209.688533pt;}
.yb6{bottom:215.256533pt;}
.y11e{bottom:215.940533pt;}
.ya5{bottom:218.141600pt;}
.yea{bottom:223.294267pt;}
.y6a{bottom:223.590400pt;}
.y75{bottom:224.088133pt;}
.y25{bottom:224.297733pt;}
.yf7{bottom:225.108533pt;}
.y4f{bottom:226.128933pt;}
.yd9{bottom:226.670667pt;}
.yb5{bottom:232.856533pt;}
.y11d{bottom:233.540533pt;}
.yc4{bottom:234.670667pt;}
.ya4{bottom:235.741600pt;}
.y74{bottom:238.488133pt;}
.y91{bottom:238.731200pt;}
.y24{bottom:239.497733pt;}
.ye9{bottom:240.894267pt;}
.y69{bottom:241.190400pt;}
.yf6{bottom:242.708400pt;}
.y4e{bottom:243.728933pt;}
.yd8{bottom:244.270667pt;}
.yb4{bottom:250.456533pt;}
.y11c{bottom:251.140533pt;}
.yc3{bottom:252.270667pt;}
.y73{bottom:252.888133pt;}
.ya3{bottom:253.341600pt;}
.y90{bottom:256.331200pt;}
.y96{bottom:257.234400pt;}
.ye8{bottom:258.494267pt;}
.y68{bottom:258.790400pt;}
.yf5{bottom:260.308533pt;}
.y4d{bottom:261.328933pt;}
.yd7{bottom:261.870667pt;}
.y72{bottom:267.288133pt;}
.yb3{bottom:268.056533pt;}
.y11b{bottom:268.740533pt;}
.yc2{bottom:269.870667pt;}
.ya2{bottom:270.941467pt;}
.y21{bottom:273.489600pt;}
.y8f{bottom:273.931200pt;}
.y95{bottom:274.834533pt;}
.ye7{bottom:276.094267pt;}
.y67{bottom:276.390400pt;}
.yf4{bottom:277.908533pt;}
.y4c{bottom:278.928933pt;}
.yd6{bottom:279.470667pt;}
.y71{bottom:281.688133pt;}
.yb2{bottom:285.656533pt;}
.y11a{bottom:286.340533pt;}
.yc1{bottom:287.470667pt;}
.y20{bottom:288.156267pt;}
.y7e{bottom:288.992533pt;}
.y8e{bottom:291.531067pt;}
.y94{bottom:292.434400pt;}
.ye6{bottom:293.694267pt;}
.y66{bottom:293.990400pt;}
.yf3{bottom:295.508400pt;}
.y70{bottom:296.088133pt;}
.y4b{bottom:296.528933pt;}
.yd5{bottom:297.070667pt;}
.y23{bottom:302.822933pt;}
.yb1{bottom:303.256533pt;}
.y119{bottom:303.940533pt;}
.yc0{bottom:305.070667pt;}
.y1f{bottom:306.575867pt;}
.y7d{bottom:306.592533pt;}
.y8d{bottom:309.131200pt;}
.y93{bottom:310.034400pt;}
.y6f{bottom:310.488133pt;}
.yab{bottom:310.703600pt;}
.ye5{bottom:311.294267pt;}
.y65{bottom:311.590400pt;}
.y4a{bottom:314.128933pt;}
.yd4{bottom:314.670667pt;}
.yb0{bottom:320.856533pt;}
.y22{bottom:321.242533pt;}
.y118{bottom:321.540533pt;}
.ybf{bottom:322.670667pt;}
.y7c{bottom:324.192533pt;}
.y82{bottom:324.888133pt;}
.yaa{bottom:326.703600pt;}
.y8c{bottom:326.731200pt;}
.y92{bottom:327.634400pt;}
.y1e{bottom:328.801600pt;}
.ye4{bottom:328.894267pt;}
.y64{bottom:329.190400pt;}
.y49{bottom:331.728933pt;}
.yd3{bottom:332.270667pt;}
.yfe{bottom:334.422000pt;}
.yaf{bottom:338.456533pt;}
.y117{bottom:339.140533pt;}
.y81{bottom:339.288133pt;}
.ybe{bottom:340.270667pt;}
.y7b{bottom:341.792533pt;}
.ya9{bottom:342.703467pt;}
.y1d{bottom:343.468267pt;}
.y8b{bottom:344.331200pt;}
.y63{bottom:346.790400pt;}
.y48{bottom:349.328933pt;}
.yd2{bottom:349.870667pt;}
.yfd{bottom:350.422000pt;}
.y80{bottom:353.688133pt;}
.yae{bottom:356.056533pt;}
.y116{bottom:356.740533pt;}
.ybd{bottom:357.870667pt;}
.y1c{bottom:358.134933pt;}
.y8a{bottom:361.931200pt;}
.y62{bottom:364.390400pt;}
.ya1{bottom:364.955600pt;}
.yfc{bottom:366.422000pt;}
.y7a{bottom:366.925200pt;}
.y47{bottom:366.928933pt;}
.yf2{bottom:367.083867pt;}
.yd1{bottom:367.470667pt;}
.y7f{bottom:368.088133pt;}
.y1b{bottom:372.801600pt;}
.yad{bottom:373.656533pt;}
.y115{bottom:374.340533pt;}
.y89{bottom:379.531067pt;}
.ya0{bottom:380.955600pt;}
.y61{bottom:381.990400pt;}
.yf1{bottom:383.083867pt;}
.y46{bottom:384.528933pt;}
.yd0{bottom:385.070667pt;}
.y1a{bottom:387.468267pt;}
.yac{bottom:391.256533pt;}
.y114{bottom:391.940533pt;}
.ycc{bottom:395.100133pt;}
.y88{bottom:397.131200pt;}
.yf0{bottom:399.083867pt;}
.y60{bottom:399.590400pt;}
.y45{bottom:402.128933pt;}
.y19{bottom:402.134933pt;}
.ycf{bottom:402.670667pt;}
.y79{bottom:407.122933pt;}
.y113{bottom:409.540533pt;}
.ycb{bottom:411.100133pt;}
.y87{bottom:414.731200pt;}
.y18{bottom:416.801600pt;}
.y5f{bottom:417.190400pt;}
.y44{bottom:419.728933pt;}
.yce{bottom:420.270667pt;}
.yca{bottom:427.100133pt;}
.y112{bottom:427.140533pt;}
.ybc{bottom:430.026000pt;}
.y17{bottom:431.468267pt;}
.y86{bottom:432.331200pt;}
.y5e{bottom:434.790400pt;}
.y43{bottom:437.328933pt;}
.ycd{bottom:437.870667pt;}
.yc9{bottom:443.100133pt;}
.ybb{bottom:446.026000pt;}
.y16{bottom:446.134933pt;}
.y85{bottom:449.931200pt;}
.y111{bottom:452.273067pt;}
.y5d{bottom:452.390400pt;}
.y42{bottom:454.928933pt;}
.y15{bottom:460.801600pt;}
.y84{bottom:467.531200pt;}
.y5c{bottom:469.990400pt;}
.y41{bottom:472.528933pt;}
.ye3{bottom:475.246800pt;}
.y14{bottom:475.468400pt;}
.y5b{bottom:487.590267pt;}
.y40{bottom:490.128933pt;}
.y13{bottom:490.135067pt;}
.ye2{bottom:491.246800pt;}
.y83{bottom:492.663733pt;}
.y110{bottom:500.079067pt;}
.y12{bottom:504.801733pt;}
.y5a{bottom:505.190400pt;}
.ye1{bottom:507.246800pt;}
.y3f{bottom:507.728933pt;}
.y10f{bottom:517.679067pt;}
.y59{bottom:522.790400pt;}
.y11{bottom:523.221333pt;}
.ye0{bottom:523.246800pt;}
.y3e{bottom:525.328933pt;}
.y10e{bottom:535.279067pt;}
.y58{bottom:540.390400pt;}
.y3d{bottom:542.928933pt;}
.y10d{bottom:552.879067pt;}
.y10{bottom:552.953200pt;}
.y3c{bottom:560.528933pt;}
.y57{bottom:565.522933pt;}
.yf{bottom:568.953200pt;}
.y10c{bottom:570.479067pt;}
.y3b{bottom:578.128933pt;}
.ye{bottom:584.953200pt;}
.y10b{bottom:588.079067pt;}
.y3a{bottom:595.728933pt;}
.yd{bottom:602.843067pt;}
.y10a{bottom:605.679067pt;}
.y39{bottom:613.328933pt;}
.y109{bottom:623.279067pt;}
.yc{bottom:629.575600pt;}
.y38{bottom:630.928933pt;}
.y108{bottom:640.879067pt;}
.yb{bottom:647.175600pt;}
.y37{bottom:648.528933pt;}
.y107{bottom:658.479067pt;}
.ya{bottom:663.175600pt;}
.y36{bottom:666.128933pt;}
.y106{bottom:676.079067pt;}
.y9{bottom:681.065333pt;}
.y35{bottom:683.728933pt;}
.y105{bottom:693.679067pt;}
.y34{bottom:701.328933pt;}
.y104{bottom:711.279067pt;}
.y8{bottom:711.604000pt;}
.y33{bottom:718.928933pt;}
.y103{bottom:728.879067pt;}
.y7{bottom:734.004000pt;}
.y32{bottom:736.528933pt;}
.y102{bottom:746.479067pt;}
.y31{bottom:754.128933pt;}
.y6{bottom:760.183467pt;}
.y101{bottom:771.611600pt;}
.y30{bottom:771.728933pt;}
.y5{bottom:786.850133pt;}
.y2f{bottom:809.775600pt;}
.y2e{bottom:826.575733pt;}
.h4{height:26.173333pt;}
.hc{height:27.616000pt;}
.h3{height:30.470995pt;}
.hd{height:32.218667pt;}
.hf{height:34.322286pt;}
.ha{height:36.226667pt;}
.h2{height:36.240000pt;}
.h8{height:40.266667pt;}
.he{height:41.424000pt;}
.h14{height:41.949460pt;}
.h12{height:43.648000pt;}
.hb{height:43.725333pt;}
.h11{height:44.293333pt;}
.h13{height:46.026667pt;}
.h9{height:50.629333pt;}
.h6{height:56.373333pt;}
.h7{height:57.856000pt;}
.h10{height:67.486400pt;}
.h5{height:68.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:83.149600pt;}
.x8{left:86.929200pt;}
.xc{left:98.267733pt;}
.x7{left:101.669333pt;}
.x9{left:105.826800pt;}
.x2{left:186.862800pt;}
.xb{left:205.831600pt;}
.xa{left:260.729733pt;}
.x3{left:283.128267pt;}
.x4{left:299.008533pt;}
.x6{left:330.708667pt;}
.x1{left:535.574533pt;}
}

