
    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_f77bee1cde879ff73036d933.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_0511969b24902f9377e57e16.woff')format("woff");}.ff2{font-family:ff2;line-height:1.131000;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_31c50d9b3f8ae72fb714416b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_6f9f1fcce6b9d30a18f4e3dd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_c1442da86da950c9feaa2578.woff')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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_1d029b2bb7bb57381ff23966.woff')format("woff");}.ff6{font-family:ff6;line-height:1.125000;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_5dd90f85b1b066497fc0eff5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.125000;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_b2d77d06611eaf3a02a587c6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-1.350000px;}
.ls2e{letter-spacing:-1.197000px;}
.lse{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.855000px;}
.ls27{letter-spacing:-0.684000px;}
.ls1e{letter-spacing:-0.627000px;}
.ls26{letter-spacing:-0.570000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.513000px;}
.ls30{letter-spacing:-0.456000px;}
.ls3a{letter-spacing:-0.399000px;}
.ls1c{letter-spacing:-0.342000px;}
.ls6{letter-spacing:-0.285000px;}
.lsc{letter-spacing:-0.228000px;}
.ls25{letter-spacing:-0.171000px;}
.ls23{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.057000px;}
.ls15{letter-spacing:0.114000px;}
.ls12{letter-spacing:0.171000px;}
.lsa{letter-spacing:0.228000px;}
.ls1f{letter-spacing:0.285000px;}
.ls4{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.399000px;}
.ls8{letter-spacing:0.456000px;}
.ls1d{letter-spacing:0.513000px;}
.ls2{letter-spacing:0.570000px;}
.ls14{letter-spacing:0.627000px;}
.lsd{letter-spacing:0.630000px;}
.ls1b{letter-spacing:0.684000px;}
.ls5{letter-spacing:0.741000px;}
.ls1a{letter-spacing:0.798000px;}
.ls3d{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.855000px;}
.ls19{letter-spacing:0.912000px;}
.lsb{letter-spacing:0.969000px;}
.ls13{letter-spacing:1.026000px;}
.ls1{letter-spacing:1.083000px;}
.ls17{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.197000px;}
.ls7{letter-spacing:1.254000px;}
.ls3{letter-spacing:1.311000px;}
.ls24{letter-spacing:1.368000px;}
.ls35{letter-spacing:1.425000px;}
.ls18{letter-spacing:1.482000px;}
.ls29{letter-spacing:1.539000px;}
.ls31{letter-spacing:1.596000px;}
.ls3b{letter-spacing:1.653000px;}
.ls34{letter-spacing:1.710000px;}
.ls28{letter-spacing:1.767000px;}
.ls32{letter-spacing:1.881000px;}
.ls21{letter-spacing:1.938000px;}
.ls37{letter-spacing:2.052000px;}
.ls20{letter-spacing:2.109000px;}
.ls2d{letter-spacing:2.166000px;}
.ls10{letter-spacing:2.223000px;}
.ls2c{letter-spacing:2.280000px;}
.ls2a{letter-spacing:2.337000px;}
.ls38{letter-spacing:2.451000px;}
.ls2b{letter-spacing:2.508000px;}
.ls33{letter-spacing:2.736000px;}
.ls39{letter-spacing:2.850000px;}
.ls3c{letter-spacing:2.907000px;}
.ls9{letter-spacing:2.964000px;}
.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;}
}
.wsbf{word-spacing:-13.908000px;}
.ws1c{word-spacing:-11.913000px;}
.wsbe{word-spacing:-11.514000px;}
.ws94{word-spacing:-4.161000px;}
.ws56{word-spacing:-3.990000px;}
.wsac{word-spacing:-3.762000px;}
.ws5c{word-spacing:-3.648000px;}
.ws45{word-spacing:-3.477000px;}
.wscb{word-spacing:-3.363000px;}
.ws78{word-spacing:-3.306000px;}
.ws2a{word-spacing:-3.249000px;}
.ws6{word-spacing:-3.078000px;}
.wsae{word-spacing:-2.793000px;}
.ws54{word-spacing:-2.736000px;}
.ws2f{word-spacing:-2.622000px;}
.ws1d{word-spacing:-2.565000px;}
.wsc{word-spacing:-2.508000px;}
.wsba{word-spacing:-2.451000px;}
.wsc1{word-spacing:-2.394000px;}
.ws7c{word-spacing:-2.337000px;}
.ws6a{word-spacing:-2.280000px;}
.ws9b{word-spacing:-2.166000px;}
.ws80{word-spacing:-2.109000px;}
.wsb2{word-spacing:-2.052000px;}
.ws66{word-spacing:-1.995000px;}
.wsb6{word-spacing:-1.824000px;}
.ws49{word-spacing:-1.710000px;}
.ws3a{word-spacing:-1.653000px;}
.ws9f{word-spacing:-1.596000px;}
.ws3d{word-spacing:-1.539000px;}
.ws34{word-spacing:-1.482000px;}
.wsc5{word-spacing:-1.368000px;}
.ws52{word-spacing:-1.311000px;}
.ws7{word-spacing:-1.254000px;}
.ws18{word-spacing:-1.215000px;}
.wsb8{word-spacing:-1.083000px;}
.ws32{word-spacing:-0.855000px;}
.wscc{word-spacing:-0.840000px;}
.ws83{word-spacing:-0.798000px;}
.ws19{word-spacing:-0.765000px;}
.ws37{word-spacing:-0.570000px;}
.ws2b{word-spacing:-0.513000px;}
.ws23{word-spacing:-0.456000px;}
.ws55{word-spacing:-0.399000px;}
.ws99{word-spacing:-0.342000px;}
.ws43{word-spacing:-0.285000px;}
.ws67{word-spacing:-0.171000px;}
.ws1b{word-spacing:-0.135000px;}
.ws8f{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.wsb7{word-spacing:0.057000px;}
.ws3c{word-spacing:0.171000px;}
.ws48{word-spacing:0.228000px;}
.ws9e{word-spacing:0.399000px;}
.ws17{word-spacing:0.450000px;}
.ws79{word-spacing:0.456000px;}
.ws4e{word-spacing:0.570000px;}
.wsa8{word-spacing:0.627000px;}
.wsc3{word-spacing:0.741000px;}
.ws3b{word-spacing:0.798000px;}
.ws63{word-spacing:0.855000px;}
.ws72{word-spacing:0.912000px;}
.wse{word-spacing:1.008000px;}
.ws22{word-spacing:1.083000px;}
.ws51{word-spacing:1.425000px;}
.wsd{word-spacing:1.482000px;}
.ws1a{word-spacing:1.485000px;}
.ws15{word-spacing:1.539000px;}
.wsb3{word-spacing:1.596000px;}
.wsc4{word-spacing:1.710000px;}
.wsbb{word-spacing:1.824000px;}
.wsa{word-spacing:1.881000px;}
.ws96{word-spacing:1.938000px;}
.ws5e{word-spacing:1.995000px;}
.ws7d{word-spacing:2.052000px;}
.ws7e{word-spacing:2.109000px;}
.wsc8{word-spacing:2.166000px;}
.ws61{word-spacing:2.223000px;}
.ws35{word-spacing:2.280000px;}
.ws88{word-spacing:2.337000px;}
.ws8a{word-spacing:2.394000px;}
.ws4{word-spacing:2.451000px;}
.ws4f{word-spacing:2.508000px;}
.ws11{word-spacing:2.622000px;}
.ws2e{word-spacing:2.679000px;}
.ws4d{word-spacing:2.736000px;}
.wsb4{word-spacing:2.793000px;}
.ws26{word-spacing:2.850000px;}
.ws53{word-spacing:2.907000px;}
.ws6f{word-spacing:2.964000px;}
.wsf{word-spacing:3.021000px;}
.ws3e{word-spacing:3.078000px;}
.ws7a{word-spacing:3.135000px;}
.ws5d{word-spacing:3.192000px;}
.ws5f{word-spacing:3.249000px;}
.wsab{word-spacing:3.306000px;}
.ws1f{word-spacing:3.363000px;}
.ws8{word-spacing:3.420000px;}
.ws42{word-spacing:3.477000px;}
.ws5a{word-spacing:3.534000px;}
.ws46{word-spacing:3.591000px;}
.wsa6{word-spacing:3.762000px;}
.ws36{word-spacing:3.819000px;}
.ws31{word-spacing:3.876000px;}
.ws71{word-spacing:3.933000px;}
.ws3f{word-spacing:3.990000px;}
.ws69{word-spacing:4.047000px;}
.wsaf{word-spacing:4.104000px;}
.ws2{word-spacing:4.161000px;}
.ws68{word-spacing:4.218000px;}
.wsc2{word-spacing:4.275000px;}
.ws4b{word-spacing:4.332000px;}
.ws6b{word-spacing:4.389000px;}
.ws2c{word-spacing:4.446000px;}
.wsad{word-spacing:4.503000px;}
.ws8e{word-spacing:4.560000px;}
.ws73{word-spacing:4.617000px;}
.ws13{word-spacing:4.674000px;}
.wsb5{word-spacing:4.731000px;}
.ws81{word-spacing:4.788000px;}
.ws30{word-spacing:4.845000px;}
.ws2d{word-spacing:4.902000px;}
.ws7f{word-spacing:4.959000px;}
.wsa1{word-spacing:5.073000px;}
.ws28{word-spacing:5.130000px;}
.ws38{word-spacing:5.187000px;}
.ws65{word-spacing:5.244000px;}
.ws84{word-spacing:5.358000px;}
.ws86{word-spacing:5.415000px;}
.ws33{word-spacing:5.586000px;}
.ws5{word-spacing:5.643000px;}
.wsb9{word-spacing:5.700000px;}
.wsa9{word-spacing:5.757000px;}
.ws27{word-spacing:5.928000px;}
.ws62{word-spacing:5.985000px;}
.ws4c{word-spacing:6.042000px;}
.ws14{word-spacing:6.156000px;}
.ws9d{word-spacing:6.327000px;}
.ws93{word-spacing:6.384000px;}
.ws29{word-spacing:6.498000px;}
.ws44{word-spacing:6.612000px;}
.ws25{word-spacing:6.783000px;}
.ws57{word-spacing:6.840000px;}
.ws70{word-spacing:6.897000px;}
.ws58{word-spacing:7.011000px;}
.wsb{word-spacing:7.239000px;}
.wsa0{word-spacing:7.410000px;}
.ws90{word-spacing:7.467000px;}
.ws8b{word-spacing:7.524000px;}
.ws85{word-spacing:7.581000px;}
.ws12{word-spacing:7.638000px;}
.ws97{word-spacing:7.695000px;}
.wsc0{word-spacing:7.809000px;}
.ws50{word-spacing:7.866000px;}
.ws1e{word-spacing:7.923000px;}
.ws1{word-spacing:8.037000px;}
.ws16{word-spacing:8.151000px;}
.ws20{word-spacing:8.322000px;}
.wsbd{word-spacing:8.379000px;}
.wsca{word-spacing:8.550000px;}
.ws60{word-spacing:8.664000px;}
.ws74{word-spacing:8.721000px;}
.ws40{word-spacing:8.892000px;}
.wsb1{word-spacing:9.006000px;}
.ws6c{word-spacing:9.234000px;}
.wsc9{word-spacing:9.348000px;}
.wsa3{word-spacing:9.405000px;}
.ws95{word-spacing:9.519000px;}
.ws3{word-spacing:9.576000px;}
.ws8c{word-spacing:9.861000px;}
.ws24{word-spacing:9.918000px;}
.wsbc{word-spacing:10.260000px;}
.wsa4{word-spacing:10.545000px;}
.ws77{word-spacing:10.602000px;}
.ws98{word-spacing:10.944000px;}
.ws41{word-spacing:11.058000px;}
.ws21{word-spacing:11.286000px;}
.ws47{word-spacing:11.343000px;}
.ws89{word-spacing:11.400000px;}
.ws7b{word-spacing:11.571000px;}
.ws5b{word-spacing:11.628000px;}
.wsc7{word-spacing:11.685000px;}
.ws4a{word-spacing:12.483000px;}
.ws92{word-spacing:12.882000px;}
.wsc6{word-spacing:12.996000px;}
.wsb0{word-spacing:13.110000px;}
.ws9c{word-spacing:13.167000px;}
.ws59{word-spacing:13.452000px;}
.ws9a{word-spacing:14.250000px;}
.ws91{word-spacing:14.934000px;}
.wsa2{word-spacing:15.447000px;}
.ws39{word-spacing:15.675000px;}
.wsa7{word-spacing:16.245000px;}
.ws8d{word-spacing:16.302000px;}
.ws75{word-spacing:16.416000px;}
.ws10{word-spacing:16.473000px;}
.ws82{word-spacing:16.587000px;}
.ws6e{word-spacing:16.986000px;}
.ws64{word-spacing:17.271000px;}
.ws76{word-spacing:17.499000px;}
.ws87{word-spacing:17.841000px;}
.wsa5{word-spacing:18.582000px;}
.ws6d{word-spacing:18.981000px;}
.wsaa{word-spacing:21.774000px;}
.ws9{word-spacing:22.059000px;}
._5{margin-left:-3.990000px;}
._3{margin-left:-2.964000px;}
._1{margin-left:-1.670100px;}
._0{width:1.630200px;}
._2{width:2.861400px;}
._4{width:4.135200px;}
.fc1{color:transparent;}
.fc2{color:rgb(45,45,45);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:5.172000px;}
.y2e{bottom:12.006000px;}
.yca{bottom:12.168000px;}
.y2c{bottom:17.546850px;}
.y29{bottom:17.622000px;}
.y28{bottom:30.072000px;}
.y1{bottom:56.202750px;}
.y26{bottom:93.000900px;}
.y25{bottom:107.254650px;}
.y24{bottom:121.508400px;}
.y141{bottom:124.484250px;}
.y14a{bottom:124.511250px;}
.yc8{bottom:134.208750px;}
.y122{bottom:134.238750px;}
.y10e{bottom:134.262750px;}
.ye8{bottom:134.292750px;}
.y55{bottom:134.370750px;}
.y7b{bottom:134.394750px;}
.ya2{bottom:134.430900px;}
.y23{bottom:135.762150px;}
.y140{bottom:143.978250px;}
.y149{bottom:144.005250px;}
.y22{bottom:150.015900px;}
.yc7{bottom:153.702750px;}
.y121{bottom:153.732750px;}
.y10d{bottom:153.756750px;}
.ye7{bottom:153.786750px;}
.y54{bottom:153.864750px;}
.y7a{bottom:153.888750px;}
.ya1{bottom:153.924900px;}
.y13f{bottom:163.472250px;}
.y21{bottom:164.269650px;}
.yc6{bottom:173.202750px;}
.y120{bottom:173.226750px;}
.y10c{bottom:173.250750px;}
.y148{bottom:173.259750px;}
.ye6{bottom:173.280750px;}
.y53{bottom:173.358750px;}
.y79{bottom:173.382750px;}
.ya0{bottom:173.418900px;}
.y13e{bottom:182.966250px;}
.y11f{bottom:192.720750px;}
.y10b{bottom:192.744750px;}
.y147{bottom:192.753750px;}
.ye5{bottom:192.774750px;}
.y52{bottom:192.852750px;}
.y78{bottom:192.876750px;}
.y9f{bottom:192.912900px;}
.y10{bottom:202.530750px;}
.y20{bottom:202.536750px;}
.y11e{bottom:212.214750px;}
.y13d{bottom:212.220750px;}
.y10a{bottom:212.238750px;}
.y146{bottom:212.247750px;}
.ye4{bottom:212.268750px;}
.y51{bottom:212.346750px;}
.y77{bottom:212.370750px;}
.y9e{bottom:212.406900px;}
.yc5{bottom:212.634900px;}
.yf{bottom:222.024750px;}
.y1f{bottom:222.030750px;}
.y11d{bottom:231.708750px;}
.y13c{bottom:231.714750px;}
.y109{bottom:231.732750px;}
.y145{bottom:231.741750px;}
.ye3{bottom:231.762750px;}
.y50{bottom:231.840750px;}
.y76{bottom:231.864750px;}
.y9d{bottom:231.900900px;}
.yc4{bottom:232.128900px;}
.ye{bottom:241.518750px;}
.y1e{bottom:241.524750px;}
.y11c{bottom:251.202750px;}
.y13b{bottom:251.208750px;}
.y108{bottom:251.226750px;}
.ye2{bottom:251.256750px;}
.y4f{bottom:251.334750px;}
.y75{bottom:251.358750px;}
.y9c{bottom:251.394900px;}
.yc3{bottom:251.622900px;}
.y144{bottom:260.996250px;}
.yd{bottom:261.012750px;}
.y1d{bottom:261.018750px;}
.y11b{bottom:270.702750px;}
.y107{bottom:270.720750px;}
.ye1{bottom:270.750750px;}
.y4e{bottom:270.828750px;}
.y74{bottom:270.852750px;}
.y9b{bottom:270.888900px;}
.yc2{bottom:271.116900px;}
.y143{bottom:280.490250px;}
.yc{bottom:280.506750px;}
.y1c{bottom:280.512750px;}
.y106{bottom:290.214750px;}
.ye0{bottom:290.244750px;}
.y4d{bottom:290.322750px;}
.y73{bottom:290.346750px;}
.y9a{bottom:290.382900px;}
.yc1{bottom:290.610900px;}
.y142{bottom:299.984250px;}
.yb{bottom:300.000750px;}
.y1b{bottom:300.006750px;}
.y13a{bottom:309.702750px;}
.y105{bottom:309.708750px;}
.ydf{bottom:309.738750px;}
.y11a{bottom:309.762750px;}
.y4c{bottom:309.816750px;}
.y72{bottom:309.840750px;}
.y99{bottom:309.876900px;}
.yc0{bottom:310.104900px;}
.ya{bottom:319.494750px;}
.y1a{bottom:319.500750px;}
.y104{bottom:329.202750px;}
.yde{bottom:329.232750px;}
.y119{bottom:329.256750px;}
.y4b{bottom:329.310750px;}
.y71{bottom:329.334750px;}
.y98{bottom:329.370900px;}
.ybf{bottom:329.598900px;}
.y9{bottom:338.988750px;}
.y19{bottom:338.994750px;}
.y103{bottom:348.702750px;}
.ydd{bottom:348.726750px;}
.y118{bottom:348.750750px;}
.y4a{bottom:348.804750px;}
.y70{bottom:348.828750px;}
.y97{bottom:348.864900px;}
.ybe{bottom:349.092900px;}
.y8{bottom:358.482750px;}
.y18{bottom:358.488750px;}
.ydc{bottom:368.220750px;}
.y117{bottom:368.244750px;}
.y49{bottom:368.298750px;}
.y6f{bottom:368.322750px;}
.y96{bottom:368.358900px;}
.ybd{bottom:368.586900px;}
.y7{bottom:377.976750px;}
.y17{bottom:377.982750px;}
.ydb{bottom:387.714750px;}
.y116{bottom:387.738750px;}
.y48{bottom:387.792750px;}
.y6e{bottom:387.816750px;}
.y95{bottom:387.852900px;}
.y102{bottom:387.942750px;}
.ybc{bottom:388.080900px;}
.y6{bottom:397.470750px;}
.y16{bottom:397.476750px;}
.yda{bottom:407.208750px;}
.y115{bottom:407.232750px;}
.y47{bottom:407.286750px;}
.y6d{bottom:407.310750px;}
.y94{bottom:407.346900px;}
.y101{bottom:407.436750px;}
.ybb{bottom:407.574900px;}
.y5{bottom:416.964750px;}
.y15{bottom:416.970750px;}
.yd9{bottom:426.702750px;}
.y114{bottom:426.726750px;}
.y46{bottom:426.780750px;}
.y6c{bottom:426.804750px;}
.y93{bottom:426.840900px;}
.y100{bottom:426.930750px;}
.yba{bottom:427.068900px;}
.y4{bottom:436.458750px;}
.y14{bottom:436.464750px;}
.yd8{bottom:446.202750px;}
.y113{bottom:446.220750px;}
.y45{bottom:446.274750px;}
.y6b{bottom:446.298750px;}
.y92{bottom:446.334900px;}
.yff{bottom:446.424750px;}
.yb9{bottom:446.562900px;}
.y3{bottom:455.952750px;}
.y13{bottom:455.958750px;}
.yd7{bottom:465.702750px;}
.y112{bottom:465.714750px;}
.y44{bottom:465.768750px;}
.y6a{bottom:465.792750px;}
.y91{bottom:465.828900px;}
.yfe{bottom:465.918750px;}
.yb8{bottom:466.056900px;}
.y2{bottom:475.452750px;}
.y111{bottom:485.208750px;}
.y43{bottom:485.262750px;}
.y69{bottom:485.286750px;}
.y90{bottom:485.322900px;}
.yfd{bottom:485.412750px;}
.yb7{bottom:485.550900px;}
.y110{bottom:504.702750px;}
.y42{bottom:504.756750px;}
.y68{bottom:504.780750px;}
.yd6{bottom:504.816750px;}
.y8f{bottom:504.816900px;}
.yfc{bottom:504.906750px;}
.yb6{bottom:505.044900px;}
.y10f{bottom:524.202750px;}
.y41{bottom:524.250750px;}
.y67{bottom:524.274750px;}
.yd5{bottom:524.310750px;}
.y8e{bottom:524.310900px;}
.yfb{bottom:524.400750px;}
.yb5{bottom:524.538900px;}
.y40{bottom:543.744750px;}
.y66{bottom:543.768750px;}
.yd4{bottom:543.804750px;}
.y8d{bottom:543.804900px;}
.yfa{bottom:543.894750px;}
.yb4{bottom:544.032900px;}
.y128{bottom:563.220750px;}
.y3f{bottom:563.238750px;}
.y65{bottom:563.262750px;}
.yd3{bottom:563.298750px;}
.y8c{bottom:563.298900px;}
.y139{bottom:563.320500px;}
.yf9{bottom:563.388750px;}
.yb3{bottom:563.526900px;}
.y127{bottom:582.714750px;}
.y3e{bottom:582.732750px;}
.y64{bottom:582.756750px;}
.yd2{bottom:582.792750px;}
.y8b{bottom:582.792900px;}
.y138{bottom:582.814500px;}
.yf8{bottom:582.882750px;}
.yb2{bottom:583.020900px;}
.y126{bottom:602.208750px;}
.y3d{bottom:602.226750px;}
.y63{bottom:602.250750px;}
.yd1{bottom:602.286750px;}
.y8a{bottom:602.286900px;}
.y137{bottom:602.308500px;}
.yf7{bottom:602.376750px;}
.yb1{bottom:602.514900px;}
.y125{bottom:621.702750px;}
.y3c{bottom:621.720750px;}
.y62{bottom:621.744750px;}
.yd0{bottom:621.780750px;}
.y89{bottom:621.780900px;}
.y136{bottom:621.802500px;}
.yf6{bottom:621.870750px;}
.yb0{bottom:622.008900px;}
.y124{bottom:641.202750px;}
.y3b{bottom:641.214750px;}
.y61{bottom:641.238750px;}
.ycf{bottom:641.274750px;}
.y88{bottom:641.274900px;}
.y135{bottom:641.296500px;}
.yf5{bottom:641.364750px;}
.yaf{bottom:641.502900px;}
.y3a{bottom:660.708750px;}
.y60{bottom:660.732750px;}
.yce{bottom:660.768750px;}
.y87{bottom:660.768900px;}
.y134{bottom:660.790500px;}
.yf4{bottom:660.858750px;}
.yae{bottom:660.996900px;}
.y39{bottom:680.202750px;}
.y5f{bottom:680.226750px;}
.ycd{bottom:680.262750px;}
.y86{bottom:680.262900px;}
.y133{bottom:680.284500px;}
.yf3{bottom:680.352750px;}
.yad{bottom:680.490900px;}
.y38{bottom:699.702750px;}
.y5e{bottom:699.720750px;}
.ycc{bottom:699.756750px;}
.y85{bottom:699.756900px;}
.y132{bottom:699.778500px;}
.yf2{bottom:699.846750px;}
.yac{bottom:699.984900px;}
.y5d{bottom:719.214750px;}
.ycb{bottom:719.250750px;}
.y84{bottom:719.250900px;}
.y131{bottom:719.272500px;}
.yf1{bottom:719.340750px;}
.yab{bottom:719.478900px;}
.y2b{bottom:736.680150px;}
.y5c{bottom:738.708750px;}
.y37{bottom:738.744750px;}
.y83{bottom:738.744900px;}
.y130{bottom:738.766500px;}
.yf0{bottom:738.834750px;}
.yaa{bottom:738.972900px;}
.y5b{bottom:758.202750px;}
.y36{bottom:758.238750px;}
.y82{bottom:758.238900px;}
.y12f{bottom:758.260500px;}
.yef{bottom:758.328750px;}
.ya9{bottom:758.466900px;}
.y2d{bottom:762.901500px;}
.y5a{bottom:777.702750px;}
.y35{bottom:777.732750px;}
.y81{bottom:777.732900px;}
.y12e{bottom:777.754500px;}
.yee{bottom:777.822750px;}
.ya8{bottom:777.960900px;}
.y12{bottom:787.452750px;}
.y34{bottom:797.226750px;}
.y80{bottom:797.226900px;}
.y12d{bottom:797.248500px;}
.yed{bottom:797.316750px;}
.ya7{bottom:797.454900px;}
.y33{bottom:816.720750px;}
.y7f{bottom:816.720900px;}
.y12c{bottom:816.742500px;}
.yec{bottom:816.810750px;}
.y59{bottom:816.888750px;}
.ya6{bottom:816.948900px;}
.y11{bottom:826.452750px;}
.y32{bottom:836.214750px;}
.y7e{bottom:836.214900px;}
.y12b{bottom:836.236500px;}
.yeb{bottom:836.304750px;}
.y58{bottom:836.382750px;}
.ya5{bottom:836.442900px;}
.y31{bottom:855.708750px;}
.y7d{bottom:855.708900px;}
.y12a{bottom:855.730500px;}
.yea{bottom:855.798750px;}
.y57{bottom:855.876750px;}
.ya4{bottom:855.936900px;}
.y30{bottom:875.202750px;}
.y7c{bottom:875.202900px;}
.y129{bottom:875.224500px;}
.ye9{bottom:875.292750px;}
.y56{bottom:875.370750px;}
.ya3{bottom:875.430900px;}
.y27{bottom:885.733500px;}
.yc9{bottom:902.955000px;}
.y123{bottom:905.449500px;}
.y2f{bottom:914.202750px;}
.he{height:17.999400px;}
.hb{height:17.999700px;}
.ha{height:23.855850px;}
.h9{height:35.314453px;}
.h8{height:35.903550px;}
.h7{height:38.475000px;}
.hc{height:41.130000px;}
.hd{height:43.872000px;}
.h11{height:46.170000px;}
.h2{height:46.602000px;}
.hf{height:47.142000px;}
.h10{height:48.393000px;}
.h4{height:48.735000px;}
.h3{height:52.380000px;}
.h6{height:72.492000px;}
.h5{height:78.570000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w5{width:183.613800px;}
.w6{width:183.614100px;}
.w3{width:264.611550px;}
.w2{width:270.011550px;}
.w4{width:437.408400px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:62.504700px;}
.x2{left:63.779550px;}
.x8{left:66.118050px;}
.xc{left:89.291400px;}
.x3{left:106.301550px;}
.xe{left:131.813400px;}
.xb{left:157.077600px;}
.xa{left:219.691500px;}
.x9{left:255.766950px;}
.x4{left:282.882000px;}
.x5{left:290.274000px;}
.x1{left:328.411350px;}
.xd{left:355.145700px;}
.x6{left:357.661350px;}
.xf{left:383.169150px;}
.x7{left:400.183350px;}
.x10{left:425.695200px;}
.x11{left:574.511700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-1.200000pt;}
.ls2e{letter-spacing:-1.064000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.760000pt;}
.ls27{letter-spacing:-0.608000pt;}
.ls1e{letter-spacing:-0.557333pt;}
.ls26{letter-spacing:-0.506667pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.456000pt;}
.ls30{letter-spacing:-0.405333pt;}
.ls3a{letter-spacing:-0.354667pt;}
.ls1c{letter-spacing:-0.304000pt;}
.ls6{letter-spacing:-0.253333pt;}
.lsc{letter-spacing:-0.202667pt;}
.ls25{letter-spacing:-0.152000pt;}
.ls23{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.050667pt;}
.ls15{letter-spacing:0.101333pt;}
.ls12{letter-spacing:0.152000pt;}
.lsa{letter-spacing:0.202667pt;}
.ls1f{letter-spacing:0.253333pt;}
.ls4{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.354667pt;}
.ls8{letter-spacing:0.405333pt;}
.ls1d{letter-spacing:0.456000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls14{letter-spacing:0.557333pt;}
.lsd{letter-spacing:0.560000pt;}
.ls1b{letter-spacing:0.608000pt;}
.ls5{letter-spacing:0.658667pt;}
.ls1a{letter-spacing:0.709333pt;}
.ls3d{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.760000pt;}
.ls19{letter-spacing:0.810667pt;}
.lsb{letter-spacing:0.861333pt;}
.ls13{letter-spacing:0.912000pt;}
.ls1{letter-spacing:0.962667pt;}
.ls17{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.064000pt;}
.ls7{letter-spacing:1.114667pt;}
.ls3{letter-spacing:1.165333pt;}
.ls24{letter-spacing:1.216000pt;}
.ls35{letter-spacing:1.266667pt;}
.ls18{letter-spacing:1.317333pt;}
.ls29{letter-spacing:1.368000pt;}
.ls31{letter-spacing:1.418667pt;}
.ls3b{letter-spacing:1.469333pt;}
.ls34{letter-spacing:1.520000pt;}
.ls28{letter-spacing:1.570667pt;}
.ls32{letter-spacing:1.672000pt;}
.ls21{letter-spacing:1.722667pt;}
.ls37{letter-spacing:1.824000pt;}
.ls20{letter-spacing:1.874667pt;}
.ls2d{letter-spacing:1.925333pt;}
.ls10{letter-spacing:1.976000pt;}
.ls2c{letter-spacing:2.026667pt;}
.ls2a{letter-spacing:2.077333pt;}
.ls38{letter-spacing:2.178667pt;}
.ls2b{letter-spacing:2.229333pt;}
.ls33{letter-spacing:2.432000pt;}
.ls39{letter-spacing:2.533333pt;}
.ls3c{letter-spacing:2.584000pt;}
.ls9{letter-spacing:2.634667pt;}
.wsbf{word-spacing:-12.362667pt;}
.ws1c{word-spacing:-10.589333pt;}
.wsbe{word-spacing:-10.234667pt;}
.ws94{word-spacing:-3.698667pt;}
.ws56{word-spacing:-3.546667pt;}
.wsac{word-spacing:-3.344000pt;}
.ws5c{word-spacing:-3.242667pt;}
.ws45{word-spacing:-3.090667pt;}
.wscb{word-spacing:-2.989333pt;}
.ws78{word-spacing:-2.938667pt;}
.ws2a{word-spacing:-2.888000pt;}
.ws6{word-spacing:-2.736000pt;}
.wsae{word-spacing:-2.482667pt;}
.ws54{word-spacing:-2.432000pt;}
.ws2f{word-spacing:-2.330667pt;}
.ws1d{word-spacing:-2.280000pt;}
.wsc{word-spacing:-2.229333pt;}
.wsba{word-spacing:-2.178667pt;}
.wsc1{word-spacing:-2.128000pt;}
.ws7c{word-spacing:-2.077333pt;}
.ws6a{word-spacing:-2.026667pt;}
.ws9b{word-spacing:-1.925333pt;}
.ws80{word-spacing:-1.874667pt;}
.wsb2{word-spacing:-1.824000pt;}
.ws66{word-spacing:-1.773333pt;}
.wsb6{word-spacing:-1.621333pt;}
.ws49{word-spacing:-1.520000pt;}
.ws3a{word-spacing:-1.469333pt;}
.ws9f{word-spacing:-1.418667pt;}
.ws3d{word-spacing:-1.368000pt;}
.ws34{word-spacing:-1.317333pt;}
.wsc5{word-spacing:-1.216000pt;}
.ws52{word-spacing:-1.165333pt;}
.ws7{word-spacing:-1.114667pt;}
.ws18{word-spacing:-1.080000pt;}
.wsb8{word-spacing:-0.962667pt;}
.ws32{word-spacing:-0.760000pt;}
.wscc{word-spacing:-0.746667pt;}
.ws83{word-spacing:-0.709333pt;}
.ws19{word-spacing:-0.680000pt;}
.ws37{word-spacing:-0.506667pt;}
.ws2b{word-spacing:-0.456000pt;}
.ws23{word-spacing:-0.405333pt;}
.ws55{word-spacing:-0.354667pt;}
.ws99{word-spacing:-0.304000pt;}
.ws43{word-spacing:-0.253333pt;}
.ws67{word-spacing:-0.152000pt;}
.ws1b{word-spacing:-0.120000pt;}
.ws8f{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.050667pt;}
.ws3c{word-spacing:0.152000pt;}
.ws48{word-spacing:0.202667pt;}
.ws9e{word-spacing:0.354667pt;}
.ws17{word-spacing:0.400000pt;}
.ws79{word-spacing:0.405333pt;}
.ws4e{word-spacing:0.506667pt;}
.wsa8{word-spacing:0.557333pt;}
.wsc3{word-spacing:0.658667pt;}
.ws3b{word-spacing:0.709333pt;}
.ws63{word-spacing:0.760000pt;}
.ws72{word-spacing:0.810667pt;}
.wse{word-spacing:0.896000pt;}
.ws22{word-spacing:0.962667pt;}
.ws51{word-spacing:1.266667pt;}
.wsd{word-spacing:1.317333pt;}
.ws1a{word-spacing:1.320000pt;}
.ws15{word-spacing:1.368000pt;}
.wsb3{word-spacing:1.418667pt;}
.wsc4{word-spacing:1.520000pt;}
.wsbb{word-spacing:1.621333pt;}
.wsa{word-spacing:1.672000pt;}
.ws96{word-spacing:1.722667pt;}
.ws5e{word-spacing:1.773333pt;}
.ws7d{word-spacing:1.824000pt;}
.ws7e{word-spacing:1.874667pt;}
.wsc8{word-spacing:1.925333pt;}
.ws61{word-spacing:1.976000pt;}
.ws35{word-spacing:2.026667pt;}
.ws88{word-spacing:2.077333pt;}
.ws8a{word-spacing:2.128000pt;}
.ws4{word-spacing:2.178667pt;}
.ws4f{word-spacing:2.229333pt;}
.ws11{word-spacing:2.330667pt;}
.ws2e{word-spacing:2.381333pt;}
.ws4d{word-spacing:2.432000pt;}
.wsb4{word-spacing:2.482667pt;}
.ws26{word-spacing:2.533333pt;}
.ws53{word-spacing:2.584000pt;}
.ws6f{word-spacing:2.634667pt;}
.wsf{word-spacing:2.685333pt;}
.ws3e{word-spacing:2.736000pt;}
.ws7a{word-spacing:2.786667pt;}
.ws5d{word-spacing:2.837333pt;}
.ws5f{word-spacing:2.888000pt;}
.wsab{word-spacing:2.938667pt;}
.ws1f{word-spacing:2.989333pt;}
.ws8{word-spacing:3.040000pt;}
.ws42{word-spacing:3.090667pt;}
.ws5a{word-spacing:3.141333pt;}
.ws46{word-spacing:3.192000pt;}
.wsa6{word-spacing:3.344000pt;}
.ws36{word-spacing:3.394667pt;}
.ws31{word-spacing:3.445333pt;}
.ws71{word-spacing:3.496000pt;}
.ws3f{word-spacing:3.546667pt;}
.ws69{word-spacing:3.597333pt;}
.wsaf{word-spacing:3.648000pt;}
.ws2{word-spacing:3.698667pt;}
.ws68{word-spacing:3.749333pt;}
.wsc2{word-spacing:3.800000pt;}
.ws4b{word-spacing:3.850667pt;}
.ws6b{word-spacing:3.901333pt;}
.ws2c{word-spacing:3.952000pt;}
.wsad{word-spacing:4.002667pt;}
.ws8e{word-spacing:4.053333pt;}
.ws73{word-spacing:4.104000pt;}
.ws13{word-spacing:4.154667pt;}
.wsb5{word-spacing:4.205333pt;}
.ws81{word-spacing:4.256000pt;}
.ws30{word-spacing:4.306667pt;}
.ws2d{word-spacing:4.357333pt;}
.ws7f{word-spacing:4.408000pt;}
.wsa1{word-spacing:4.509333pt;}
.ws28{word-spacing:4.560000pt;}
.ws38{word-spacing:4.610667pt;}
.ws65{word-spacing:4.661333pt;}
.ws84{word-spacing:4.762667pt;}
.ws86{word-spacing:4.813333pt;}
.ws33{word-spacing:4.965333pt;}
.ws5{word-spacing:5.016000pt;}
.wsb9{word-spacing:5.066667pt;}
.wsa9{word-spacing:5.117333pt;}
.ws27{word-spacing:5.269333pt;}
.ws62{word-spacing:5.320000pt;}
.ws4c{word-spacing:5.370667pt;}
.ws14{word-spacing:5.472000pt;}
.ws9d{word-spacing:5.624000pt;}
.ws93{word-spacing:5.674667pt;}
.ws29{word-spacing:5.776000pt;}
.ws44{word-spacing:5.877333pt;}
.ws25{word-spacing:6.029333pt;}
.ws57{word-spacing:6.080000pt;}
.ws70{word-spacing:6.130667pt;}
.ws58{word-spacing:6.232000pt;}
.wsb{word-spacing:6.434667pt;}
.wsa0{word-spacing:6.586667pt;}
.ws90{word-spacing:6.637333pt;}
.ws8b{word-spacing:6.688000pt;}
.ws85{word-spacing:6.738667pt;}
.ws12{word-spacing:6.789333pt;}
.ws97{word-spacing:6.840000pt;}
.wsc0{word-spacing:6.941333pt;}
.ws50{word-spacing:6.992000pt;}
.ws1e{word-spacing:7.042667pt;}
.ws1{word-spacing:7.144000pt;}
.ws16{word-spacing:7.245333pt;}
.ws20{word-spacing:7.397333pt;}
.wsbd{word-spacing:7.448000pt;}
.wsca{word-spacing:7.600000pt;}
.ws60{word-spacing:7.701333pt;}
.ws74{word-spacing:7.752000pt;}
.ws40{word-spacing:7.904000pt;}
.wsb1{word-spacing:8.005333pt;}
.ws6c{word-spacing:8.208000pt;}
.wsc9{word-spacing:8.309333pt;}
.wsa3{word-spacing:8.360000pt;}
.ws95{word-spacing:8.461333pt;}
.ws3{word-spacing:8.512000pt;}
.ws8c{word-spacing:8.765333pt;}
.ws24{word-spacing:8.816000pt;}
.wsbc{word-spacing:9.120000pt;}
.wsa4{word-spacing:9.373333pt;}
.ws77{word-spacing:9.424000pt;}
.ws98{word-spacing:9.728000pt;}
.ws41{word-spacing:9.829333pt;}
.ws21{word-spacing:10.032000pt;}
.ws47{word-spacing:10.082667pt;}
.ws89{word-spacing:10.133333pt;}
.ws7b{word-spacing:10.285333pt;}
.ws5b{word-spacing:10.336000pt;}
.wsc7{word-spacing:10.386667pt;}
.ws4a{word-spacing:11.096000pt;}
.ws92{word-spacing:11.450667pt;}
.wsc6{word-spacing:11.552000pt;}
.wsb0{word-spacing:11.653333pt;}
.ws9c{word-spacing:11.704000pt;}
.ws59{word-spacing:11.957333pt;}
.ws9a{word-spacing:12.666667pt;}
.ws91{word-spacing:13.274667pt;}
.wsa2{word-spacing:13.730667pt;}
.ws39{word-spacing:13.933333pt;}
.wsa7{word-spacing:14.440000pt;}
.ws8d{word-spacing:14.490667pt;}
.ws75{word-spacing:14.592000pt;}
.ws10{word-spacing:14.642667pt;}
.ws82{word-spacing:14.744000pt;}
.ws6e{word-spacing:15.098667pt;}
.ws64{word-spacing:15.352000pt;}
.ws76{word-spacing:15.554667pt;}
.ws87{word-spacing:15.858667pt;}
.wsa5{word-spacing:16.517333pt;}
.ws6d{word-spacing:16.872000pt;}
.wsaa{word-spacing:19.354667pt;}
.ws9{word-spacing:19.608000pt;}
._5{margin-left:-3.546667pt;}
._3{margin-left:-2.634667pt;}
._1{margin-left:-1.484533pt;}
._0{width:1.449067pt;}
._2{width:2.543467pt;}
._4{width:3.675733pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:4.597333pt;}
.y2e{bottom:10.672000pt;}
.yca{bottom:10.816000pt;}
.y2c{bottom:15.597200pt;}
.y29{bottom:15.664000pt;}
.y28{bottom:26.730667pt;}
.y1{bottom:49.958000pt;}
.y26{bottom:82.667467pt;}
.y25{bottom:95.337467pt;}
.y24{bottom:108.007467pt;}
.y141{bottom:110.652667pt;}
.y14a{bottom:110.676667pt;}
.yc8{bottom:119.296667pt;}
.y122{bottom:119.323333pt;}
.y10e{bottom:119.344667pt;}
.ye8{bottom:119.371333pt;}
.y55{bottom:119.440667pt;}
.y7b{bottom:119.462000pt;}
.ya2{bottom:119.494133pt;}
.y23{bottom:120.677467pt;}
.y140{bottom:127.980667pt;}
.y149{bottom:128.004667pt;}
.y22{bottom:133.347467pt;}
.yc7{bottom:136.624667pt;}
.y121{bottom:136.651333pt;}
.y10d{bottom:136.672667pt;}
.ye7{bottom:136.699333pt;}
.y54{bottom:136.768667pt;}
.y7a{bottom:136.790000pt;}
.ya1{bottom:136.822133pt;}
.y13f{bottom:145.308667pt;}
.y21{bottom:146.017467pt;}
.yc6{bottom:153.958000pt;}
.y120{bottom:153.979333pt;}
.y10c{bottom:154.000667pt;}
.y148{bottom:154.008667pt;}
.ye6{bottom:154.027333pt;}
.y53{bottom:154.096667pt;}
.y79{bottom:154.118000pt;}
.ya0{bottom:154.150133pt;}
.y13e{bottom:162.636667pt;}
.y11f{bottom:171.307333pt;}
.y10b{bottom:171.328667pt;}
.y147{bottom:171.336667pt;}
.ye5{bottom:171.355333pt;}
.y52{bottom:171.424667pt;}
.y78{bottom:171.446000pt;}
.y9f{bottom:171.478133pt;}
.y10{bottom:180.027333pt;}
.y20{bottom:180.032667pt;}
.y11e{bottom:188.635333pt;}
.y13d{bottom:188.640667pt;}
.y10a{bottom:188.656667pt;}
.y146{bottom:188.664667pt;}
.ye4{bottom:188.683333pt;}
.y51{bottom:188.752667pt;}
.y77{bottom:188.774000pt;}
.y9e{bottom:188.806133pt;}
.yc5{bottom:189.008800pt;}
.yf{bottom:197.355333pt;}
.y1f{bottom:197.360667pt;}
.y11d{bottom:205.963333pt;}
.y13c{bottom:205.968667pt;}
.y109{bottom:205.984667pt;}
.y145{bottom:205.992667pt;}
.ye3{bottom:206.011333pt;}
.y50{bottom:206.080667pt;}
.y76{bottom:206.102000pt;}
.y9d{bottom:206.134133pt;}
.yc4{bottom:206.336800pt;}
.ye{bottom:214.683333pt;}
.y1e{bottom:214.688667pt;}
.y11c{bottom:223.291333pt;}
.y13b{bottom:223.296667pt;}
.y108{bottom:223.312667pt;}
.ye2{bottom:223.339333pt;}
.y4f{bottom:223.408667pt;}
.y75{bottom:223.430000pt;}
.y9c{bottom:223.462133pt;}
.yc3{bottom:223.664800pt;}
.y144{bottom:231.996667pt;}
.yd{bottom:232.011333pt;}
.y1d{bottom:232.016667pt;}
.y11b{bottom:240.624667pt;}
.y107{bottom:240.640667pt;}
.ye1{bottom:240.667333pt;}
.y4e{bottom:240.736667pt;}
.y74{bottom:240.758000pt;}
.y9b{bottom:240.790133pt;}
.yc2{bottom:240.992800pt;}
.y143{bottom:249.324667pt;}
.yc{bottom:249.339333pt;}
.y1c{bottom:249.344667pt;}
.y106{bottom:257.968667pt;}
.ye0{bottom:257.995333pt;}
.y4d{bottom:258.064667pt;}
.y73{bottom:258.086000pt;}
.y9a{bottom:258.118133pt;}
.yc1{bottom:258.320800pt;}
.y142{bottom:266.652667pt;}
.yb{bottom:266.667333pt;}
.y1b{bottom:266.672667pt;}
.y13a{bottom:275.291333pt;}
.y105{bottom:275.296667pt;}
.ydf{bottom:275.323333pt;}
.y11a{bottom:275.344667pt;}
.y4c{bottom:275.392667pt;}
.y72{bottom:275.414000pt;}
.y99{bottom:275.446133pt;}
.yc0{bottom:275.648800pt;}
.ya{bottom:283.995333pt;}
.y1a{bottom:284.000667pt;}
.y104{bottom:292.624667pt;}
.yde{bottom:292.651333pt;}
.y119{bottom:292.672667pt;}
.y4b{bottom:292.720667pt;}
.y71{bottom:292.742000pt;}
.y98{bottom:292.774133pt;}
.ybf{bottom:292.976800pt;}
.y9{bottom:301.323333pt;}
.y19{bottom:301.328667pt;}
.y103{bottom:309.958000pt;}
.ydd{bottom:309.979333pt;}
.y118{bottom:310.000667pt;}
.y4a{bottom:310.048667pt;}
.y70{bottom:310.070000pt;}
.y97{bottom:310.102133pt;}
.ybe{bottom:310.304800pt;}
.y8{bottom:318.651333pt;}
.y18{bottom:318.656667pt;}
.ydc{bottom:327.307333pt;}
.y117{bottom:327.328667pt;}
.y49{bottom:327.376667pt;}
.y6f{bottom:327.398000pt;}
.y96{bottom:327.430133pt;}
.ybd{bottom:327.632800pt;}
.y7{bottom:335.979333pt;}
.y17{bottom:335.984667pt;}
.ydb{bottom:344.635333pt;}
.y116{bottom:344.656667pt;}
.y48{bottom:344.704667pt;}
.y6e{bottom:344.726000pt;}
.y95{bottom:344.758133pt;}
.y102{bottom:344.838000pt;}
.ybc{bottom:344.960800pt;}
.y6{bottom:353.307333pt;}
.y16{bottom:353.312667pt;}
.yda{bottom:361.963333pt;}
.y115{bottom:361.984667pt;}
.y47{bottom:362.032667pt;}
.y6d{bottom:362.054000pt;}
.y94{bottom:362.086133pt;}
.y101{bottom:362.166000pt;}
.ybb{bottom:362.288800pt;}
.y5{bottom:370.635333pt;}
.y15{bottom:370.640667pt;}
.yd9{bottom:379.291333pt;}
.y114{bottom:379.312667pt;}
.y46{bottom:379.360667pt;}
.y6c{bottom:379.382000pt;}
.y93{bottom:379.414133pt;}
.y100{bottom:379.494000pt;}
.yba{bottom:379.616800pt;}
.y4{bottom:387.963333pt;}
.y14{bottom:387.968667pt;}
.yd8{bottom:396.624667pt;}
.y113{bottom:396.640667pt;}
.y45{bottom:396.688667pt;}
.y6b{bottom:396.710000pt;}
.y92{bottom:396.742133pt;}
.yff{bottom:396.822000pt;}
.yb9{bottom:396.944800pt;}
.y3{bottom:405.291333pt;}
.y13{bottom:405.296667pt;}
.yd7{bottom:413.958000pt;}
.y112{bottom:413.968667pt;}
.y44{bottom:414.016667pt;}
.y6a{bottom:414.038000pt;}
.y91{bottom:414.070133pt;}
.yfe{bottom:414.150000pt;}
.yb8{bottom:414.272800pt;}
.y2{bottom:422.624667pt;}
.y111{bottom:431.296667pt;}
.y43{bottom:431.344667pt;}
.y69{bottom:431.366000pt;}
.y90{bottom:431.398133pt;}
.yfd{bottom:431.478000pt;}
.yb7{bottom:431.600800pt;}
.y110{bottom:448.624667pt;}
.y42{bottom:448.672667pt;}
.y68{bottom:448.694000pt;}
.yd6{bottom:448.726000pt;}
.y8f{bottom:448.726133pt;}
.yfc{bottom:448.806000pt;}
.yb6{bottom:448.928800pt;}
.y10f{bottom:465.958000pt;}
.y41{bottom:466.000667pt;}
.y67{bottom:466.022000pt;}
.yd5{bottom:466.054000pt;}
.y8e{bottom:466.054133pt;}
.yfb{bottom:466.134000pt;}
.yb5{bottom:466.256800pt;}
.y40{bottom:483.328667pt;}
.y66{bottom:483.350000pt;}
.yd4{bottom:483.382000pt;}
.y8d{bottom:483.382133pt;}
.yfa{bottom:483.462000pt;}
.yb4{bottom:483.584800pt;}
.y128{bottom:500.640667pt;}
.y3f{bottom:500.656667pt;}
.y65{bottom:500.678000pt;}
.yd3{bottom:500.710000pt;}
.y8c{bottom:500.710133pt;}
.y139{bottom:500.729333pt;}
.yf9{bottom:500.790000pt;}
.yb3{bottom:500.912800pt;}
.y127{bottom:517.968667pt;}
.y3e{bottom:517.984667pt;}
.y64{bottom:518.006000pt;}
.yd2{bottom:518.038000pt;}
.y8b{bottom:518.038133pt;}
.y138{bottom:518.057333pt;}
.yf8{bottom:518.118000pt;}
.yb2{bottom:518.240800pt;}
.y126{bottom:535.296667pt;}
.y3d{bottom:535.312667pt;}
.y63{bottom:535.334000pt;}
.yd1{bottom:535.366000pt;}
.y8a{bottom:535.366133pt;}
.y137{bottom:535.385333pt;}
.yf7{bottom:535.446000pt;}
.yb1{bottom:535.568800pt;}
.y125{bottom:552.624667pt;}
.y3c{bottom:552.640667pt;}
.y62{bottom:552.662000pt;}
.yd0{bottom:552.694000pt;}
.y89{bottom:552.694133pt;}
.y136{bottom:552.713333pt;}
.yf6{bottom:552.774000pt;}
.yb0{bottom:552.896800pt;}
.y124{bottom:569.958000pt;}
.y3b{bottom:569.968667pt;}
.y61{bottom:569.990000pt;}
.ycf{bottom:570.022000pt;}
.y88{bottom:570.022133pt;}
.y135{bottom:570.041333pt;}
.yf5{bottom:570.102000pt;}
.yaf{bottom:570.224800pt;}
.y3a{bottom:587.296667pt;}
.y60{bottom:587.318000pt;}
.yce{bottom:587.350000pt;}
.y87{bottom:587.350133pt;}
.y134{bottom:587.369333pt;}
.yf4{bottom:587.430000pt;}
.yae{bottom:587.552800pt;}
.y39{bottom:604.624667pt;}
.y5f{bottom:604.646000pt;}
.ycd{bottom:604.678000pt;}
.y86{bottom:604.678133pt;}
.y133{bottom:604.697333pt;}
.yf3{bottom:604.758000pt;}
.yad{bottom:604.880800pt;}
.y38{bottom:621.958000pt;}
.y5e{bottom:621.974000pt;}
.ycc{bottom:622.006000pt;}
.y85{bottom:622.006133pt;}
.y132{bottom:622.025333pt;}
.yf2{bottom:622.086000pt;}
.yac{bottom:622.208800pt;}
.y5d{bottom:639.302000pt;}
.ycb{bottom:639.334000pt;}
.y84{bottom:639.334133pt;}
.y131{bottom:639.353333pt;}
.yf1{bottom:639.414000pt;}
.yab{bottom:639.536800pt;}
.y2b{bottom:654.826800pt;}
.y5c{bottom:656.630000pt;}
.y37{bottom:656.662000pt;}
.y83{bottom:656.662133pt;}
.y130{bottom:656.681333pt;}
.yf0{bottom:656.742000pt;}
.yaa{bottom:656.864800pt;}
.y5b{bottom:673.958000pt;}
.y36{bottom:673.990000pt;}
.y82{bottom:673.990133pt;}
.y12f{bottom:674.009333pt;}
.yef{bottom:674.070000pt;}
.ya9{bottom:674.192800pt;}
.y2d{bottom:678.134667pt;}
.y5a{bottom:691.291333pt;}
.y35{bottom:691.318000pt;}
.y81{bottom:691.318133pt;}
.y12e{bottom:691.337333pt;}
.yee{bottom:691.398000pt;}
.ya8{bottom:691.520800pt;}
.y12{bottom:699.958000pt;}
.y34{bottom:708.646000pt;}
.y80{bottom:708.646133pt;}
.y12d{bottom:708.665333pt;}
.yed{bottom:708.726000pt;}
.ya7{bottom:708.848800pt;}
.y33{bottom:725.974000pt;}
.y7f{bottom:725.974133pt;}
.y12c{bottom:725.993333pt;}
.yec{bottom:726.054000pt;}
.y59{bottom:726.123333pt;}
.ya6{bottom:726.176800pt;}
.y11{bottom:734.624667pt;}
.y32{bottom:743.302000pt;}
.y7e{bottom:743.302133pt;}
.y12b{bottom:743.321333pt;}
.yeb{bottom:743.382000pt;}
.y58{bottom:743.451333pt;}
.ya5{bottom:743.504800pt;}
.y31{bottom:760.630000pt;}
.y7d{bottom:760.630133pt;}
.y12a{bottom:760.649333pt;}
.yea{bottom:760.710000pt;}
.y57{bottom:760.779333pt;}
.ya4{bottom:760.832800pt;}
.y30{bottom:777.958000pt;}
.y7c{bottom:777.958133pt;}
.y129{bottom:777.977333pt;}
.ye9{bottom:778.038000pt;}
.y56{bottom:778.107333pt;}
.ya3{bottom:778.160800pt;}
.y27{bottom:787.318667pt;}
.yc9{bottom:802.626667pt;}
.y123{bottom:804.844000pt;}
.y2f{bottom:812.624667pt;}
.he{height:15.999467pt;}
.hb{height:15.999733pt;}
.ha{height:21.205200pt;}
.h9{height:31.390625pt;}
.h8{height:31.914267pt;}
.h7{height:34.200000pt;}
.hc{height:36.560000pt;}
.hd{height:38.997333pt;}
.h11{height:41.040000pt;}
.h2{height:41.424000pt;}
.hf{height:41.904000pt;}
.h10{height:43.016000pt;}
.h4{height:43.320000pt;}
.h3{height:46.560000pt;}
.h6{height:64.437333pt;}
.h5{height:69.840000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w5{width:163.212267pt;}
.w6{width:163.212533pt;}
.w3{width:235.210267pt;}
.w2{width:240.010267pt;}
.w4{width:388.807467pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:55.559733pt;}
.x2{left:56.692933pt;}
.x8{left:58.771600pt;}
.xc{left:79.370133pt;}
.x3{left:94.490267pt;}
.xe{left:117.167467pt;}
.xb{left:139.624533pt;}
.xa{left:195.281333pt;}
.x9{left:227.348400pt;}
.x4{left:251.450667pt;}
.x5{left:258.021333pt;}
.x1{left:291.921200pt;}
.xd{left:315.685067pt;}
.x6{left:317.921200pt;}
.xf{left:340.594800pt;}
.x7{left:355.718533pt;}
.x10{left:378.395733pt;}
.x11{left:510.677067pt;}
}

