
    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_c03e7cb713ce9ecc247ea3d1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_03e4a4918c9d4b65b2d2d24c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.732910;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_d934939ff027b471eb2d2757.woff')format("woff");}.ff3{font-family:ff3;line-height:1.155762;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_a452a876802d6e7b4df1d0da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_f7f19c09f168b693c51ed40c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.894043;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_a4a2e33033b86493aad1ad08.woff')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_ef98fd2f734474cbbb7c40db.woff')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_33fb56beee22eb5015882b8f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.251000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:288.000000px;}
.ls9{letter-spacing:-0.084000px;}
.ls18{letter-spacing:-0.024000px;}
.lsc{letter-spacing:-0.019200px;}
.ls1c{letter-spacing:-0.018540px;}
.ls8{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.016800px;}
.lsb{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.012600px;}
.ls1b{letter-spacing:-0.012360px;}
.ls2{letter-spacing:-0.012000px;}
.ls0{letter-spacing:-0.009600px;}
.lsa{letter-spacing:-0.007200px;}
.lsd{letter-spacing:-0.006300px;}
.ls3{letter-spacing:-0.006000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls15{letter-spacing:0.156000px;}
.ls11{letter-spacing:0.372000px;}
.ls4{letter-spacing:0.414000px;}
.ls1a{letter-spacing:0.606000px;}
.ls1d{letter-spacing:0.673620px;}
.ls6{letter-spacing:0.678000px;}
.ls17{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.990000px;}
.ls14{letter-spacing:1.092000px;}
.ls13{letter-spacing:1.158000px;}
.ls10{letter-spacing:1.278000px;}
.ls19{letter-spacing:1.320000px;}
.ls5{letter-spacing:1.326000px;}
.lsf{letter-spacing:38.040000px;}
.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:-125.215500px;}
.ws1{word-spacing:-43.062600px;}
.wsc7{word-spacing:-28.310400px;}
.wsc9{word-spacing:-16.674000px;}
.wsc8{word-spacing:-16.668000px;}
.ws99{word-spacing:-2.406000px;}
.ws74{word-spacing:-2.364000px;}
.ws82{word-spacing:-2.292000px;}
.ws4b{word-spacing:-2.196000px;}
.ws3{word-spacing:-2.166000px;}
.ws65{word-spacing:-1.806000px;}
.wsd{word-spacing:-1.764000px;}
.ws2d{word-spacing:-1.713600px;}
.ws9c{word-spacing:-1.692000px;}
.ws27{word-spacing:-1.593900px;}
.ws71{word-spacing:-1.554000px;}
.wse1{word-spacing:-1.538820px;}
.wscb{word-spacing:-1.526460px;}
.ws85{word-spacing:-1.458000px;}
.ws2e{word-spacing:-1.291500px;}
.wsb0{word-spacing:-1.272000px;}
.ws92{word-spacing:-1.182000px;}
.ws54{word-spacing:-1.002000px;}
.ws1a{word-spacing:-0.930000px;}
.wsd6{word-spacing:-0.723060px;}
.ws9d{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.598500px;}
.ws5d{word-spacing:-0.534000px;}
.wsc6{word-spacing:-0.390000px;}
.ws8a{word-spacing:-0.372000px;}
.ws1c{word-spacing:-0.330000px;}
.ws9b{word-spacing:-0.240000px;}
.ws4c{word-spacing:-0.180000px;}
.ws4a{word-spacing:-0.168000px;}
.ws50{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.180000px;}
.wsd0{word-spacing:0.284280px;}
.wsb2{word-spacing:0.558000px;}
.wscd{word-spacing:0.648900px;}
.wsc3{word-spacing:0.792000px;}
.ws9a{word-spacing:0.816000px;}
.ws97{word-spacing:0.846000px;}
.ws2f{word-spacing:0.888300px;}
.ws52{word-spacing:0.894000px;}
.ws13{word-spacing:0.906000px;}
.ws6c{word-spacing:1.032000px;}
.ws56{word-spacing:1.056000px;}
.ws37{word-spacing:1.212000px;}
.wsd8{word-spacing:1.297800px;}
.wsb1{word-spacing:1.344000px;}
.wsc1{word-spacing:1.458000px;}
.ws25{word-spacing:1.486800px;}
.ws21{word-spacing:1.500000px;}
.ws2b{word-spacing:1.518300px;}
.ws4d{word-spacing:1.578000px;}
.wsce{word-spacing:1.619160px;}
.wsd1{word-spacing:1.656240px;}
.wse2{word-spacing:1.668000px;}
.ws16{word-spacing:1.674000px;}
.ws20{word-spacing:1.680000px;}
.ws4e{word-spacing:1.686000px;}
.wsd5{word-spacing:1.730400px;}
.wsbd{word-spacing:1.740000px;}
.ws6b{word-spacing:1.758000px;}
.wsbc{word-spacing:1.914000px;}
.ws32{word-spacing:1.974000px;}
.ws22{word-spacing:2.008800px;}
.ws23{word-spacing:2.016000px;}
.wsa4{word-spacing:2.058000px;}
.ws36{word-spacing:2.118000px;}
.ws55{word-spacing:2.130000px;}
.ws7c{word-spacing:2.352000px;}
.ws24{word-spacing:2.520000px;}
.wsb{word-spacing:2.550000px;}
.ws7b{word-spacing:2.688000px;}
.ws5b{word-spacing:2.796000px;}
.wsca{word-spacing:2.832000px;}
.ws7e{word-spacing:2.856000px;}
.wsda{word-spacing:2.966400px;}
.ws94{word-spacing:2.994000px;}
.ws8{word-spacing:3.036000px;}
.wsa3{word-spacing:3.114000px;}
.ws8f{word-spacing:3.120000px;}
.ws3d{word-spacing:3.330000px;}
.ws79{word-spacing:3.426000px;}
.ws98{word-spacing:3.588000px;}
.wsd4{word-spacing:3.596760px;}
.wsd2{word-spacing:3.615300px;}
.ws6e{word-spacing:3.750000px;}
.wsc0{word-spacing:3.810000px;}
.ws7f{word-spacing:3.822000px;}
.wsba{word-spacing:3.894000px;}
.wsac{word-spacing:4.074000px;}
.ws3e{word-spacing:4.116000px;}
.ws91{word-spacing:4.146000px;}
.ws1e{word-spacing:4.176000px;}
.ws66{word-spacing:4.194000px;}
.wsa0{word-spacing:4.278000px;}
.ws2a{word-spacing:4.347000px;}
.ws6a{word-spacing:4.410000px;}
.ws69{word-spacing:4.590000px;}
.ws19{word-spacing:4.638000px;}
.ws7a{word-spacing:4.650000px;}
.wsc5{word-spacing:4.824000px;}
.wsbf{word-spacing:4.842000px;}
.ws9{word-spacing:4.908000px;}
.ws3c{word-spacing:4.968000px;}
.wsd3{word-spacing:5.042880px;}
.wsb9{word-spacing:5.094000px;}
.wsb6{word-spacing:5.154000px;}
.ws44{word-spacing:5.316000px;}
.ws3b{word-spacing:5.322000px;}
.ws43{word-spacing:5.334000px;}
.ws48{word-spacing:5.814000px;}
.wsdb{word-spacing:5.926620px;}
.ws96{word-spacing:5.958000px;}
.ws49{word-spacing:6.096000px;}
.wsde{word-spacing:6.124380px;}
.ws26{word-spacing:6.167700px;}
.wsbb{word-spacing:6.174000px;}
.ws60{word-spacing:6.192000px;}
.ws33{word-spacing:6.204000px;}
.wsbe{word-spacing:6.216000px;}
.ws5a{word-spacing:6.762000px;}
.wsc2{word-spacing:6.774000px;}
.ws5f{word-spacing:6.780000px;}
.ws6f{word-spacing:7.086000px;}
.ws34{word-spacing:7.248000px;}
.ws35{word-spacing:7.308000px;}
.ws31{word-spacing:7.320000px;}
.ws95{word-spacing:7.386000px;}
.ws67{word-spacing:7.512000px;}
.ws1b{word-spacing:7.542000px;}
.ws84{word-spacing:7.704000px;}
.ws2c{word-spacing:7.780500px;}
.ws83{word-spacing:7.866000px;}
.ws8b{word-spacing:7.896000px;}
.wse{word-spacing:8.268000px;}
.ws76{word-spacing:8.424000px;}
.wse0{word-spacing:8.485140px;}
.wsa{word-spacing:8.532000px;}
.wsdd{word-spacing:8.621100px;}
.ws87{word-spacing:8.634000px;}
.ws5c{word-spacing:8.640000px;}
.ws77{word-spacing:8.652000px;}
.wsad{word-spacing:8.730000px;}
.ws47{word-spacing:8.778000px;}
.ws39{word-spacing:8.784000px;}
.wsb5{word-spacing:8.790000px;}
.ws58{word-spacing:8.808000px;}
.ws17{word-spacing:9.180000px;}
.wsa9{word-spacing:9.768000px;}
.ws3a{word-spacing:10.116000px;}
.ws88{word-spacing:10.440000px;}
.ws28{word-spacing:10.521000px;}
.wsb3{word-spacing:10.788000px;}
.ws8e{word-spacing:10.836000px;}
.wsf{word-spacing:10.908000px;}
.ws41{word-spacing:12.114000px;}
.ws75{word-spacing:12.138000px;}
.ws3f{word-spacing:12.486000px;}
.ws7{word-spacing:12.558000px;}
.wscc{word-spacing:12.588660px;}
.wsdc{word-spacing:12.736980px;}
.wsb7{word-spacing:12.780000px;}
.ws86{word-spacing:13.044000px;}
.ws45{word-spacing:13.434000px;}
.ws8c{word-spacing:13.602000px;}
.ws40{word-spacing:13.758000px;}
.ws78{word-spacing:13.842000px;}
.ws10{word-spacing:14.088000px;}
.ws80{word-spacing:14.298000px;}
.ws46{word-spacing:14.310000px;}
.ws89{word-spacing:14.334000px;}
.wsb4{word-spacing:14.364000px;}
.ws1d{word-spacing:14.610000px;}
.ws70{word-spacing:14.820000px;}
.ws6d{word-spacing:15.156000px;}
.wsb8{word-spacing:15.162000px;}
.ws90{word-spacing:15.264000px;}
.ws14{word-spacing:15.312000px;}
.wsa5{word-spacing:15.378000px;}
.ws73{word-spacing:15.606000px;}
.ws9e{word-spacing:15.702000px;}
.ws5{word-spacing:15.708000px;}
.ws93{word-spacing:16.362000px;}
.ws72{word-spacing:16.476000px;}
.wsa8{word-spacing:17.574000px;}
.wsa6{word-spacing:17.580000px;}
.wsaa{word-spacing:17.646000px;}
.wsaf{word-spacing:18.102000px;}
.ws81{word-spacing:18.426000px;}
.ws30{word-spacing:19.122000px;}
.ws62{word-spacing:19.152000px;}
.ws61{word-spacing:19.476000px;}
.wsd9{word-spacing:19.640040px;}
.wsab{word-spacing:19.836000px;}
.ws7d{word-spacing:20.088000px;}
.ws1f{word-spacing:20.214000px;}
.wscf{word-spacing:20.832780px;}
.ws4{word-spacing:20.922000px;}
.ws11{word-spacing:21.576000px;}
.ws53{word-spacing:21.744000px;}
.ws42{word-spacing:22.128000px;}
.wsdf{word-spacing:22.501380px;}
.ws64{word-spacing:22.530000px;}
.ws18{word-spacing:22.770000px;}
.ws68{word-spacing:22.968000px;}
.ws59{word-spacing:23.502000px;}
.ws4f{word-spacing:23.844000px;}
.ws51{word-spacing:23.910000px;}
.wsd7{word-spacing:23.978400px;}
.ws57{word-spacing:24.102000px;}
.ws8d{word-spacing:24.210000px;}
.ws12{word-spacing:24.324000px;}
.wsa7{word-spacing:24.396000px;}
.ws6{word-spacing:24.588000px;}
.ws38{word-spacing:24.630000px;}
.ws63{word-spacing:24.726000px;}
.ws5e{word-spacing:24.846000px;}
.wsae{word-spacing:26.940000px;}
.wsc{word-spacing:31.722000px;}
.wsa1{word-spacing:32.046000px;}
.wsc4{word-spacing:32.502000px;}
.wsa2{word-spacing:34.086000px;}
.ws9f{word-spacing:46.050000px;}
._6{margin-left:-12.864000px;}
._7{margin-left:-7.740000px;}
._4{margin-left:-6.660000px;}
._3{margin-left:-4.440000px;}
._5{margin-left:-3.429000px;}
._1{margin-left:-2.331000px;}
._0{margin-left:-1.296000px;}
._2{width:1.260000px;}
.fc9{color:rgb(78,60,152);}
.fc5{color:rgb(78,47,144);}
.fc4{color:transparent;}
.fc8{color:rgb(223,142,94);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,224,26);}
.fc7{color:rgb(204,21,67);}
.fc6{color:rgb(159,77,36);}
.fc0{color:rgb(0,91,127);}
.fs9{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:61.800000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:240.000000px;}
.fs4{font-size:420.000000px;}
.fs1{font-size:500.862000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.090000px;}
.y20{bottom:62.939550px;}
.yf1{bottom:64.935750px;}
.y21{bottom:65.192550px;}
.yf2{bottom:67.188750px;}
.y6b{bottom:114.418500px;}
.y9d{bottom:114.486000px;}
.y1f{bottom:118.615500px;}
.y6a{bottom:132.568500px;}
.y9c{bottom:133.056000px;}
.y39{bottom:135.400500px;}
.y134{bottom:136.506000px;}
.y1e{bottom:136.615500px;}
.yd1{bottom:146.562000px;}
.y69{bottom:150.718500px;}
.y9b{bottom:151.626000px;}
.y133{bottom:154.506000px;}
.y1d{bottom:154.615500px;}
.yf4{bottom:156.145500px;}
.y38{bottom:156.426750px;}
.yd0{bottom:164.562000px;}
.y68{bottom:168.868500px;}
.y9a{bottom:170.196000px;}
.y132{bottom:172.504500px;}
.y1c{bottom:172.615500px;}
.y37{bottom:177.453000px;}
.ycf{bottom:182.562000px;}
.y9e{bottom:182.703000px;}
.y22{bottom:183.426000px;}
.yf3{bottom:184.699500px;}
.yf6{bottom:185.421000px;}
.y67{bottom:187.018500px;}
.yd2{bottom:187.999500px;}
.y99{bottom:188.766000px;}
.y131{bottom:190.504500px;}
.y1b{bottom:190.615500px;}
.y36{bottom:198.479250px;}
.yce{bottom:200.562000px;}
.y66{bottom:205.168500px;}
.y98{bottom:207.336000px;}
.y1a{bottom:208.615500px;}
.y130{bottom:217.009500px;}
.ycd{bottom:218.562000px;}
.y35{bottom:219.505500px;}
.y65{bottom:223.318500px;}
.y97{bottom:225.906000px;}
.y19{bottom:226.615500px;}
.y12f{bottom:235.009500px;}
.ycc{bottom:236.562000px;}
.y64{bottom:241.468500px;}
.y96{bottom:244.476000px;}
.y18{bottom:244.615500px;}
.y34{bottom:249.036750px;}
.y12e{bottom:253.008000px;}
.ycb{bottom:254.562000px;}
.y17{bottom:262.615500px;}
.y33{bottom:270.063000px;}
.y12d{bottom:271.008000px;}
.y63{bottom:272.359500px;}
.yca{bottom:272.562000px;}
.y95{bottom:274.384500px;}
.y16{bottom:280.615500px;}
.yc9{bottom:290.562000px;}
.y32{bottom:291.089250px;}
.y12c{bottom:297.513000px;}
.y15{bottom:307.120500px;}
.yc8{bottom:308.562000px;}
.y31{bottom:312.115500px;}
.y12b{bottom:315.513000px;}
.y14{bottom:325.120500px;}
.yc7{bottom:326.562000px;}
.y94{bottom:327.349500px;}
.y62{bottom:332.163000px;}
.y30{bottom:333.141750px;}
.y12a{bottom:333.513000px;}
.y109{bottom:342.135000px;}
.y13{bottom:343.120500px;}
.yc6{bottom:344.562000px;}
.y61{bottom:350.313000px;}
.y2f{bottom:354.168000px;}
.y129{bottom:360.016500px;}
.y12{bottom:361.120500px;}
.yc5{bottom:362.562000px;}
.y60{bottom:368.463000px;}
.y108{bottom:375.135000px;}
.y2e{bottom:375.194250px;}
.y128{bottom:378.016500px;}
.y11{bottom:379.120500px;}
.yc4{bottom:380.562000px;}
.y5f{bottom:386.613000px;}
.y93{bottom:388.258500px;}
.y2d{bottom:396.220500px;}
.y10{bottom:397.120500px;}
.yc3{bottom:398.562000px;}
.y127{bottom:404.521500px;}
.y92{bottom:406.828500px;}
.y107{bottom:408.135000px;}
.y5e{bottom:413.268000px;}
.yf{bottom:415.120500px;}
.yc2{bottom:416.562000px;}
.y126{bottom:422.521500px;}
.y91{bottom:425.398500px;}
.y2c{bottom:429.760500px;}
.y5d{bottom:431.418000px;}
.ye{bottom:433.120500px;}
.yc1{bottom:434.562000px;}
.y125{bottom:440.521500px;}
.y106{bottom:441.135000px;}
.y90{bottom:443.968500px;}
.y5c{bottom:449.568000px;}
.yd{bottom:451.120500px;}
.yc0{bottom:452.562000px;}
.y8f{bottom:462.538500px;}
.y5b{bottom:467.718000px;}
.yc{bottom:469.120500px;}
.ybf{bottom:470.562000px;}
.y105{bottom:474.135000px;}
.y8e{bottom:481.108500px;}
.y5a{bottom:485.868000px;}
.yb{bottom:487.120500px;}
.ybe{bottom:488.562000px;}
.y124{bottom:489.265500px;}
.y8d{bottom:499.678500px;}
.y59{bottom:504.018000px;}
.ya{bottom:505.120500px;}
.ybd{bottom:506.562000px;}
.y104{bottom:507.135000px;}
.y2b{bottom:517.546500px;}
.y9{bottom:523.120500px;}
.ybc{bottom:524.562000px;}
.y8c{bottom:526.753500px;}
.y58{bottom:530.673000px;}
.y103{bottom:540.135000px;}
.y8{bottom:541.120500px;}
.ybb{bottom:542.562000px;}
.y8b{bottom:545.323500px;}
.y2a{bottom:547.642500px;}
.y57{bottom:548.823000px;}
.yd3{bottom:549.999000px;}
.y7{bottom:559.120500px;}
.yba{bottom:560.562000px;}
.y8a{bottom:563.893500px;}
.y56{bottom:566.973000px;}
.yf0{bottom:570.181500px;}
.y102{bottom:573.135000px;}
.y3{bottom:577.120500px;}
.y29{bottom:577.738500px;}
.yb9{bottom:578.562000px;}
.y89{bottom:582.463500px;}
.y55{bottom:585.123000px;}
.yef{bottom:588.316500px;}
.y6{bottom:595.120500px;}
.y28{bottom:599.338500px;}
.y54{bottom:603.273000px;}
.y101{bottom:606.135000px;}
.yee{bottom:606.451500px;}
.y88{bottom:609.538500px;}
.y5{bottom:613.120500px;}
.y123{bottom:616.194000px;}
.ye0{bottom:627.022500px;}
.y87{bottom:628.108500px;}
.y27{bottom:629.434500px;}
.y4{bottom:631.120500px;}
.yb8{bottom:631.572000px;}
.yed{bottom:633.091500px;}
.y53{bottom:634.164000px;}
.y122{bottom:634.734000px;}
.y100{bottom:639.135000px;}
.y86{bottom:646.678500px;}
.ydf{bottom:646.972500px;}
.yb7{bottom:649.572000px;}
.yec{bottom:651.226500px;}
.y121{bottom:653.274000px;}
.y26{bottom:659.530500px;}
.y85{bottom:665.248500px;}
.yde{bottom:666.922500px;}
.yb6{bottom:667.572000px;}
.yff{bottom:672.135000px;}
.yeb{bottom:677.866500px;}
.y120{bottom:680.311500px;}
.y84{bottom:683.818500px;}
.yb5{bottom:685.572000px;}
.ydd{bottom:686.872500px;}
.y25{bottom:689.626500px;}
.y52{bottom:693.927000px;}
.yea{bottom:696.001500px;}
.y11f{bottom:698.851500px;}
.y83{bottom:702.388500px;}
.yb4{bottom:703.572000px;}
.yfe{bottom:705.135000px;}
.ydc{bottom:706.822500px;}
.y2{bottom:709.095000px;}
.y51{bottom:712.077000px;}
.ye9{bottom:714.136500px;}
.y11e{bottom:717.391500px;}
.yb3{bottom:721.572000px;}
.y82{bottom:729.463500px;}
.y50{bottom:730.227000px;}
.ye8{bottom:732.271500px;}
.ydb{bottom:735.277500px;}
.y11d{bottom:735.931500px;}
.yfd{bottom:738.135000px;}
.yb2{bottom:739.572000px;}
.y81{bottom:748.033500px;}
.y4f{bottom:748.377000px;}
.ye7{bottom:750.406500px;}
.y11c{bottom:754.471500px;}
.yda{bottom:755.227500px;}
.yb1{bottom:757.572000px;}
.y80{bottom:766.603500px;}
.y24{bottom:768.031500px;}
.ye6{bottom:768.541500px;}
.yfc{bottom:771.135000px;}
.y11b{bottom:773.011500px;}
.y4e{bottom:775.032000px;}
.yd9{bottom:775.177500px;}
.yb0{bottom:775.572000px;}
.y7f{bottom:785.173500px;}
.ye5{bottom:786.676500px;}
.y11a{bottom:791.551500px;}
.y4d{bottom:793.182000px;}
.yd8{bottom:795.127500px;}
.y7e{bottom:803.743500px;}
.yfb{bottom:804.135000px;}
.ye4{bottom:804.811500px;}
.y119{bottom:810.091500px;}
.y4c{bottom:811.332000px;}
.yd7{bottom:815.077500px;}
.y7d{bottom:822.313500px;}
.ye3{bottom:822.946500px;}
.yaf{bottom:828.582000px;}
.y118{bottom:828.631500px;}
.y4b{bottom:829.482000px;}
.yd6{bottom:835.027500px;}
.yfa{bottom:837.135000px;}
.y7c{bottom:840.883500px;}
.ye2{bottom:841.081500px;}
.yae{bottom:846.582000px;}
.y117{bottom:847.171500px;}
.y4a{bottom:847.632000px;}
.yd5{bottom:854.977500px;}
.y7b{bottom:859.453500px;}
.yad{bottom:864.582000px;}
.y116{bottom:865.711500px;}
.y49{bottom:865.782000px;}
.yf9{bottom:870.135000px;}
.ye1{bottom:870.555000px;}
.yd4{bottom:874.927500px;}
.y7a{bottom:878.023500px;}
.yac{bottom:882.582000px;}
.y48{bottom:883.932000px;}
.y23{bottom:890.583000px;}
.y115{bottom:892.749000px;}
.y79{bottom:896.593500px;}
.yab{bottom:900.582000px;}
.y47{bottom:902.082000px;}
.yf8{bottom:903.135000px;}
.y114{bottom:911.289000px;}
.y78{bottom:915.163500px;}
.yaa{bottom:918.582000px;}
.y46{bottom:920.232000px;}
.y113{bottom:929.829000px;}
.yf7{bottom:936.135000px;}
.ya9{bottom:936.582000px;}
.y77{bottom:942.238500px;}
.y45{bottom:946.887000px;}
.y112{bottom:948.369000px;}
.ya8{bottom:954.582000px;}
.y76{bottom:960.808500px;}
.yf5{bottom:964.675500px;}
.y44{bottom:965.037000px;}
.y111{bottom:966.909000px;}
.y75{bottom:979.378500px;}
.y43{bottom:983.187000px;}
.y110{bottom:985.449000px;}
.y74{bottom:997.948500px;}
.y42{bottom:1001.337000px;}
.y10f{bottom:1003.989000px;}
.ya7{bottom:1007.592000px;}
.y73{bottom:1016.518500px;}
.y41{bottom:1019.487000px;}
.y10e{bottom:1022.529000px;}
.ya6{bottom:1025.592000px;}
.y72{bottom:1035.088500px;}
.y40{bottom:1037.637000px;}
.y10d{bottom:1041.069000px;}
.ya5{bottom:1043.592000px;}
.y71{bottom:1053.658500px;}
.y10c{bottom:1059.609000px;}
.ya4{bottom:1061.592000px;}
.y3f{bottom:1064.292000px;}
.y70{bottom:1072.228500px;}
.y10b{bottom:1078.149000px;}
.ya3{bottom:1079.592000px;}
.y3e{bottom:1082.442000px;}
.y6f{bottom:1090.798500px;}
.ya2{bottom:1097.592000px;}
.y3d{bottom:1100.592000px;}
.ya1{bottom:1115.592000px;}
.y6e{bottom:1117.873500px;}
.y3c{bottom:1118.742000px;}
.ya0{bottom:1133.592000px;}
.y10a{bottom:1135.719000px;}
.y6d{bottom:1136.443500px;}
.y3b{bottom:1136.892000px;}
.y9f{bottom:1151.592000px;}
.y6c{bottom:1155.013500px;}
.y3a{bottom:1155.042000px;}
.h10{height:44.859375px;}
.h7{height:51.005859px;}
.h6{height:56.074219px;}
.h5{height:56.718750px;}
.h13{height:56.724750px;}
.h12{height:57.756445px;}
.he{height:64.020000px;}
.hd{height:67.221000px;}
.hb{height:67.289062px;}
.ha{height:68.062500px;}
.h8{height:77.466797px;}
.hf{height:79.406250px;}
.h3{height:90.750000px;}
.h11{height:94.368000px;}
.hc{height:102.432000px;}
.h4{height:357.059824px;}
.h9{height:397.031250px;}
.h2{height:1262.744931px;}
.h0{height:1262.834931px;}
.h1{height:1263.000000px;}
.w2{width:892.822500px;}
.w3{width:892.824000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:46.742400px;}
.x18{left:48.186300px;}
.x11{left:83.480850px;}
.x1a{left:86.788800px;}
.x20{left:91.180350px;}
.xa{left:100.180350px;}
.x9{left:112.495950px;}
.x7{left:118.585650px;}
.x15{left:119.727750px;}
.x10{left:131.679600px;}
.x19{left:133.123500px;}
.x14{left:159.630000px;}
.xb{left:176.212500px;}
.x16{left:177.657000px;}
.xc{left:193.222500px;}
.x8{left:293.478000px;}
.x1b{left:299.854500px;}
.x1c{left:361.371000px;}
.x12{left:417.294000px;}
.x21{left:435.364350px;}
.x22{left:436.669500px;}
.x2{left:443.881500px;}
.x1{left:445.173000px;}
.xd{left:502.657500px;}
.x17{left:504.102000px;}
.xe{left:519.667500px;}
.x3{left:527.298000px;}
.x13{left:553.704000px;}
.x5{left:658.827000px;}
.x1e{left:660.270000px;}
.x6{left:796.963500px;}
.x1f{left:801.655500px;}
.x4{left:864.076500px;}
.x1d{left:865.521000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:256.000000pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls18{letter-spacing:-0.021333pt;}
.lsc{letter-spacing:-0.017067pt;}
.ls1c{letter-spacing:-0.016480pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.014933pt;}
.lsb{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.011200pt;}
.ls1b{letter-spacing:-0.010987pt;}
.ls2{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:-0.008533pt;}
.lsa{letter-spacing:-0.006400pt;}
.lsd{letter-spacing:-0.005600pt;}
.ls3{letter-spacing:-0.005333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls15{letter-spacing:0.138667pt;}
.ls11{letter-spacing:0.330667pt;}
.ls4{letter-spacing:0.368000pt;}
.ls1a{letter-spacing:0.538667pt;}
.ls1d{letter-spacing:0.598773pt;}
.ls6{letter-spacing:0.602667pt;}
.ls17{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.880000pt;}
.ls14{letter-spacing:0.970667pt;}
.ls13{letter-spacing:1.029333pt;}
.ls10{letter-spacing:1.136000pt;}
.ls19{letter-spacing:1.173333pt;}
.ls5{letter-spacing:1.178667pt;}
.lsf{letter-spacing:33.813333pt;}
.ws0{word-spacing:-111.302667pt;}
.ws1{word-spacing:-38.277867pt;}
.wsc7{word-spacing:-25.164800pt;}
.wsc9{word-spacing:-14.821333pt;}
.wsc8{word-spacing:-14.816000pt;}
.ws99{word-spacing:-2.138667pt;}
.ws74{word-spacing:-2.101333pt;}
.ws82{word-spacing:-2.037333pt;}
.ws4b{word-spacing:-1.952000pt;}
.ws3{word-spacing:-1.925333pt;}
.ws65{word-spacing:-1.605333pt;}
.wsd{word-spacing:-1.568000pt;}
.ws2d{word-spacing:-1.523200pt;}
.ws9c{word-spacing:-1.504000pt;}
.ws27{word-spacing:-1.416800pt;}
.ws71{word-spacing:-1.381333pt;}
.wse1{word-spacing:-1.367840pt;}
.wscb{word-spacing:-1.356853pt;}
.ws85{word-spacing:-1.296000pt;}
.ws2e{word-spacing:-1.148000pt;}
.wsb0{word-spacing:-1.130667pt;}
.ws92{word-spacing:-1.050667pt;}
.ws54{word-spacing:-0.890667pt;}
.ws1a{word-spacing:-0.826667pt;}
.wsd6{word-spacing:-0.642720pt;}
.ws9d{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.532000pt;}
.ws5d{word-spacing:-0.474667pt;}
.wsc6{word-spacing:-0.346667pt;}
.ws8a{word-spacing:-0.330667pt;}
.ws1c{word-spacing:-0.293333pt;}
.ws9b{word-spacing:-0.213333pt;}
.ws4c{word-spacing:-0.160000pt;}
.ws4a{word-spacing:-0.149333pt;}
.ws50{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.160000pt;}
.wsd0{word-spacing:0.252693pt;}
.wsb2{word-spacing:0.496000pt;}
.wscd{word-spacing:0.576800pt;}
.wsc3{word-spacing:0.704000pt;}
.ws9a{word-spacing:0.725333pt;}
.ws97{word-spacing:0.752000pt;}
.ws2f{word-spacing:0.789600pt;}
.ws52{word-spacing:0.794667pt;}
.ws13{word-spacing:0.805333pt;}
.ws6c{word-spacing:0.917333pt;}
.ws56{word-spacing:0.938667pt;}
.ws37{word-spacing:1.077333pt;}
.wsd8{word-spacing:1.153600pt;}
.wsb1{word-spacing:1.194667pt;}
.wsc1{word-spacing:1.296000pt;}
.ws25{word-spacing:1.321600pt;}
.ws21{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.349600pt;}
.ws4d{word-spacing:1.402667pt;}
.wsce{word-spacing:1.439253pt;}
.wsd1{word-spacing:1.472213pt;}
.wse2{word-spacing:1.482667pt;}
.ws16{word-spacing:1.488000pt;}
.ws20{word-spacing:1.493333pt;}
.ws4e{word-spacing:1.498667pt;}
.wsd5{word-spacing:1.538133pt;}
.wsbd{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.562667pt;}
.wsbc{word-spacing:1.701333pt;}
.ws32{word-spacing:1.754667pt;}
.ws22{word-spacing:1.785600pt;}
.ws23{word-spacing:1.792000pt;}
.wsa4{word-spacing:1.829333pt;}
.ws36{word-spacing:1.882667pt;}
.ws55{word-spacing:1.893333pt;}
.ws7c{word-spacing:2.090667pt;}
.ws24{word-spacing:2.240000pt;}
.wsb{word-spacing:2.266667pt;}
.ws7b{word-spacing:2.389333pt;}
.ws5b{word-spacing:2.485333pt;}
.wsca{word-spacing:2.517333pt;}
.ws7e{word-spacing:2.538667pt;}
.wsda{word-spacing:2.636800pt;}
.ws94{word-spacing:2.661333pt;}
.ws8{word-spacing:2.698667pt;}
.wsa3{word-spacing:2.768000pt;}
.ws8f{word-spacing:2.773333pt;}
.ws3d{word-spacing:2.960000pt;}
.ws79{word-spacing:3.045333pt;}
.ws98{word-spacing:3.189333pt;}
.wsd4{word-spacing:3.197120pt;}
.wsd2{word-spacing:3.213600pt;}
.ws6e{word-spacing:3.333333pt;}
.wsc0{word-spacing:3.386667pt;}
.ws7f{word-spacing:3.397333pt;}
.wsba{word-spacing:3.461333pt;}
.wsac{word-spacing:3.621333pt;}
.ws3e{word-spacing:3.658667pt;}
.ws91{word-spacing:3.685333pt;}
.ws1e{word-spacing:3.712000pt;}
.ws66{word-spacing:3.728000pt;}
.wsa0{word-spacing:3.802667pt;}
.ws2a{word-spacing:3.864000pt;}
.ws6a{word-spacing:3.920000pt;}
.ws69{word-spacing:4.080000pt;}
.ws19{word-spacing:4.122667pt;}
.ws7a{word-spacing:4.133333pt;}
.wsc5{word-spacing:4.288000pt;}
.wsbf{word-spacing:4.304000pt;}
.ws9{word-spacing:4.362667pt;}
.ws3c{word-spacing:4.416000pt;}
.wsd3{word-spacing:4.482560pt;}
.wsb9{word-spacing:4.528000pt;}
.wsb6{word-spacing:4.581333pt;}
.ws44{word-spacing:4.725333pt;}
.ws3b{word-spacing:4.730667pt;}
.ws43{word-spacing:4.741333pt;}
.ws48{word-spacing:5.168000pt;}
.wsdb{word-spacing:5.268107pt;}
.ws96{word-spacing:5.296000pt;}
.ws49{word-spacing:5.418667pt;}
.wsde{word-spacing:5.443893pt;}
.ws26{word-spacing:5.482400pt;}
.wsbb{word-spacing:5.488000pt;}
.ws60{word-spacing:5.504000pt;}
.ws33{word-spacing:5.514667pt;}
.wsbe{word-spacing:5.525333pt;}
.ws5a{word-spacing:6.010667pt;}
.wsc2{word-spacing:6.021333pt;}
.ws5f{word-spacing:6.026667pt;}
.ws6f{word-spacing:6.298667pt;}
.ws34{word-spacing:6.442667pt;}
.ws35{word-spacing:6.496000pt;}
.ws31{word-spacing:6.506667pt;}
.ws95{word-spacing:6.565333pt;}
.ws67{word-spacing:6.677333pt;}
.ws1b{word-spacing:6.704000pt;}
.ws84{word-spacing:6.848000pt;}
.ws2c{word-spacing:6.916000pt;}
.ws83{word-spacing:6.992000pt;}
.ws8b{word-spacing:7.018667pt;}
.wse{word-spacing:7.349333pt;}
.ws76{word-spacing:7.488000pt;}
.wse0{word-spacing:7.542347pt;}
.wsa{word-spacing:7.584000pt;}
.wsdd{word-spacing:7.663200pt;}
.ws87{word-spacing:7.674667pt;}
.ws5c{word-spacing:7.680000pt;}
.ws77{word-spacing:7.690667pt;}
.wsad{word-spacing:7.760000pt;}
.ws47{word-spacing:7.802667pt;}
.ws39{word-spacing:7.808000pt;}
.wsb5{word-spacing:7.813333pt;}
.ws58{word-spacing:7.829333pt;}
.ws17{word-spacing:8.160000pt;}
.wsa9{word-spacing:8.682667pt;}
.ws3a{word-spacing:8.992000pt;}
.ws88{word-spacing:9.280000pt;}
.ws28{word-spacing:9.352000pt;}
.wsb3{word-spacing:9.589333pt;}
.ws8e{word-spacing:9.632000pt;}
.wsf{word-spacing:9.696000pt;}
.ws41{word-spacing:10.768000pt;}
.ws75{word-spacing:10.789333pt;}
.ws3f{word-spacing:11.098667pt;}
.ws7{word-spacing:11.162667pt;}
.wscc{word-spacing:11.189920pt;}
.wsdc{word-spacing:11.321760pt;}
.wsb7{word-spacing:11.360000pt;}
.ws86{word-spacing:11.594667pt;}
.ws45{word-spacing:11.941333pt;}
.ws8c{word-spacing:12.090667pt;}
.ws40{word-spacing:12.229333pt;}
.ws78{word-spacing:12.304000pt;}
.ws10{word-spacing:12.522667pt;}
.ws80{word-spacing:12.709333pt;}
.ws46{word-spacing:12.720000pt;}
.ws89{word-spacing:12.741333pt;}
.wsb4{word-spacing:12.768000pt;}
.ws1d{word-spacing:12.986667pt;}
.ws70{word-spacing:13.173333pt;}
.ws6d{word-spacing:13.472000pt;}
.wsb8{word-spacing:13.477333pt;}
.ws90{word-spacing:13.568000pt;}
.ws14{word-spacing:13.610667pt;}
.wsa5{word-spacing:13.669333pt;}
.ws73{word-spacing:13.872000pt;}
.ws9e{word-spacing:13.957333pt;}
.ws5{word-spacing:13.962667pt;}
.ws93{word-spacing:14.544000pt;}
.ws72{word-spacing:14.645333pt;}
.wsa8{word-spacing:15.621333pt;}
.wsa6{word-spacing:15.626667pt;}
.wsaa{word-spacing:15.685333pt;}
.wsaf{word-spacing:16.090667pt;}
.ws81{word-spacing:16.378667pt;}
.ws30{word-spacing:16.997333pt;}
.ws62{word-spacing:17.024000pt;}
.ws61{word-spacing:17.312000pt;}
.wsd9{word-spacing:17.457813pt;}
.wsab{word-spacing:17.632000pt;}
.ws7d{word-spacing:17.856000pt;}
.ws1f{word-spacing:17.968000pt;}
.wscf{word-spacing:18.518027pt;}
.ws4{word-spacing:18.597333pt;}
.ws11{word-spacing:19.178667pt;}
.ws53{word-spacing:19.328000pt;}
.ws42{word-spacing:19.669333pt;}
.wsdf{word-spacing:20.001227pt;}
.ws64{word-spacing:20.026667pt;}
.ws18{word-spacing:20.240000pt;}
.ws68{word-spacing:20.416000pt;}
.ws59{word-spacing:20.890667pt;}
.ws4f{word-spacing:21.194667pt;}
.ws51{word-spacing:21.253333pt;}
.wsd7{word-spacing:21.314133pt;}
.ws57{word-spacing:21.424000pt;}
.ws8d{word-spacing:21.520000pt;}
.ws12{word-spacing:21.621333pt;}
.wsa7{word-spacing:21.685333pt;}
.ws6{word-spacing:21.856000pt;}
.ws38{word-spacing:21.893333pt;}
.ws63{word-spacing:21.978667pt;}
.ws5e{word-spacing:22.085333pt;}
.wsae{word-spacing:23.946667pt;}
.wsc{word-spacing:28.197333pt;}
.wsa1{word-spacing:28.485333pt;}
.wsc4{word-spacing:28.890667pt;}
.wsa2{word-spacing:30.298667pt;}
.ws9f{word-spacing:40.933333pt;}
._6{margin-left:-11.434667pt;}
._7{margin-left:-6.880000pt;}
._4{margin-left:-5.920000pt;}
._3{margin-left:-3.946667pt;}
._5{margin-left:-3.048000pt;}
._1{margin-left:-2.072000pt;}
._0{margin-left:-1.152000pt;}
._2{width:1.120000pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:54.933333pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:213.333333pt;}
.fs4{font-size:373.333333pt;}
.fs1{font-size:445.210667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.080000pt;}
.y20{bottom:55.946267pt;}
.yf1{bottom:57.720667pt;}
.y21{bottom:57.948933pt;}
.yf2{bottom:59.723333pt;}
.y6b{bottom:101.705333pt;}
.y9d{bottom:101.765333pt;}
.y1f{bottom:105.436000pt;}
.y6a{bottom:117.838667pt;}
.y9c{bottom:118.272000pt;}
.y39{bottom:120.356000pt;}
.y134{bottom:121.338667pt;}
.y1e{bottom:121.436000pt;}
.yd1{bottom:130.277333pt;}
.y69{bottom:133.972000pt;}
.y9b{bottom:134.778667pt;}
.y133{bottom:137.338667pt;}
.y1d{bottom:137.436000pt;}
.yf4{bottom:138.796000pt;}
.y38{bottom:139.046000pt;}
.yd0{bottom:146.277333pt;}
.y68{bottom:150.105333pt;}
.y9a{bottom:151.285333pt;}
.y132{bottom:153.337333pt;}
.y1c{bottom:153.436000pt;}
.y37{bottom:157.736000pt;}
.ycf{bottom:162.277333pt;}
.y9e{bottom:162.402667pt;}
.y22{bottom:163.045333pt;}
.yf3{bottom:164.177333pt;}
.yf6{bottom:164.818667pt;}
.y67{bottom:166.238667pt;}
.yd2{bottom:167.110667pt;}
.y99{bottom:167.792000pt;}
.y131{bottom:169.337333pt;}
.y1b{bottom:169.436000pt;}
.y36{bottom:176.426000pt;}
.yce{bottom:178.277333pt;}
.y66{bottom:182.372000pt;}
.y98{bottom:184.298667pt;}
.y1a{bottom:185.436000pt;}
.y130{bottom:192.897333pt;}
.ycd{bottom:194.277333pt;}
.y35{bottom:195.116000pt;}
.y65{bottom:198.505333pt;}
.y97{bottom:200.805333pt;}
.y19{bottom:201.436000pt;}
.y12f{bottom:208.897333pt;}
.ycc{bottom:210.277333pt;}
.y64{bottom:214.638667pt;}
.y96{bottom:217.312000pt;}
.y18{bottom:217.436000pt;}
.y34{bottom:221.366000pt;}
.y12e{bottom:224.896000pt;}
.ycb{bottom:226.277333pt;}
.y17{bottom:233.436000pt;}
.y33{bottom:240.056000pt;}
.y12d{bottom:240.896000pt;}
.y63{bottom:242.097333pt;}
.yca{bottom:242.277333pt;}
.y95{bottom:243.897333pt;}
.y16{bottom:249.436000pt;}
.yc9{bottom:258.277333pt;}
.y32{bottom:258.746000pt;}
.y12c{bottom:264.456000pt;}
.y15{bottom:272.996000pt;}
.yc8{bottom:274.277333pt;}
.y31{bottom:277.436000pt;}
.y12b{bottom:280.456000pt;}
.y14{bottom:288.996000pt;}
.yc7{bottom:290.277333pt;}
.y94{bottom:290.977333pt;}
.y62{bottom:295.256000pt;}
.y30{bottom:296.126000pt;}
.y12a{bottom:296.456000pt;}
.y109{bottom:304.120000pt;}
.y13{bottom:304.996000pt;}
.yc6{bottom:306.277333pt;}
.y61{bottom:311.389333pt;}
.y2f{bottom:314.816000pt;}
.y129{bottom:320.014667pt;}
.y12{bottom:320.996000pt;}
.yc5{bottom:322.277333pt;}
.y60{bottom:327.522667pt;}
.y108{bottom:333.453333pt;}
.y2e{bottom:333.506000pt;}
.y128{bottom:336.014667pt;}
.y11{bottom:336.996000pt;}
.yc4{bottom:338.277333pt;}
.y5f{bottom:343.656000pt;}
.y93{bottom:345.118667pt;}
.y2d{bottom:352.196000pt;}
.y10{bottom:352.996000pt;}
.yc3{bottom:354.277333pt;}
.y127{bottom:359.574667pt;}
.y92{bottom:361.625333pt;}
.y107{bottom:362.786667pt;}
.y5e{bottom:367.349333pt;}
.yf{bottom:368.996000pt;}
.yc2{bottom:370.277333pt;}
.y126{bottom:375.574667pt;}
.y91{bottom:378.132000pt;}
.y2c{bottom:382.009333pt;}
.y5d{bottom:383.482667pt;}
.ye{bottom:384.996000pt;}
.yc1{bottom:386.277333pt;}
.y125{bottom:391.574667pt;}
.y106{bottom:392.120000pt;}
.y90{bottom:394.638667pt;}
.y5c{bottom:399.616000pt;}
.yd{bottom:400.996000pt;}
.yc0{bottom:402.277333pt;}
.y8f{bottom:411.145333pt;}
.y5b{bottom:415.749333pt;}
.yc{bottom:416.996000pt;}
.ybf{bottom:418.277333pt;}
.y105{bottom:421.453333pt;}
.y8e{bottom:427.652000pt;}
.y5a{bottom:431.882667pt;}
.yb{bottom:432.996000pt;}
.ybe{bottom:434.277333pt;}
.y124{bottom:434.902667pt;}
.y8d{bottom:444.158667pt;}
.y59{bottom:448.016000pt;}
.ya{bottom:448.996000pt;}
.ybd{bottom:450.277333pt;}
.y104{bottom:450.786667pt;}
.y2b{bottom:460.041333pt;}
.y9{bottom:464.996000pt;}
.ybc{bottom:466.277333pt;}
.y8c{bottom:468.225333pt;}
.y58{bottom:471.709333pt;}
.y103{bottom:480.120000pt;}
.y8{bottom:480.996000pt;}
.ybb{bottom:482.277333pt;}
.y8b{bottom:484.732000pt;}
.y2a{bottom:486.793333pt;}
.y57{bottom:487.842667pt;}
.yd3{bottom:488.888000pt;}
.y7{bottom:496.996000pt;}
.yba{bottom:498.277333pt;}
.y8a{bottom:501.238667pt;}
.y56{bottom:503.976000pt;}
.yf0{bottom:506.828000pt;}
.y102{bottom:509.453333pt;}
.y3{bottom:512.996000pt;}
.y29{bottom:513.545333pt;}
.yb9{bottom:514.277333pt;}
.y89{bottom:517.745333pt;}
.y55{bottom:520.109333pt;}
.yef{bottom:522.948000pt;}
.y6{bottom:528.996000pt;}
.y28{bottom:532.745333pt;}
.y54{bottom:536.242667pt;}
.y101{bottom:538.786667pt;}
.yee{bottom:539.068000pt;}
.y88{bottom:541.812000pt;}
.y5{bottom:544.996000pt;}
.y123{bottom:547.728000pt;}
.ye0{bottom:557.353333pt;}
.y87{bottom:558.318667pt;}
.y27{bottom:559.497333pt;}
.y4{bottom:560.996000pt;}
.yb8{bottom:561.397333pt;}
.yed{bottom:562.748000pt;}
.y53{bottom:563.701333pt;}
.y122{bottom:564.208000pt;}
.y100{bottom:568.120000pt;}
.y86{bottom:574.825333pt;}
.ydf{bottom:575.086667pt;}
.yb7{bottom:577.397333pt;}
.yec{bottom:578.868000pt;}
.y121{bottom:580.688000pt;}
.y26{bottom:586.249333pt;}
.y85{bottom:591.332000pt;}
.yde{bottom:592.820000pt;}
.yb6{bottom:593.397333pt;}
.yff{bottom:597.453333pt;}
.yeb{bottom:602.548000pt;}
.y120{bottom:604.721333pt;}
.y84{bottom:607.838667pt;}
.yb5{bottom:609.397333pt;}
.ydd{bottom:610.553333pt;}
.y25{bottom:613.001333pt;}
.y52{bottom:616.824000pt;}
.yea{bottom:618.668000pt;}
.y11f{bottom:621.201333pt;}
.y83{bottom:624.345333pt;}
.yb4{bottom:625.397333pt;}
.yfe{bottom:626.786667pt;}
.ydc{bottom:628.286667pt;}
.y2{bottom:630.306667pt;}
.y51{bottom:632.957333pt;}
.ye9{bottom:634.788000pt;}
.y11e{bottom:637.681333pt;}
.yb3{bottom:641.397333pt;}
.y82{bottom:648.412000pt;}
.y50{bottom:649.090667pt;}
.ye8{bottom:650.908000pt;}
.ydb{bottom:653.580000pt;}
.y11d{bottom:654.161333pt;}
.yfd{bottom:656.120000pt;}
.yb2{bottom:657.397333pt;}
.y81{bottom:664.918667pt;}
.y4f{bottom:665.224000pt;}
.ye7{bottom:667.028000pt;}
.y11c{bottom:670.641333pt;}
.yda{bottom:671.313333pt;}
.yb1{bottom:673.397333pt;}
.y80{bottom:681.425333pt;}
.y24{bottom:682.694667pt;}
.ye6{bottom:683.148000pt;}
.yfc{bottom:685.453333pt;}
.y11b{bottom:687.121333pt;}
.y4e{bottom:688.917333pt;}
.yd9{bottom:689.046667pt;}
.yb0{bottom:689.397333pt;}
.y7f{bottom:697.932000pt;}
.ye5{bottom:699.268000pt;}
.y11a{bottom:703.601333pt;}
.y4d{bottom:705.050667pt;}
.yd8{bottom:706.780000pt;}
.y7e{bottom:714.438667pt;}
.yfb{bottom:714.786667pt;}
.ye4{bottom:715.388000pt;}
.y119{bottom:720.081333pt;}
.y4c{bottom:721.184000pt;}
.yd7{bottom:724.513333pt;}
.y7d{bottom:730.945333pt;}
.ye3{bottom:731.508000pt;}
.yaf{bottom:736.517333pt;}
.y118{bottom:736.561333pt;}
.y4b{bottom:737.317333pt;}
.yd6{bottom:742.246667pt;}
.yfa{bottom:744.120000pt;}
.y7c{bottom:747.452000pt;}
.ye2{bottom:747.628000pt;}
.yae{bottom:752.517333pt;}
.y117{bottom:753.041333pt;}
.y4a{bottom:753.450667pt;}
.yd5{bottom:759.980000pt;}
.y7b{bottom:763.958667pt;}
.yad{bottom:768.517333pt;}
.y116{bottom:769.521333pt;}
.y49{bottom:769.584000pt;}
.yf9{bottom:773.453333pt;}
.ye1{bottom:773.826667pt;}
.yd4{bottom:777.713333pt;}
.y7a{bottom:780.465333pt;}
.yac{bottom:784.517333pt;}
.y48{bottom:785.717333pt;}
.y23{bottom:791.629333pt;}
.y115{bottom:793.554667pt;}
.y79{bottom:796.972000pt;}
.yab{bottom:800.517333pt;}
.y47{bottom:801.850667pt;}
.yf8{bottom:802.786667pt;}
.y114{bottom:810.034667pt;}
.y78{bottom:813.478667pt;}
.yaa{bottom:816.517333pt;}
.y46{bottom:817.984000pt;}
.y113{bottom:826.514667pt;}
.yf7{bottom:832.120000pt;}
.ya9{bottom:832.517333pt;}
.y77{bottom:837.545333pt;}
.y45{bottom:841.677333pt;}
.y112{bottom:842.994667pt;}
.ya8{bottom:848.517333pt;}
.y76{bottom:854.052000pt;}
.yf5{bottom:857.489333pt;}
.y44{bottom:857.810667pt;}
.y111{bottom:859.474667pt;}
.y75{bottom:870.558667pt;}
.y43{bottom:873.944000pt;}
.y110{bottom:875.954667pt;}
.y74{bottom:887.065333pt;}
.y42{bottom:890.077333pt;}
.y10f{bottom:892.434667pt;}
.ya7{bottom:895.637333pt;}
.y73{bottom:903.572000pt;}
.y41{bottom:906.210667pt;}
.y10e{bottom:908.914667pt;}
.ya6{bottom:911.637333pt;}
.y72{bottom:920.078667pt;}
.y40{bottom:922.344000pt;}
.y10d{bottom:925.394667pt;}
.ya5{bottom:927.637333pt;}
.y71{bottom:936.585333pt;}
.y10c{bottom:941.874667pt;}
.ya4{bottom:943.637333pt;}
.y3f{bottom:946.037333pt;}
.y70{bottom:953.092000pt;}
.y10b{bottom:958.354667pt;}
.ya3{bottom:959.637333pt;}
.y3e{bottom:962.170667pt;}
.y6f{bottom:969.598667pt;}
.ya2{bottom:975.637333pt;}
.y3d{bottom:978.304000pt;}
.ya1{bottom:991.637333pt;}
.y6e{bottom:993.665333pt;}
.y3c{bottom:994.437333pt;}
.ya0{bottom:1007.637333pt;}
.y10a{bottom:1009.528000pt;}
.y6d{bottom:1010.172000pt;}
.y3b{bottom:1010.570667pt;}
.y9f{bottom:1023.637333pt;}
.y6c{bottom:1026.678667pt;}
.y3a{bottom:1026.704000pt;}
.h10{height:39.875000pt;}
.h7{height:45.338542pt;}
.h6{height:49.843750pt;}
.h5{height:50.416667pt;}
.h13{height:50.422000pt;}
.h12{height:51.339063pt;}
.he{height:56.906667pt;}
.hd{height:59.752000pt;}
.hb{height:59.812500pt;}
.ha{height:60.500000pt;}
.h8{height:68.859375pt;}
.hf{height:70.583333pt;}
.h3{height:80.666667pt;}
.h11{height:83.882667pt;}
.hc{height:91.050667pt;}
.h4{height:317.386510pt;}
.h9{height:352.916667pt;}
.h2{height:1122.439939pt;}
.h0{height:1122.519939pt;}
.h1{height:1122.666667pt;}
.w2{width:793.620000pt;}
.w3{width:793.621333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:41.548800pt;}
.x18{left:42.832267pt;}
.x11{left:74.205200pt;}
.x1a{left:77.145600pt;}
.x20{left:81.049200pt;}
.xa{left:89.049200pt;}
.x9{left:99.996400pt;}
.x7{left:105.409467pt;}
.x15{left:106.424667pt;}
.x10{left:117.048533pt;}
.x19{left:118.332000pt;}
.x14{left:141.893333pt;}
.xb{left:156.633333pt;}
.x16{left:157.917333pt;}
.xc{left:171.753333pt;}
.x8{left:260.869333pt;}
.x1b{left:266.537333pt;}
.x1c{left:321.218667pt;}
.x12{left:370.928000pt;}
.x21{left:386.990533pt;}
.x22{left:388.150667pt;}
.x2{left:394.561333pt;}
.x1{left:395.709333pt;}
.xd{left:446.806667pt;}
.x17{left:448.090667pt;}
.xe{left:461.926667pt;}
.x3{left:468.709333pt;}
.x13{left:492.181333pt;}
.x5{left:585.624000pt;}
.x1e{left:586.906667pt;}
.x6{left:708.412000pt;}
.x1f{left:712.582667pt;}
.x4{left:768.068000pt;}
.x1d{left:769.352000pt;}
}

