
    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_1ab5155416d5b4539738aeef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_074f9520fccea394026f7ff3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_1ab5155416d5b4539738aeef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_c5545b375a3ad1cd8acf7f20.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_a149ed6b58e5938f1d57b6bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_800d962021dc14dbd457b982.woff')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_c5545b375a3ad1cd8acf7f20.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_a149ed6b58e5938f1d57b6bb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.203000;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_b6b6dc8e5c7f27bce4dd6eb0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_4a959dac6655fe6d9edff51d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5545b375a3ad1cd8acf7f20.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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:ffc;src:url('chunks/assets/font_a149ed6b58e5938f1d57b6bb.woff')format("woff");}.ffc{font-family:ffc;line-height:1.203000;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:ffd;src:url('chunks/assets/font_359793425977c78f8f2f9e77.woff')format("woff");}.ffd{font-family:ffd;line-height:1.444000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v4{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls3{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.352800px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000009px;}
.ls7{letter-spacing:0.000100px;}
.ls1{letter-spacing:9.360000px;}
.ls0{letter-spacing:55.805614px;}
.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;}
}
.ws7{word-spacing:-30.528000px;}
.ws8{word-spacing:-14.454000px;}
.ws6e{word-spacing:-13.935600px;}
.ws16{word-spacing:-13.818000px;}
.ws6{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws5{word-spacing:-11.880000px;}
.ws6f{word-spacing:-11.426400px;}
.wsa5{word-spacing:-10.512000px;}
.wsa4{word-spacing:-9.936000px;}
.ws1{word-spacing:-9.855000px;}
.ws103{word-spacing:-9.315000px;}
.ws14{word-spacing:-8.148000px;}
.ws2{word-spacing:-6.898500px;}
.wsfc{word-spacing:-6.585600px;}
.ws15{word-spacing:-3.300000px;}
.wsdd{word-spacing:-0.999600px;}
.wsa{word-spacing:-0.780000px;}
.ws50{word-spacing:-0.764400px;}
.wsf5{word-spacing:-0.470400px;}
.ws8d{word-spacing:-0.294000px;}
.wsd9{word-spacing:-0.235200px;}
.wsd8{word-spacing:-0.117600px;}
.ws22{word-spacing:-0.058800px;}
.ws118{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws77{word-spacing:0.058800px;}
.ws1f{word-spacing:0.117600px;}
.ws1e{word-spacing:0.176400px;}
.ws26{word-spacing:0.235200px;}
.ws13{word-spacing:0.294000px;}
.wsd0{word-spacing:0.470400px;}
.wsf{word-spacing:0.504000px;}
.ws10b{word-spacing:0.529200px;}
.wsaa{word-spacing:0.588000px;}
.wsee{word-spacing:0.705600px;}
.ws38{word-spacing:0.764400px;}
.wsbb{word-spacing:0.823200px;}
.wsde{word-spacing:0.882000px;}
.ws63{word-spacing:0.940800px;}
.wsc9{word-spacing:1.058400px;}
.ws8e{word-spacing:1.117200px;}
.ws108{word-spacing:1.176000px;}
.wse2{word-spacing:1.293600px;}
.ws6c{word-spacing:1.352400px;}
.wsa3{word-spacing:1.411200px;}
.ws8c{word-spacing:1.470000px;}
.ws10{word-spacing:1.512000px;}
.ws5b{word-spacing:1.528800px;}
.ws32{word-spacing:1.587600px;}
.ws84{word-spacing:1.646400px;}
.ws95{word-spacing:1.705200px;}
.ws116{word-spacing:1.764000px;}
.wsc4{word-spacing:1.881600px;}
.ws12{word-spacing:1.890000px;}
.ws8f{word-spacing:1.940400px;}
.wsa9{word-spacing:1.999200px;}
.ws11{word-spacing:2.016000px;}
.ws2f{word-spacing:2.293200px;}
.wse{word-spacing:2.310000px;}
.ws5d{word-spacing:2.352000px;}
.ws5f{word-spacing:2.410800px;}
.ws9b{word-spacing:2.469600px;}
.ws2d{word-spacing:2.528400px;}
.wsc7{word-spacing:2.587200px;}
.ws18{word-spacing:2.640000px;}
.ws10e{word-spacing:2.704800px;}
.ws10f{word-spacing:2.763600px;}
.ws7b{word-spacing:2.881200px;}
.ws2c{word-spacing:2.998800px;}
.wsad{word-spacing:3.057600px;}
.ws17{word-spacing:3.072000px;}
.wse3{word-spacing:3.116400px;}
.wsc5{word-spacing:3.175200px;}
.ws102{word-spacing:3.234000px;}
.ws10c{word-spacing:3.292800px;}
.ws80{word-spacing:3.410400px;}
.ws91{word-spacing:3.528000px;}
.ws6d{word-spacing:3.586800px;}
.wsa2{word-spacing:3.763200px;}
.wscf{word-spacing:3.822000px;}
.wsc3{word-spacing:3.880800px;}
.wse7{word-spacing:3.998400px;}
.wsd3{word-spacing:4.116000px;}
.wscb{word-spacing:4.174800px;}
.ws81{word-spacing:4.233600px;}
.ws9c{word-spacing:4.351200px;}
.wsa0{word-spacing:4.410000px;}
.wsf7{word-spacing:4.527600px;}
.ws2b{word-spacing:4.586400px;}
.ws60{word-spacing:4.645200px;}
.ws79{word-spacing:4.704000px;}
.ws1d{word-spacing:4.762800px;}
.ws109{word-spacing:4.880400px;}
.ws85{word-spacing:4.939200px;}
.ws24{word-spacing:5.056800px;}
.ws94{word-spacing:5.115600px;}
.ws3d{word-spacing:5.174400px;}
.ws20{word-spacing:5.233200px;}
.wsb9{word-spacing:5.292000px;}
.ws59{word-spacing:5.350800px;}
.ws8a{word-spacing:5.409600px;}
.wsb4{word-spacing:5.468400px;}
.wsbc{word-spacing:5.527200px;}
.ws4d{word-spacing:5.644800px;}
.wsdc{word-spacing:5.703600px;}
.ws49{word-spacing:5.821200px;}
.wseb{word-spacing:5.880000px;}
.ws57{word-spacing:5.938800px;}
.ws10a{word-spacing:5.997600px;}
.wsdb{word-spacing:6.056400px;}
.ws44{word-spacing:6.115200px;}
.ws87{word-spacing:6.174000px;}
.ws46{word-spacing:6.232800px;}
.ws2e{word-spacing:6.291600px;}
.ws5c{word-spacing:6.409200px;}
.wsd4{word-spacing:6.468000px;}
.wse9{word-spacing:6.585600px;}
.ws3f{word-spacing:6.820800px;}
.ws41{word-spacing:6.879600px;}
.wsb8{word-spacing:6.938400px;}
.wsc8{word-spacing:6.997200px;}
.ws101{word-spacing:7.056000px;}
.ws28{word-spacing:7.114800px;}
.wsd6{word-spacing:7.232400px;}
.ws6a{word-spacing:7.291200px;}
.wse8{word-spacing:7.350000px;}
.ws110{word-spacing:7.408800px;}
.ws98{word-spacing:7.467600px;}
.ws67{word-spacing:7.526400px;}
.ws19{word-spacing:7.585200px;}
.ws9a{word-spacing:7.644000px;}
.ws64{word-spacing:7.702800px;}
.wsb2{word-spacing:7.761600px;}
.wsa8{word-spacing:7.938000px;}
.wsb1{word-spacing:7.996800px;}
.ws76{word-spacing:8.055600px;}
.wscc{word-spacing:8.173200px;}
.wsfb{word-spacing:8.232000px;}
.wsa1{word-spacing:8.290800px;}
.ws23{word-spacing:8.408400px;}
.ws53{word-spacing:8.467200px;}
.ws27{word-spacing:8.526000px;}
.ws107{word-spacing:8.584800px;}
.ws21{word-spacing:8.643600px;}
.ws4c{word-spacing:8.702400px;}
.ws3b{word-spacing:8.761200px;}
.ws1a{word-spacing:8.820000px;}
.ws93{word-spacing:8.878800px;}
.ws55{word-spacing:8.937600px;}
.ws30{word-spacing:9.172800px;}
.wse0{word-spacing:9.231600px;}
.ws52{word-spacing:9.290400px;}
.wsea{word-spacing:9.349200px;}
.wsf4{word-spacing:9.466800px;}
.ws61{word-spacing:9.525600px;}
.wsd{word-spacing:9.534000px;}
.ws75{word-spacing:9.584400px;}
.ws4a{word-spacing:9.702000px;}
.ws58{word-spacing:9.760800px;}
.wsef{word-spacing:9.937200px;}
.ws113{word-spacing:9.996000px;}
.ws99{word-spacing:10.113600px;}
.ws7f{word-spacing:10.172400px;}
.wsf1{word-spacing:10.231200px;}
.ws115{word-spacing:10.290000px;}
.wsc{word-spacing:10.332000px;}
.ws74{word-spacing:10.348800px;}
.wsbd{word-spacing:10.407600px;}
.wsb6{word-spacing:10.466400px;}
.ws45{word-spacing:10.642800px;}
.ws114{word-spacing:10.701600px;}
.wsf6{word-spacing:10.760400px;}
.ws2a{word-spacing:10.936800px;}
.ws7e{word-spacing:10.995600px;}
.ws117{word-spacing:11.054400px;}
.ws56{word-spacing:11.113200px;}
.wsba{word-spacing:11.348400px;}
.ws7d{word-spacing:11.407200px;}
.ws3a{word-spacing:11.466000px;}
.wsfd{word-spacing:11.524800px;}
.ws9d{word-spacing:11.583600px;}
.ws70{word-spacing:11.642400px;}
.ws3e{word-spacing:11.701200px;}
.ws4e{word-spacing:11.760000px;}
.ws39{word-spacing:11.818800px;}
.wsed{word-spacing:11.877600px;}
.ws48{word-spacing:11.995200px;}
.ws1c{word-spacing:12.054000px;}
.ws68{word-spacing:12.171600px;}
.wsd5{word-spacing:12.230400px;}
.ws35{word-spacing:12.289200px;}
.wsaf{word-spacing:12.348000px;}
.wsb7{word-spacing:12.465600px;}
.ws69{word-spacing:12.583200px;}
.wsdf{word-spacing:12.642000px;}
.wse5{word-spacing:12.700800px;}
.ws1b{word-spacing:12.759600px;}
.wse1{word-spacing:12.877200px;}
.ws4f{word-spacing:12.936000px;}
.wsd7{word-spacing:12.994800px;}
.ws51{word-spacing:13.053600px;}
.ws111{word-spacing:13.112400px;}
.ws8b{word-spacing:13.171200px;}
.ws25{word-spacing:13.465200px;}
.wsd1{word-spacing:13.524000px;}
.ws5e{word-spacing:13.582800px;}
.wsff{word-spacing:13.641600px;}
.wsae{word-spacing:13.700400px;}
.ws96{word-spacing:13.759200px;}
.ws43{word-spacing:13.818000px;}
.wsac{word-spacing:13.876800px;}
.ws40{word-spacing:13.935600px;}
.ws7c{word-spacing:14.112000px;}
.ws83{word-spacing:14.464800px;}
.ws7a{word-spacing:14.700000px;}
.wsf9{word-spacing:14.817600px;}
.wsc6{word-spacing:14.876400px;}
.wsb5{word-spacing:15.111600px;}
.wsf2{word-spacing:15.288000px;}
.ws54{word-spacing:15.346800px;}
.ws106{word-spacing:15.405600px;}
.ws29{word-spacing:15.464400px;}
.ws10d{word-spacing:15.640800px;}
.ws82{word-spacing:15.699600px;}
.wsbf{word-spacing:15.758400px;}
.ws4b{word-spacing:15.876000px;}
.ws33{word-spacing:15.934800px;}
.wsc2{word-spacing:15.993600px;}
.ws65{word-spacing:16.170000px;}
.ws5a{word-spacing:16.228800px;}
.ws62{word-spacing:16.346400px;}
.ws47{word-spacing:16.581600px;}
.wscd{word-spacing:16.640400px;}
.ws89{word-spacing:16.816800px;}
.ws72{word-spacing:16.875600px;}
.wsca{word-spacing:16.934400px;}
.ws100{word-spacing:17.110800px;}
.ws31{word-spacing:17.287200px;}
.wse6{word-spacing:17.346000px;}
.wsf3{word-spacing:17.463600px;}
.ws86{word-spacing:17.640000px;}
.wsfe{word-spacing:17.698800px;}
.wsbe{word-spacing:17.934000px;}
.ws88{word-spacing:18.051600px;}
.wsab{word-spacing:18.110400px;}
.wsb3{word-spacing:18.404400px;}
.ws36{word-spacing:18.874800px;}
.ws9f{word-spacing:18.992400px;}
.ws3c{word-spacing:19.051200px;}
.wsfa{word-spacing:19.815600px;}
.ws78{word-spacing:19.874400px;}
.ws73{word-spacing:19.992000px;}
.wsf8{word-spacing:20.227200px;}
.ws92{word-spacing:20.756400px;}
.ws105{word-spacing:21.168000px;}
.wsce{word-spacing:21.520800px;}
.wsec{word-spacing:21.579600px;}
.wse4{word-spacing:21.814800px;}
.ws34{word-spacing:22.520400px;}
.wsb0{word-spacing:22.638000px;}
.ws37{word-spacing:23.167200px;}
.ws90{word-spacing:23.520000px;}
.ws66{word-spacing:23.578800px;}
.ws71{word-spacing:24.343200px;}
.wsda{word-spacing:24.754800px;}
.ws112{word-spacing:25.166400px;}
.ws104{word-spacing:25.813200px;}
.ws97{word-spacing:27.224400px;}
.ws42{word-spacing:27.812400px;}
.ws6b{word-spacing:28.047600px;}
.wsc1{word-spacing:30.752400px;}
.ws9e{word-spacing:31.752000px;}
.wsd2{word-spacing:32.751600px;}
.wsf0{word-spacing:35.162400px;}
.wsc0{word-spacing:36.573600px;}
.ws9{word-spacing:45.688025px;}
.wsa7{word-spacing:1307.956202px;}
.wsa6{word-spacing:1350.720026px;}
.ws0{word-spacing:1577.599179px;}
._7{margin-left:-2891.548121px;}
._1c{margin-left:-37.395557px;}
._1b{margin-left:-6.797859px;}
._c{margin-left:-5.763698px;}
._8{margin-left:-4.292400px;}
._0{margin-left:-2.886000px;}
._1{margin-left:-1.099800px;}
._3{width:1.806458px;}
._6{width:2.971800px;}
._9{width:6.077453px;}
._a{width:8.839825px;}
._b{width:10.054800px;}
._1a{width:12.759600px;}
._4{width:14.415598px;}
._5{width:16.160990px;}
._1f{width:33.120000px;}
._1d{width:49.303200px;}
._1e{width:55.080000px;}
._16{width:542.872825px;}
._15{width:696.132625px;}
._f{width:944.458367px;}
._12{width:1204.116625px;}
._11{width:1363.624825px;}
._18{width:1368.780167px;}
._19{width:1377.736825px;}
._17{width:1387.768825px;}
._14{width:1419.304825px;}
._e{width:1457.080825px;}
._10{width:1504.024825px;}
._13{width:1581.976825px;}
._2{width:1651.880345px;}
._d{width:1786.333225px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.500000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:88.869152px;}
.y72{bottom:92.551203px;}
.y64{bottom:92.551352px;}
.y8{bottom:100.869152px;}
.ya8{bottom:101.043297px;}
.y71{bottom:110.551197px;}
.y63{bottom:110.551346px;}
.yef{bottom:111.113697px;}
.y7{bottom:112.869152px;}
.ya7{bottom:114.543297px;}
.yee{bottom:124.613697px;}
.y6{bottom:124.869152px;}
.ya6{bottom:128.043297px;}
.y70{bottom:128.551197px;}
.y62{bottom:128.551346px;}
.y5{bottom:136.869152px;}
.yed{bottom:138.113697px;}
.ya5{bottom:141.543297px;}
.y6f{bottom:146.551197px;}
.y61{bottom:146.551346px;}
.y4{bottom:148.869152px;}
.yec{bottom:151.613697px;}
.ya4{bottom:155.043297px;}
.y3{bottom:160.869152px;}
.y6e{bottom:164.551197px;}
.y60{bottom:164.551346px;}
.yeb{bottom:165.113697px;}
.ya3{bottom:168.543297px;}
.y2{bottom:172.869152px;}
.yea{bottom:178.613697px;}
.ya2{bottom:182.043297px;}
.y6d{bottom:182.551197px;}
.y5f{bottom:182.551346px;}
.ye9{bottom:192.113708px;}
.ya1{bottom:195.543297px;}
.y6c{bottom:200.551208px;}
.y5e{bottom:200.551346px;}
.ye8{bottom:205.613708px;}
.ya0{bottom:209.043297px;}
.y6b{bottom:218.551208px;}
.y5d{bottom:218.551346px;}
.yf{bottom:218.805748px;}
.ye7{bottom:219.113708px;}
.y9f{bottom:222.543297px;}
.ye{bottom:227.805748px;}
.ye6{bottom:232.613708px;}
.y9e{bottom:236.043297px;}
.y6a{bottom:236.551208px;}
.y5c{bottom:236.551346px;}
.yd{bottom:241.305748px;}
.y11{bottom:245.805748px;}
.ye5{bottom:246.113708px;}
.y9d{bottom:249.543297px;}
.y69{bottom:254.551208px;}
.y5b{bottom:254.551346px;}
.yc{bottom:254.805748px;}
.y10{bottom:259.305748px;}
.ye4{bottom:259.613708px;}
.y9c{bottom:263.043297px;}
.y68{bottom:272.551208px;}
.y5a{bottom:272.551346px;}
.ye3{bottom:273.113708px;}
.ye2{bottom:286.613708px;}
.y67{bottom:290.551208px;}
.y59{bottom:290.551346px;}
.ye1{bottom:300.113708px;}
.y58{bottom:308.551208px;}
.ye0{bottom:313.613708px;}
.y57{bottom:326.551208px;}
.ydf{bottom:327.113708px;}
.y9b{bottom:332.043297px;}
.yde{bottom:340.613708px;}
.y56{bottom:344.551208px;}
.y28{bottom:348.354149px;}
.ydd{bottom:354.113708px;}
.y55{bottom:362.551208px;}
.y27{bottom:366.354149px;}
.ydc{bottom:367.613708px;}
.y9a{bottom:376.051208px;}
.y54{bottom:380.551208px;}
.ydb{bottom:381.113708px;}
.y26{bottom:388.854172px;}
.yda{bottom:394.613708px;}
.y53{bottom:398.551208px;}
.y99{bottom:403.051208px;}
.yd9{bottom:408.113708px;}
.y25{bottom:411.354172px;}
.y52{bottom:416.551208px;}
.yd8{bottom:421.613708px;}
.y24{bottom:429.354172px;}
.y51{bottom:434.551208px;}
.yd7{bottom:435.113708px;}
.y98{bottom:443.551208px;}
.y23{bottom:447.354172px;}
.yd6{bottom:448.613708px;}
.y50{bottom:452.551208px;}
.y97{bottom:457.051208px;}
.yd5{bottom:462.113708px;}
.y22{bottom:465.354172px;}
.y4f{bottom:470.551208px;}
.yd4{bottom:475.613708px;}
.y21{bottom:483.354172px;}
.y96{bottom:484.051208px;}
.y4e{bottom:488.551208px;}
.yd3{bottom:489.113708px;}
.y20{bottom:501.354172px;}
.yd2{bottom:502.613708px;}
.y4d{bottom:506.551208px;}
.y95{bottom:511.051208px;}
.yd1{bottom:516.113708px;}
.y1f{bottom:519.354172px;}
.y4c{bottom:524.551208px;}
.yd0{bottom:529.613708px;}
.y1e{bottom:537.354172px;}
.y4b{bottom:542.551208px;}
.ycf{bottom:543.113708px;}
.y94{bottom:547.051208px;}
.yce{bottom:556.613708px;}
.y1d{bottom:559.854172px;}
.y4a{bottom:560.551208px;}
.ycd{bottom:570.113708px;}
.y1c{bottom:577.854172px;}
.y49{bottom:578.551208px;}
.ycc{bottom:583.613708px;}
.y93{bottom:587.551208px;}
.y1b{bottom:595.854172px;}
.y48{bottom:596.551208px;}
.ycb{bottom:597.113708px;}
.y92{bottom:601.051208px;}
.yca{bottom:610.613708px;}
.y1a{bottom:613.854172px;}
.y47{bottom:614.551208px;}
.yc9{bottom:624.113708px;}
.y91{bottom:628.051208px;}
.y46{bottom:632.551208px;}
.y19{bottom:636.354172px;}
.yc8{bottom:637.613708px;}
.y45{bottom:650.551208px;}
.yc7{bottom:651.113708px;}
.y18{bottom:654.354172px;}
.y90{bottom:655.051208px;}
.yc6{bottom:664.613708px;}
.y44{bottom:668.551208px;}
.y17{bottom:672.354172px;}
.yc5{bottom:678.113708px;}
.y8f{bottom:682.051208px;}
.y43{bottom:686.551208px;}
.y16{bottom:690.354172px;}
.yc4{bottom:691.613708px;}
.y88{bottom:692.607285px;}
.y8e{bottom:695.551208px;}
.y42{bottom:704.551208px;}
.yc3{bottom:705.113708px;}
.y15{bottom:708.354172px;}
.y8d{bottom:709.051208px;}
.y87{bottom:710.111252px;}
.yc2{bottom:718.613708px;}
.y41{bottom:722.551208px;}
.y14{bottom:726.354172px;}
.y86{bottom:727.615219px;}
.yc1{bottom:732.113708px;}
.y40{bottom:740.551208px;}
.y13{bottom:744.354172px;}
.y85{bottom:745.119141px;}
.yc0{bottom:745.613708px;}
.y8c{bottom:749.551208px;}
.y3f{bottom:758.551208px;}
.ybf{bottom:759.113708px;}
.y84{bottom:762.623108px;}
.y8b{bottom:763.051208px;}
.y12{bottom:766.854172px;}
.ybe{bottom:772.613708px;}
.y3e{bottom:776.551208px;}
.y83{bottom:780.127075px;}
.ybd{bottom:786.113708px;}
.y8a{bottom:790.051208px;}
.y3d{bottom:794.551208px;}
.y82{bottom:797.631042px;}
.ybc{bottom:799.613708px;}
.y89{bottom:803.551208px;}
.y3c{bottom:812.551208px;}
.ybb{bottom:813.113708px;}
.y81{bottom:815.134827px;}
.y2d{bottom:825.316681px;}
.yba{bottom:826.613708px;}
.y3b{bottom:830.551208px;}
.y80{bottom:832.638794px;}
.yb9{bottom:840.113708px;}
.y2c{bottom:846.316681px;}
.y7f{bottom:847.638794px;}
.y3a{bottom:848.551208px;}
.yb8{bottom:853.613708px;}
.y7e{bottom:862.638794px;}
.y39{bottom:866.551208px;}
.yb7{bottom:867.113708px;}
.y7d{bottom:877.638794px;}
.yb6{bottom:880.613708px;}
.y38{bottom:884.551208px;}
.yb5{bottom:894.113708px;}
.y7c{bottom:895.142670px;}
.y2b{bottom:897.316681px;}
.y37{bottom:902.551208px;}
.yb4{bottom:907.613708px;}
.y7b{bottom:910.142670px;}
.y36{bottom:920.551208px;}
.yb3{bottom:921.113708px;}
.y7a{bottom:927.646820px;}
.yb2{bottom:934.613708px;}
.y2a{bottom:936.316681px;}
.y35{bottom:938.551208px;}
.y79{bottom:945.150604px;}
.yb1{bottom:948.113708px;}
.y34{bottom:956.551208px;}
.yb0{bottom:961.613708px;}
.y78{bottom:962.654572px;}
.y33{bottom:974.551208px;}
.yaf{bottom:975.113708px;}
.y29{bottom:975.316681px;}
.y77{bottom:980.158539px;}
.yae{bottom:988.613708px;}
.y32{bottom:992.551208px;}
.y76{bottom:997.662415px;}
.yad{bottom:1002.113708px;}
.y31{bottom:1010.551208px;}
.y75{bottom:1015.166382px;}
.yac{bottom:1015.613708px;}
.yf1{bottom:1019.551208px;}
.y66{bottom:1028.551208px;}
.y30{bottom:1028.551392px;}
.yab{bottom:1029.113708px;}
.y74{bottom:1032.670349px;}
.yf0{bottom:1033.051208px;}
.y1{bottom:1036.426208px;}
.yaa{bottom:1042.613708px;}
.y65{bottom:1046.551208px;}
.y2f{bottom:1046.551392px;}
.y73{bottom:1050.174133px;}
.ya9{bottom:1056.113708px;}
.yb{bottom:1114.051208px;}
.ya{bottom:1129.051208px;}
.y2e{bottom:1129.426208px;}
.h8{height:29.452500px;}
.h4{height:39.270000px;}
.h3{height:41.538000px;}
.h7{height:42.075000px;}
.h15{height:42.840000px;}
.h14{height:43.740000px;}
.h13{height:44.880000px;}
.h5{height:45.744000px;}
.h12{height:46.656000px;}
.h11{height:53.406000px;}
.h10{height:53.654399px;}
.hf{height:54.625200px;}
.he{height:55.860000px;}
.hb{height:56.100000px;}
.ha{height:58.320000px;}
.h9{height:61.120200px;}
.hd{height:69.596779px;}
.h2{height:78.896517px;}
.h6{height:116.732582px;}
.hc{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x5{left:94.789352px;}
.x7{left:97.039500px;}
.xd{left:107.539352px;}
.x2{left:271.062904px;}
.x4{left:457.547241px;}
.x8{left:469.086731px;}
.xb{left:474.760483px;}
.xc{left:479.586594px;}
.x9{left:487.086594px;}
.xa{left:553.469559px;}
.x6{left:750.973480px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v4{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.313600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000008pt;}
.ls7{letter-spacing:0.000089pt;}
.ls1{letter-spacing:8.320000pt;}
.ls0{letter-spacing:49.604990pt;}
.ws7{word-spacing:-27.136000pt;}
.ws8{word-spacing:-12.848000pt;}
.ws6e{word-spacing:-12.387200pt;}
.ws16{word-spacing:-12.282667pt;}
.ws6{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws6f{word-spacing:-10.156800pt;}
.wsa5{word-spacing:-9.344000pt;}
.wsa4{word-spacing:-8.832000pt;}
.ws1{word-spacing:-8.760000pt;}
.ws103{word-spacing:-8.280000pt;}
.ws14{word-spacing:-7.242667pt;}
.ws2{word-spacing:-6.132000pt;}
.wsfc{word-spacing:-5.853867pt;}
.ws15{word-spacing:-2.933333pt;}
.wsdd{word-spacing:-0.888533pt;}
.wsa{word-spacing:-0.693333pt;}
.ws50{word-spacing:-0.679467pt;}
.wsf5{word-spacing:-0.418133pt;}
.ws8d{word-spacing:-0.261333pt;}
.wsd9{word-spacing:-0.209067pt;}
.wsd8{word-spacing:-0.104533pt;}
.ws22{word-spacing:-0.052267pt;}
.ws118{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws77{word-spacing:0.052267pt;}
.ws1f{word-spacing:0.104533pt;}
.ws1e{word-spacing:0.156800pt;}
.ws26{word-spacing:0.209067pt;}
.ws13{word-spacing:0.261333pt;}
.wsd0{word-spacing:0.418133pt;}
.wsf{word-spacing:0.448000pt;}
.ws10b{word-spacing:0.470400pt;}
.wsaa{word-spacing:0.522667pt;}
.wsee{word-spacing:0.627200pt;}
.ws38{word-spacing:0.679467pt;}
.wsbb{word-spacing:0.731733pt;}
.wsde{word-spacing:0.784000pt;}
.ws63{word-spacing:0.836267pt;}
.wsc9{word-spacing:0.940800pt;}
.ws8e{word-spacing:0.993067pt;}
.ws108{word-spacing:1.045333pt;}
.wse2{word-spacing:1.149867pt;}
.ws6c{word-spacing:1.202133pt;}
.wsa3{word-spacing:1.254400pt;}
.ws8c{word-spacing:1.306667pt;}
.ws10{word-spacing:1.344000pt;}
.ws5b{word-spacing:1.358933pt;}
.ws32{word-spacing:1.411200pt;}
.ws84{word-spacing:1.463467pt;}
.ws95{word-spacing:1.515733pt;}
.ws116{word-spacing:1.568000pt;}
.wsc4{word-spacing:1.672533pt;}
.ws12{word-spacing:1.680000pt;}
.ws8f{word-spacing:1.724800pt;}
.wsa9{word-spacing:1.777067pt;}
.ws11{word-spacing:1.792000pt;}
.ws2f{word-spacing:2.038400pt;}
.wse{word-spacing:2.053333pt;}
.ws5d{word-spacing:2.090667pt;}
.ws5f{word-spacing:2.142933pt;}
.ws9b{word-spacing:2.195200pt;}
.ws2d{word-spacing:2.247467pt;}
.wsc7{word-spacing:2.299733pt;}
.ws18{word-spacing:2.346667pt;}
.ws10e{word-spacing:2.404267pt;}
.ws10f{word-spacing:2.456533pt;}
.ws7b{word-spacing:2.561067pt;}
.ws2c{word-spacing:2.665600pt;}
.wsad{word-spacing:2.717867pt;}
.ws17{word-spacing:2.730667pt;}
.wse3{word-spacing:2.770133pt;}
.wsc5{word-spacing:2.822400pt;}
.ws102{word-spacing:2.874667pt;}
.ws10c{word-spacing:2.926933pt;}
.ws80{word-spacing:3.031467pt;}
.ws91{word-spacing:3.136000pt;}
.ws6d{word-spacing:3.188267pt;}
.wsa2{word-spacing:3.345067pt;}
.wscf{word-spacing:3.397333pt;}
.wsc3{word-spacing:3.449600pt;}
.wse7{word-spacing:3.554133pt;}
.wsd3{word-spacing:3.658667pt;}
.wscb{word-spacing:3.710933pt;}
.ws81{word-spacing:3.763200pt;}
.ws9c{word-spacing:3.867733pt;}
.wsa0{word-spacing:3.920000pt;}
.wsf7{word-spacing:4.024533pt;}
.ws2b{word-spacing:4.076800pt;}
.ws60{word-spacing:4.129067pt;}
.ws79{word-spacing:4.181333pt;}
.ws1d{word-spacing:4.233600pt;}
.ws109{word-spacing:4.338133pt;}
.ws85{word-spacing:4.390400pt;}
.ws24{word-spacing:4.494933pt;}
.ws94{word-spacing:4.547200pt;}
.ws3d{word-spacing:4.599467pt;}
.ws20{word-spacing:4.651733pt;}
.wsb9{word-spacing:4.704000pt;}
.ws59{word-spacing:4.756267pt;}
.ws8a{word-spacing:4.808533pt;}
.wsb4{word-spacing:4.860800pt;}
.wsbc{word-spacing:4.913067pt;}
.ws4d{word-spacing:5.017600pt;}
.wsdc{word-spacing:5.069867pt;}
.ws49{word-spacing:5.174400pt;}
.wseb{word-spacing:5.226667pt;}
.ws57{word-spacing:5.278933pt;}
.ws10a{word-spacing:5.331200pt;}
.wsdb{word-spacing:5.383467pt;}
.ws44{word-spacing:5.435733pt;}
.ws87{word-spacing:5.488000pt;}
.ws46{word-spacing:5.540267pt;}
.ws2e{word-spacing:5.592533pt;}
.ws5c{word-spacing:5.697067pt;}
.wsd4{word-spacing:5.749333pt;}
.wse9{word-spacing:5.853867pt;}
.ws3f{word-spacing:6.062933pt;}
.ws41{word-spacing:6.115200pt;}
.wsb8{word-spacing:6.167467pt;}
.wsc8{word-spacing:6.219733pt;}
.ws101{word-spacing:6.272000pt;}
.ws28{word-spacing:6.324267pt;}
.wsd6{word-spacing:6.428800pt;}
.ws6a{word-spacing:6.481067pt;}
.wse8{word-spacing:6.533333pt;}
.ws110{word-spacing:6.585600pt;}
.ws98{word-spacing:6.637867pt;}
.ws67{word-spacing:6.690133pt;}
.ws19{word-spacing:6.742400pt;}
.ws9a{word-spacing:6.794667pt;}
.ws64{word-spacing:6.846933pt;}
.wsb2{word-spacing:6.899200pt;}
.wsa8{word-spacing:7.056000pt;}
.wsb1{word-spacing:7.108267pt;}
.ws76{word-spacing:7.160533pt;}
.wscc{word-spacing:7.265067pt;}
.wsfb{word-spacing:7.317333pt;}
.wsa1{word-spacing:7.369600pt;}
.ws23{word-spacing:7.474133pt;}
.ws53{word-spacing:7.526400pt;}
.ws27{word-spacing:7.578667pt;}
.ws107{word-spacing:7.630933pt;}
.ws21{word-spacing:7.683200pt;}
.ws4c{word-spacing:7.735467pt;}
.ws3b{word-spacing:7.787733pt;}
.ws1a{word-spacing:7.840000pt;}
.ws93{word-spacing:7.892267pt;}
.ws55{word-spacing:7.944533pt;}
.ws30{word-spacing:8.153600pt;}
.wse0{word-spacing:8.205867pt;}
.ws52{word-spacing:8.258133pt;}
.wsea{word-spacing:8.310400pt;}
.wsf4{word-spacing:8.414933pt;}
.ws61{word-spacing:8.467200pt;}
.wsd{word-spacing:8.474667pt;}
.ws75{word-spacing:8.519467pt;}
.ws4a{word-spacing:8.624000pt;}
.ws58{word-spacing:8.676267pt;}
.wsef{word-spacing:8.833067pt;}
.ws113{word-spacing:8.885333pt;}
.ws99{word-spacing:8.989867pt;}
.ws7f{word-spacing:9.042133pt;}
.wsf1{word-spacing:9.094400pt;}
.ws115{word-spacing:9.146667pt;}
.wsc{word-spacing:9.184000pt;}
.ws74{word-spacing:9.198933pt;}
.wsbd{word-spacing:9.251200pt;}
.wsb6{word-spacing:9.303467pt;}
.ws45{word-spacing:9.460267pt;}
.ws114{word-spacing:9.512533pt;}
.wsf6{word-spacing:9.564800pt;}
.ws2a{word-spacing:9.721600pt;}
.ws7e{word-spacing:9.773867pt;}
.ws117{word-spacing:9.826133pt;}
.ws56{word-spacing:9.878400pt;}
.wsba{word-spacing:10.087467pt;}
.ws7d{word-spacing:10.139733pt;}
.ws3a{word-spacing:10.192000pt;}
.wsfd{word-spacing:10.244267pt;}
.ws9d{word-spacing:10.296533pt;}
.ws70{word-spacing:10.348800pt;}
.ws3e{word-spacing:10.401067pt;}
.ws4e{word-spacing:10.453333pt;}
.ws39{word-spacing:10.505600pt;}
.wsed{word-spacing:10.557867pt;}
.ws48{word-spacing:10.662400pt;}
.ws1c{word-spacing:10.714667pt;}
.ws68{word-spacing:10.819200pt;}
.wsd5{word-spacing:10.871467pt;}
.ws35{word-spacing:10.923733pt;}
.wsaf{word-spacing:10.976000pt;}
.wsb7{word-spacing:11.080533pt;}
.ws69{word-spacing:11.185067pt;}
.wsdf{word-spacing:11.237333pt;}
.wse5{word-spacing:11.289600pt;}
.ws1b{word-spacing:11.341867pt;}
.wse1{word-spacing:11.446400pt;}
.ws4f{word-spacing:11.498667pt;}
.wsd7{word-spacing:11.550933pt;}
.ws51{word-spacing:11.603200pt;}
.ws111{word-spacing:11.655467pt;}
.ws8b{word-spacing:11.707733pt;}
.ws25{word-spacing:11.969067pt;}
.wsd1{word-spacing:12.021333pt;}
.ws5e{word-spacing:12.073600pt;}
.wsff{word-spacing:12.125867pt;}
.wsae{word-spacing:12.178133pt;}
.ws96{word-spacing:12.230400pt;}
.ws43{word-spacing:12.282667pt;}
.wsac{word-spacing:12.334933pt;}
.ws40{word-spacing:12.387200pt;}
.ws7c{word-spacing:12.544000pt;}
.ws83{word-spacing:12.857600pt;}
.ws7a{word-spacing:13.066667pt;}
.wsf9{word-spacing:13.171200pt;}
.wsc6{word-spacing:13.223467pt;}
.wsb5{word-spacing:13.432533pt;}
.wsf2{word-spacing:13.589333pt;}
.ws54{word-spacing:13.641600pt;}
.ws106{word-spacing:13.693867pt;}
.ws29{word-spacing:13.746133pt;}
.ws10d{word-spacing:13.902933pt;}
.ws82{word-spacing:13.955200pt;}
.wsbf{word-spacing:14.007467pt;}
.ws4b{word-spacing:14.112000pt;}
.ws33{word-spacing:14.164267pt;}
.wsc2{word-spacing:14.216533pt;}
.ws65{word-spacing:14.373333pt;}
.ws5a{word-spacing:14.425600pt;}
.ws62{word-spacing:14.530133pt;}
.ws47{word-spacing:14.739200pt;}
.wscd{word-spacing:14.791467pt;}
.ws89{word-spacing:14.948267pt;}
.ws72{word-spacing:15.000533pt;}
.wsca{word-spacing:15.052800pt;}
.ws100{word-spacing:15.209600pt;}
.ws31{word-spacing:15.366400pt;}
.wse6{word-spacing:15.418667pt;}
.wsf3{word-spacing:15.523200pt;}
.ws86{word-spacing:15.680000pt;}
.wsfe{word-spacing:15.732267pt;}
.wsbe{word-spacing:15.941333pt;}
.ws88{word-spacing:16.045867pt;}
.wsab{word-spacing:16.098133pt;}
.wsb3{word-spacing:16.359467pt;}
.ws36{word-spacing:16.777600pt;}
.ws9f{word-spacing:16.882133pt;}
.ws3c{word-spacing:16.934400pt;}
.wsfa{word-spacing:17.613867pt;}
.ws78{word-spacing:17.666133pt;}
.ws73{word-spacing:17.770667pt;}
.wsf8{word-spacing:17.979733pt;}
.ws92{word-spacing:18.450133pt;}
.ws105{word-spacing:18.816000pt;}
.wsce{word-spacing:19.129600pt;}
.wsec{word-spacing:19.181867pt;}
.wse4{word-spacing:19.390933pt;}
.ws34{word-spacing:20.018133pt;}
.wsb0{word-spacing:20.122667pt;}
.ws37{word-spacing:20.593067pt;}
.ws90{word-spacing:20.906667pt;}
.ws66{word-spacing:20.958933pt;}
.ws71{word-spacing:21.638400pt;}
.wsda{word-spacing:22.004267pt;}
.ws112{word-spacing:22.370133pt;}
.ws104{word-spacing:22.945067pt;}
.ws97{word-spacing:24.199467pt;}
.ws42{word-spacing:24.722133pt;}
.ws6b{word-spacing:24.931200pt;}
.wsc1{word-spacing:27.335467pt;}
.ws9e{word-spacing:28.224000pt;}
.wsd2{word-spacing:29.112533pt;}
.wsf0{word-spacing:31.255467pt;}
.wsc0{word-spacing:32.509867pt;}
.ws9{word-spacing:40.611578pt;}
.wsa7{word-spacing:1162.627735pt;}
.wsa6{word-spacing:1200.640023pt;}
.ws0{word-spacing:1402.310382pt;}
._7{margin-left:-2570.264996pt;}
._1c{margin-left:-33.240495pt;}
._1b{margin-left:-6.042541pt;}
._c{margin-left:-5.123287pt;}
._8{margin-left:-3.815467pt;}
._0{margin-left:-2.565333pt;}
._1{margin-left:-0.977600pt;}
._3{width:1.605741pt;}
._6{width:2.641600pt;}
._9{width:5.402181pt;}
._a{width:7.857623pt;}
._b{width:8.937600pt;}
._1a{width:11.341867pt;}
._4{width:12.813865pt;}
._5{width:14.365325pt;}
._1f{width:29.440000pt;}
._1d{width:43.825067pt;}
._1e{width:48.960000pt;}
._16{width:482.553622pt;}
._15{width:618.784556pt;}
._f{width:839.518548pt;}
._12{width:1070.325889pt;}
._11{width:1212.110956pt;}
._18{width:1216.693482pt;}
._19{width:1224.654956pt;}
._17{width:1233.572289pt;}
._14{width:1261.604289pt;}
._e{width:1295.182956pt;}
._10{width:1336.910956pt;}
._13{width:1406.201622pt;}
._2{width:1468.338085pt;}
._d{width:1587.851756pt;}
.fs5{font-size:28.000000pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:78.994802pt;}
.y72{bottom:82.267736pt;}
.y64{bottom:82.267868pt;}
.y8{bottom:89.661469pt;}
.ya8{bottom:89.816264pt;}
.y71{bottom:98.267731pt;}
.y63{bottom:98.267863pt;}
.yef{bottom:98.767731pt;}
.y7{bottom:100.328135pt;}
.ya7{bottom:101.816264pt;}
.yee{bottom:110.767731pt;}
.y6{bottom:110.994802pt;}
.ya6{bottom:113.816264pt;}
.y70{bottom:114.267731pt;}
.y62{bottom:114.267863pt;}
.y5{bottom:121.661469pt;}
.yed{bottom:122.767731pt;}
.ya5{bottom:125.816264pt;}
.y6f{bottom:130.267731pt;}
.y61{bottom:130.267863pt;}
.y4{bottom:132.328135pt;}
.yec{bottom:134.767731pt;}
.ya4{bottom:137.816264pt;}
.y3{bottom:142.994802pt;}
.y6e{bottom:146.267731pt;}
.y60{bottom:146.267863pt;}
.yeb{bottom:146.767731pt;}
.ya3{bottom:149.816264pt;}
.y2{bottom:153.661469pt;}
.yea{bottom:158.767731pt;}
.ya2{bottom:161.816264pt;}
.y6d{bottom:162.267731pt;}
.y5f{bottom:162.267863pt;}
.ye9{bottom:170.767741pt;}
.ya1{bottom:173.816264pt;}
.y6c{bottom:178.267741pt;}
.y5e{bottom:178.267863pt;}
.ye8{bottom:182.767741pt;}
.ya0{bottom:185.816264pt;}
.y6b{bottom:194.267741pt;}
.y5d{bottom:194.267863pt;}
.yf{bottom:194.493998pt;}
.ye7{bottom:194.767741pt;}
.y9f{bottom:197.816264pt;}
.ye{bottom:202.493998pt;}
.ye6{bottom:206.767741pt;}
.y9e{bottom:209.816264pt;}
.y6a{bottom:210.267741pt;}
.y5c{bottom:210.267863pt;}
.yd{bottom:214.493998pt;}
.y11{bottom:218.493998pt;}
.ye5{bottom:218.767741pt;}
.y9d{bottom:221.816264pt;}
.y69{bottom:226.267741pt;}
.y5b{bottom:226.267863pt;}
.yc{bottom:226.493998pt;}
.y10{bottom:230.493998pt;}
.ye4{bottom:230.767741pt;}
.y9c{bottom:233.816264pt;}
.y68{bottom:242.267741pt;}
.y5a{bottom:242.267863pt;}
.ye3{bottom:242.767741pt;}
.ye2{bottom:254.767741pt;}
.y67{bottom:258.267741pt;}
.y59{bottom:258.267863pt;}
.ye1{bottom:266.767741pt;}
.y58{bottom:274.267741pt;}
.ye0{bottom:278.767741pt;}
.y57{bottom:290.267741pt;}
.ydf{bottom:290.767741pt;}
.y9b{bottom:295.149597pt;}
.yde{bottom:302.767741pt;}
.y56{bottom:306.267741pt;}
.y28{bottom:309.648132pt;}
.ydd{bottom:314.767741pt;}
.y55{bottom:322.267741pt;}
.y27{bottom:325.648132pt;}
.ydc{bottom:326.767741pt;}
.y9a{bottom:334.267741pt;}
.y54{bottom:338.267741pt;}
.ydb{bottom:338.767741pt;}
.y26{bottom:345.648153pt;}
.yda{bottom:350.767741pt;}
.y53{bottom:354.267741pt;}
.y99{bottom:358.267741pt;}
.yd9{bottom:362.767741pt;}
.y25{bottom:365.648153pt;}
.y52{bottom:370.267741pt;}
.yd8{bottom:374.767741pt;}
.y24{bottom:381.648153pt;}
.y51{bottom:386.267741pt;}
.yd7{bottom:386.767741pt;}
.y98{bottom:394.267741pt;}
.y23{bottom:397.648153pt;}
.yd6{bottom:398.767741pt;}
.y50{bottom:402.267741pt;}
.y97{bottom:406.267741pt;}
.yd5{bottom:410.767741pt;}
.y22{bottom:413.648153pt;}
.y4f{bottom:418.267741pt;}
.yd4{bottom:422.767741pt;}
.y21{bottom:429.648153pt;}
.y96{bottom:430.267741pt;}
.y4e{bottom:434.267741pt;}
.yd3{bottom:434.767741pt;}
.y20{bottom:445.648153pt;}
.yd2{bottom:446.767741pt;}
.y4d{bottom:450.267741pt;}
.y95{bottom:454.267741pt;}
.yd1{bottom:458.767741pt;}
.y1f{bottom:461.648153pt;}
.y4c{bottom:466.267741pt;}
.yd0{bottom:470.767741pt;}
.y1e{bottom:477.648153pt;}
.y4b{bottom:482.267741pt;}
.ycf{bottom:482.767741pt;}
.y94{bottom:486.267741pt;}
.yce{bottom:494.767741pt;}
.y1d{bottom:497.648153pt;}
.y4a{bottom:498.267741pt;}
.ycd{bottom:506.767741pt;}
.y1c{bottom:513.648153pt;}
.y49{bottom:514.267741pt;}
.ycc{bottom:518.767741pt;}
.y93{bottom:522.267741pt;}
.y1b{bottom:529.648153pt;}
.y48{bottom:530.267741pt;}
.ycb{bottom:530.767741pt;}
.y92{bottom:534.267741pt;}
.yca{bottom:542.767741pt;}
.y1a{bottom:545.648153pt;}
.y47{bottom:546.267741pt;}
.yc9{bottom:554.767741pt;}
.y91{bottom:558.267741pt;}
.y46{bottom:562.267741pt;}
.y19{bottom:565.648153pt;}
.yc8{bottom:566.767741pt;}
.y45{bottom:578.267741pt;}
.yc7{bottom:578.767741pt;}
.y18{bottom:581.648153pt;}
.y90{bottom:582.267741pt;}
.yc6{bottom:590.767741pt;}
.y44{bottom:594.267741pt;}
.y17{bottom:597.648153pt;}
.yc5{bottom:602.767741pt;}
.y8f{bottom:606.267741pt;}
.y43{bottom:610.267741pt;}
.y16{bottom:613.648153pt;}
.yc4{bottom:614.767741pt;}
.y88{bottom:615.650920pt;}
.y8e{bottom:618.267741pt;}
.y42{bottom:626.267741pt;}
.yc3{bottom:626.767741pt;}
.y15{bottom:629.648153pt;}
.y8d{bottom:630.267741pt;}
.y87{bottom:631.210002pt;}
.yc2{bottom:638.767741pt;}
.y41{bottom:642.267741pt;}
.y14{bottom:645.648153pt;}
.y86{bottom:646.769084pt;}
.yc1{bottom:650.767741pt;}
.y40{bottom:658.267741pt;}
.y13{bottom:661.648153pt;}
.y85{bottom:662.328125pt;}
.yc0{bottom:662.767741pt;}
.y8c{bottom:666.267741pt;}
.y3f{bottom:674.267741pt;}
.ybf{bottom:674.767741pt;}
.y84{bottom:677.887207pt;}
.y8b{bottom:678.267741pt;}
.y12{bottom:681.648153pt;}
.ybe{bottom:686.767741pt;}
.y3e{bottom:690.267741pt;}
.y83{bottom:693.446289pt;}
.ybd{bottom:698.767741pt;}
.y8a{bottom:702.267741pt;}
.y3d{bottom:706.267741pt;}
.y82{bottom:709.005371pt;}
.ybc{bottom:710.767741pt;}
.y89{bottom:714.267741pt;}
.y3c{bottom:722.267741pt;}
.ybb{bottom:722.767741pt;}
.y81{bottom:724.564290pt;}
.y2d{bottom:733.614827pt;}
.yba{bottom:734.767741pt;}
.y3b{bottom:738.267741pt;}
.y80{bottom:740.123372pt;}
.yb9{bottom:746.767741pt;}
.y2c{bottom:752.281494pt;}
.y7f{bottom:753.456706pt;}
.y3a{bottom:754.267741pt;}
.yb8{bottom:758.767741pt;}
.y7e{bottom:766.790039pt;}
.y39{bottom:770.267741pt;}
.yb7{bottom:770.767741pt;}
.y7d{bottom:780.123372pt;}
.yb6{bottom:782.767741pt;}
.y38{bottom:786.267741pt;}
.yb5{bottom:794.767741pt;}
.y7c{bottom:795.682373pt;}
.y2b{bottom:797.614827pt;}
.y37{bottom:802.267741pt;}
.yb4{bottom:806.767741pt;}
.y7b{bottom:809.015706pt;}
.y36{bottom:818.267741pt;}
.yb3{bottom:818.767741pt;}
.y7a{bottom:824.574951pt;}
.yb2{bottom:830.767741pt;}
.y2a{bottom:832.281494pt;}
.y35{bottom:834.267741pt;}
.y79{bottom:840.133870pt;}
.yb1{bottom:842.767741pt;}
.y34{bottom:850.267741pt;}
.yb0{bottom:854.767741pt;}
.y78{bottom:855.692952pt;}
.y33{bottom:866.267741pt;}
.yaf{bottom:866.767741pt;}
.y29{bottom:866.948161pt;}
.y77{bottom:871.252035pt;}
.yae{bottom:878.767741pt;}
.y32{bottom:882.267741pt;}
.y76{bottom:886.811035pt;}
.yad{bottom:890.767741pt;}
.y31{bottom:898.267741pt;}
.y75{bottom:902.370117pt;}
.yac{bottom:902.767741pt;}
.yf1{bottom:906.267741pt;}
.y66{bottom:914.267741pt;}
.y30{bottom:914.267904pt;}
.yab{bottom:914.767741pt;}
.y74{bottom:917.929199pt;}
.yf0{bottom:918.267741pt;}
.y1{bottom:921.267741pt;}
.yaa{bottom:926.767741pt;}
.y65{bottom:930.267741pt;}
.y2f{bottom:930.267904pt;}
.y73{bottom:933.488118pt;}
.ya9{bottom:938.767741pt;}
.yb{bottom:990.267741pt;}
.ya{bottom:1003.601074pt;}
.y2e{bottom:1003.934408pt;}
.h8{height:26.180000pt;}
.h4{height:34.906667pt;}
.h3{height:36.922667pt;}
.h7{height:37.400000pt;}
.h15{height:38.080000pt;}
.h14{height:38.880000pt;}
.h13{height:39.893333pt;}
.h5{height:40.661333pt;}
.h12{height:41.472000pt;}
.h11{height:47.472000pt;}
.h10{height:47.692799pt;}
.hf{height:48.555733pt;}
.he{height:49.653333pt;}
.hb{height:49.866667pt;}
.ha{height:51.840000pt;}
.h9{height:54.329067pt;}
.hd{height:61.863804pt;}
.h2{height:70.130237pt;}
.h6{height:103.762295pt;}
.hc{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x5{left:84.257202pt;}
.x7{left:86.257333pt;}
.xd{left:95.590535pt;}
.x2{left:240.944804pt;}
.x4{left:406.708659pt;}
.x8{left:416.965983pt;}
.xb{left:422.009318pt;}
.xc{left:426.299194pt;}
.x9{left:432.965861pt;}
.xa{left:491.972941pt;}
.x6{left:667.531982pt;}
}

