
    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_29f62624133382d95f4b9764.woff')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_3e99877d809243718bdde2c9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.970000;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_de7d6411995660d0b69138c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.178000;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_24d2407a128e150e06e41239.woff')format("woff");}.ff4{font-family:ff4;line-height:1.023000;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_268242506852630d2548f259.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_296f1b7e79f61006620dd3b6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.017000;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_8e51da70a80422def8b68627.woff')format("woff");}.ff7{font-family:ff7;line-height:1.178000;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_0472e73e77a472ff95d7df31.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_0d75977c40d947dbdb403b47.woff')format("woff");}.ff9{font-family:ff9;line-height:1.178000;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_1a8a3d417e4c7c7767f2677d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.089000;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_547610bd74a69e2ac3f6597a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.241000;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_8e51da70a80422def8b68627.woff')format("woff");}.ffc{font-family:ffc;line-height:1.178000;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_7d19ecf51e5f8b52bc591b4d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172000;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:ffe;src:url('chunks/assets/font_0d75977c40d947dbdb403b47.woff')format("woff");}.ffe{font-family:ffe;line-height:1.178000;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);}
.m1{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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.660000px;}
.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;}
}
.wsa8{word-spacing:-29.502000px;}
.ws32{word-spacing:-28.512000px;}
.wsf5{word-spacing:-17.160000px;}
.wsf3{word-spacing:-16.380000px;}
.ws57{word-spacing:-10.004280px;}
.wsf6{word-spacing:-5.214000px;}
.ws7e{word-spacing:-4.554000px;}
.wsd1{word-spacing:-3.432000px;}
.ws45{word-spacing:-3.366000px;}
.ws44{word-spacing:-3.300000px;}
.wsec{word-spacing:-3.234000px;}
.wsdd{word-spacing:-3.168000px;}
.ws33{word-spacing:-3.108000px;}
.ws72{word-spacing:-3.102000px;}
.ws5c{word-spacing:-3.036000px;}
.ws5{word-spacing:-2.961000px;}
.ws2c{word-spacing:-2.898000px;}
.wse1{word-spacing:-2.886000px;}
.wse0{word-spacing:-2.838000px;}
.ws3b{word-spacing:-2.772000px;}
.ws16{word-spacing:-2.709000px;}
.wsdc{word-spacing:-2.706000px;}
.wsa1{word-spacing:-2.640000px;}
.ws7b{word-spacing:-2.574000px;}
.ws93{word-spacing:-2.508000px;}
.ws36{word-spacing:-2.442000px;}
.ws97{word-spacing:-2.376000px;}
.ws3d{word-spacing:-2.310000px;}
.wsbd{word-spacing:-2.268000px;}
.ws8f{word-spacing:-2.244000px;}
.ws9c{word-spacing:-2.178000px;}
.wsef{word-spacing:-2.112000px;}
.ws99{word-spacing:-2.046000px;}
.ws31{word-spacing:-2.016000px;}
.ws35{word-spacing:-1.914000px;}
.wsab{word-spacing:-1.848000px;}
.ws53{word-spacing:-1.782000px;}
.ws61{word-spacing:-1.716000px;}
.wse4{word-spacing:-1.650000px;}
.ws63{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.518000px;}
.wse9{word-spacing:-1.512000px;}
.ws1{word-spacing:-1.458000px;}
.ws79{word-spacing:-1.452000px;}
.ws2e{word-spacing:-1.386000px;}
.ws67{word-spacing:-1.320000px;}
.ws29{word-spacing:-1.260000px;}
.wsc8{word-spacing:-1.254000px;}
.ws38{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.134000px;}
.wsdf{word-spacing:-1.122000px;}
.ws40{word-spacing:-1.056000px;}
.ws62{word-spacing:-0.990000px;}
.ws6b{word-spacing:-0.924000px;}
.wsde{word-spacing:-0.858000px;}
.wsb{word-spacing:-0.819000px;}
.ws50{word-spacing:-0.726000px;}
.wsb7{word-spacing:-0.660000px;}
.wsbb{word-spacing:-0.540000px;}
.ws6d{word-spacing:-0.528000px;}
.wsc0{word-spacing:-0.486000px;}
.ws65{word-spacing:-0.462000px;}
.ws9d{word-spacing:-0.396000px;}
.wsac{word-spacing:-0.330000px;}
.wsd8{word-spacing:-0.324000px;}
.ws2b{word-spacing:-0.315000px;}
.ws42{word-spacing:-0.264000px;}
.wse6{word-spacing:-0.198000px;}
.ws3f{word-spacing:-0.132000px;}
.wsf4{word-spacing:-0.126000px;}
.ws68{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.066000px;}
.ws39{word-spacing:0.132000px;}
.ws15{word-spacing:0.189000px;}
.wsb4{word-spacing:0.198000px;}
.ws7{word-spacing:0.252000px;}
.wsd9{word-spacing:0.264000px;}
.wsa5{word-spacing:0.270000px;}
.ws83{word-spacing:0.300000px;}
.ws2f{word-spacing:0.315000px;}
.ws3c{word-spacing:0.330000px;}
.wsae{word-spacing:0.396000px;}
.ws46{word-spacing:0.462000px;}
.wscf{word-spacing:0.528000px;}
.wsa4{word-spacing:0.540000px;}
.ws88{word-spacing:0.594000px;}
.ws59{word-spacing:0.660000px;}
.wsa{word-spacing:0.693000px;}
.ws51{word-spacing:0.726000px;}
.ws6a{word-spacing:0.792000px;}
.ws5e{word-spacing:0.858000px;}
.ws98{word-spacing:0.924000px;}
.wse3{word-spacing:0.990000px;}
.ws1a{word-spacing:1.008000px;}
.wscc{word-spacing:1.056000px;}
.wsc9{word-spacing:1.122000px;}
.wse{word-spacing:1.197000px;}
.ws76{word-spacing:1.254000px;}
.ws8a{word-spacing:1.320000px;}
.ws20{word-spacing:1.386000px;}
.ws91{word-spacing:1.452000px;}
.ws30{word-spacing:1.512000px;}
.ws55{word-spacing:1.518000px;}
.ws66{word-spacing:1.584000px;}
.ws80{word-spacing:1.620000px;}
.ws49{word-spacing:1.650000px;}
.ws2{word-spacing:1.701000px;}
.wsad{word-spacing:1.716000px;}
.ws27{word-spacing:1.764000px;}
.ws96{word-spacing:1.782000px;}
.ws87{word-spacing:1.848000px;}
.wsbc{word-spacing:1.890000px;}
.ws6e{word-spacing:1.914000px;}
.ws12{word-spacing:1.953000px;}
.ws9f{word-spacing:1.980000px;}
.ws4a{word-spacing:2.046000px;}
.ws89{word-spacing:2.112000px;}
.ws5b{word-spacing:2.178000px;}
.wse2{word-spacing:2.244000px;}
.ws6c{word-spacing:2.310000px;}
.wsb9{word-spacing:2.322000px;}
.ws9b{word-spacing:2.376000px;}
.wscd{word-spacing:2.442000px;}
.ws3e{word-spacing:2.508000px;}
.wsba{word-spacing:2.592000px;}
.ws4c{word-spacing:2.640000px;}
.ws52{word-spacing:2.706000px;}
.ws4{word-spacing:2.772000px;}
.wsb2{word-spacing:2.838000px;}
.wsd6{word-spacing:2.862000px;}
.ws9a{word-spacing:2.970000px;}
.ws84{word-spacing:3.000000px;}
.wse5{word-spacing:3.036000px;}
.wsc1{word-spacing:3.078000px;}
.ws22{word-spacing:3.087000px;}
.ws70{word-spacing:3.102000px;}
.ws21{word-spacing:3.150000px;}
.ws47{word-spacing:3.168000px;}
.ws54{word-spacing:3.234000px;}
.wsce{word-spacing:3.300000px;}
.ws10{word-spacing:3.402000px;}
.ws4e{word-spacing:3.432000px;}
.ws3a{word-spacing:3.498000px;}
.ws34{word-spacing:3.564000px;}
.ws7f{word-spacing:3.600000px;}
.ws86{word-spacing:3.762000px;}
.ws4b{word-spacing:3.828000px;}
.ws5a{word-spacing:3.894000px;}
.ws5f{word-spacing:3.960000px;}
.wse8{word-spacing:4.050000px;}
.ws9e{word-spacing:4.092000px;}
.wsc2{word-spacing:4.104000px;}
.ws73{word-spacing:4.224000px;}
.wsb1{word-spacing:4.290000px;}
.ws43{word-spacing:4.422000px;}
.ws1d{word-spacing:4.536000px;}
.ws4d{word-spacing:4.554000px;}
.ws41{word-spacing:4.620000px;}
.wsbe{word-spacing:4.644000px;}
.ws9{word-spacing:4.662000px;}
.ws8e{word-spacing:4.686000px;}
.ws71{word-spacing:4.752000px;}
.ws1f{word-spacing:4.788000px;}
.wsd3{word-spacing:4.818000px;}
.ws24{word-spacing:4.851000px;}
.wsd2{word-spacing:4.884000px;}
.ws78{word-spacing:4.950000px;}
.wsf2{word-spacing:5.016000px;}
.ws56{word-spacing:5.082000px;}
.ws75{word-spacing:5.214000px;}
.ws5d{word-spacing:5.280000px;}
.wsda{word-spacing:5.412000px;}
.ws14{word-spacing:5.544000px;}
.wsa3{word-spacing:5.616000px;}
.ws2d{word-spacing:5.733000px;}
.ws6f{word-spacing:5.808000px;}
.wsa7{word-spacing:5.832000px;}
.ws18{word-spacing:5.859000px;}
.wsdb{word-spacing:5.874000px;}
.wsed{word-spacing:5.940000px;}
.ws7c{word-spacing:6.006000px;}
.ws28{word-spacing:6.048000px;}
.wsf0{word-spacing:6.072000px;}
.ws48{word-spacing:6.204000px;}
.ws60{word-spacing:6.336000px;}
.ws85{word-spacing:6.402000px;}
.wseb{word-spacing:6.468000px;}
.ws17{word-spacing:6.489000px;}
.wsd4{word-spacing:6.600000px;}
.wsf8{word-spacing:6.666000px;}
.wsaf{word-spacing:6.732000px;}
.ws77{word-spacing:6.798000px;}
.wsb8{word-spacing:6.930000px;}
.wsb6{word-spacing:7.062000px;}
.ws8c{word-spacing:7.194000px;}
.ws8{word-spacing:7.371000px;}
.ws7a{word-spacing:7.392000px;}
.wsc3{word-spacing:7.398000px;}
.ws69{word-spacing:7.458000px;}
.wsd0{word-spacing:7.590000px;}
.ws1b{word-spacing:7.623000px;}
.ws8d{word-spacing:7.656000px;}
.ws81{word-spacing:7.680000px;}
.wsc{word-spacing:7.686000px;}
.wsb3{word-spacing:7.788000px;}
.ws82{word-spacing:7.920000px;}
.wsc7{word-spacing:7.986000px;}
.wsa0{word-spacing:8.052000px;}
.wsbf{word-spacing:8.100000px;}
.wsf1{word-spacing:8.118000px;}
.ws8b{word-spacing:8.184000px;}
.ws92{word-spacing:8.250000px;}
.ws19{word-spacing:8.442000px;}
.ws4f{word-spacing:8.514000px;}
.ws13{word-spacing:8.631000px;}
.wsb5{word-spacing:8.712000px;}
.ws1c{word-spacing:8.820000px;}
.ws1e{word-spacing:8.883000px;}
.ws94{word-spacing:8.910000px;}
.wsd{word-spacing:9.198000px;}
.ws37{word-spacing:9.240000px;}
.wsf{word-spacing:9.261000px;}
.ws23{word-spacing:9.324000px;}
.wsa2{word-spacing:9.372000px;}
.ws6{word-spacing:9.576000px;}
.wsaa{word-spacing:9.636000px;}
.ws26{word-spacing:9.702000px;}
.wsd7{word-spacing:9.720000px;}
.wsee{word-spacing:9.834000px;}
.wsca{word-spacing:10.626000px;}
.ws3{word-spacing:10.710000px;}
.wsb0{word-spacing:10.890000px;}
.ws95{word-spacing:11.022000px;}
.ws2a{word-spacing:11.340000px;}
.ws90{word-spacing:11.748000px;}
.ws25{word-spacing:12.033000px;}
.ws7d{word-spacing:12.144000px;}
.wsa6{word-spacing:12.960000px;}
.ws58{word-spacing:13.500000px;}
.wsa9{word-spacing:13.662000px;}
.wsea{word-spacing:14.472000px;}
.wscb{word-spacing:16.896000px;}
.wsc5{word-spacing:17.226000px;}
.wsc6{word-spacing:22.110000px;}
.wsc4{word-spacing:23.826000px;}
.wsf7{word-spacing:26.466000px;}
.wsd5{word-spacing:31.050000px;}
.wse7{word-spacing:34.668000px;}
._1{margin-left:-18.345600px;}
._5{margin-left:-9.763200px;}
._7{margin-left:-8.568000px;}
._c{margin-left:-6.624000px;}
._2{margin-left:-5.328000px;}
._3{margin-left:-4.320000px;}
._6{margin-left:-2.916000px;}
._4{margin-left:-1.728000px;}
._e{width:1.086000px;}
._9{width:2.197800px;}
._f{width:5.676000px;}
._b{width:6.966000px;}
._14{width:25.218000px;}
._13{width:28.836000px;}
._a{width:33.966000px;}
._d{width:46.386000px;}
._11{width:54.270000px;}
._12{width:57.564000px;}
._10{width:59.886000px;}
._8{width:62.424000px;}
._0{width:1433.280000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(156,158,159);}
.fc3{color:rgb(182,152,141);}
.fc2{color:rgb(109,49,27);}
.fc6{color:rgb(205,7,30);}
.fc1{color:rgb(41,79,30);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.793700px;}
.yc7{bottom:89.249400px;}
.y9f{bottom:89.255400px;}
.yb3{bottom:89.261400px;}
.yc{bottom:89.273400px;}
.y61{bottom:89.285400px;}
.y5f{bottom:93.174750px;}
.y95{bottom:93.174900px;}
.yad{bottom:93.206400px;}
.yf8{bottom:101.274900px;}
.y12d{bottom:102.408900px;}
.yc6{bottom:104.855400px;}
.y9e{bottom:104.861400px;}
.yb2{bottom:104.867400px;}
.yb{bottom:104.879400px;}
.y60{bottom:104.891400px;}
.yac{bottom:108.812400px;}
.y5e{bottom:112.974750px;}
.y94{bottom:112.974900px;}
.yf7{bottom:120.174900px;}
.yc5{bottom:120.461400px;}
.y9d{bottom:120.467400px;}
.yb1{bottom:120.473400px;}
.ya{bottom:120.485400px;}
.y12c{bottom:121.308900px;}
.yab{bottom:124.418400px;}
.y5d{bottom:132.774750px;}
.y93{bottom:132.774900px;}
.yc4{bottom:136.067400px;}
.y9c{bottom:136.073400px;}
.yb0{bottom:136.079400px;}
.y9{bottom:136.091400px;}
.yf6{bottom:139.074900px;}
.yaa{bottom:140.024400px;}
.y12b{bottom:140.208900px;}
.yc3{bottom:151.673400px;}
.y9b{bottom:151.679400px;}
.yaf{bottom:151.685400px;}
.y5c{bottom:152.574750px;}
.y92{bottom:152.574900px;}
.ya9{bottom:155.630400px;}
.y12a{bottom:159.108900px;}
.yc2{bottom:167.279400px;}
.y9a{bottom:167.285400px;}
.yae{bottom:167.291400px;}
.ya8{bottom:171.236400px;}
.y5b{bottom:172.374750px;}
.y91{bottom:172.374900px;}
.yf5{bottom:176.874900px;}
.y129{bottom:178.008900px;}
.yc1{bottom:182.885400px;}
.y99{bottom:182.891400px;}
.ya7{bottom:186.842400px;}
.y5a{bottom:192.174750px;}
.y90{bottom:192.174900px;}
.y128{bottom:196.908900px;}
.yc0{bottom:198.491400px;}
.y2d{bottom:202.074750px;}
.ya6{bottom:202.448400px;}
.y59{bottom:211.974750px;}
.y8f{bottom:211.974900px;}
.yf4{bottom:214.674900px;}
.y127{bottom:215.808900px;}
.ya5{bottom:218.054400px;}
.y2c{bottom:220.974750px;}
.y58{bottom:231.774750px;}
.y98{bottom:231.774900px;}
.yf3{bottom:233.574900px;}
.ya4{bottom:233.660400px;}
.y126{bottom:234.708900px;}
.y2b{bottom:239.874750px;}
.ya3{bottom:249.266400px;}
.y57{bottom:251.574750px;}
.y8e{bottom:251.574900px;}
.yf2{bottom:252.474900px;}
.y125{bottom:253.608900px;}
.ya2{bottom:264.872400px;}
.y56{bottom:271.374750px;}
.y97{bottom:271.374900px;}
.y124{bottom:272.508900px;}
.y2a{bottom:277.674750px;}
.ya1{bottom:280.478400px;}
.yf1{bottom:290.274900px;}
.y55{bottom:291.174750px;}
.y96{bottom:291.174900px;}
.y123{bottom:291.408900px;}
.ya0{bottom:296.084400px;}
.y29{bottom:296.574750px;}
.yf0{bottom:309.174900px;}
.y122{bottom:310.308900px;}
.y54{bottom:310.974750px;}
.y8d{bottom:310.974900px;}
.y28{bottom:315.474750px;}
.yef{bottom:328.074900px;}
.y121{bottom:329.208900px;}
.y53{bottom:330.774750px;}
.y8c{bottom:330.774900px;}
.y27{bottom:334.374750px;}
.yee{bottom:346.974900px;}
.y120{bottom:348.108900px;}
.y52{bottom:350.574750px;}
.y8b{bottom:350.574900px;}
.y26{bottom:353.274750px;}
.yed{bottom:365.874900px;}
.y11f{bottom:367.008900px;}
.y51{bottom:370.374750px;}
.y8a{bottom:370.374900px;}
.y25{bottom:372.174750px;}
.yec{bottom:384.774900px;}
.y11e{bottom:385.908900px;}
.y50{bottom:390.174750px;}
.y89{bottom:390.174900px;}
.y24{bottom:391.074750px;}
.yeb{bottom:403.674900px;}
.y11d{bottom:404.808900px;}
.y23{bottom:409.974750px;}
.y88{bottom:409.974900px;}
.yea{bottom:422.574900px;}
.y11c{bottom:423.708900px;}
.y22{bottom:428.874750px;}
.y4f{bottom:429.774750px;}
.y87{bottom:429.774900px;}
.ye9{bottom:441.474900px;}
.y11b{bottom:442.608900px;}
.y21{bottom:447.774750px;}
.y4e{bottom:449.574750px;}
.y86{bottom:449.574900px;}
.ybf{bottom:449.575050px;}
.ye8{bottom:460.374900px;}
.y11a{bottom:461.508900px;}
.y20{bottom:466.674750px;}
.y4d{bottom:469.374750px;}
.y85{bottom:469.374900px;}
.ybe{bottom:469.375050px;}
.ye7{bottom:479.274900px;}
.y119{bottom:480.408900px;}
.y1f{bottom:485.574750px;}
.y4c{bottom:489.174750px;}
.y84{bottom:489.174900px;}
.ybd{bottom:489.175050px;}
.ye6{bottom:498.174900px;}
.y118{bottom:499.308900px;}
.y1e{bottom:504.474750px;}
.y4b{bottom:508.974750px;}
.y83{bottom:508.974900px;}
.ye5{bottom:517.074900px;}
.y117{bottom:518.208900px;}
.y1d{bottom:523.374750px;}
.y82{bottom:528.774900px;}
.ye4{bottom:535.974900px;}
.y116{bottom:537.108900px;}
.y1c{bottom:542.274750px;}
.y4a{bottom:548.574750px;}
.y81{bottom:548.574900px;}
.ye3{bottom:554.874900px;}
.y115{bottom:556.008900px;}
.y1b{bottom:561.174750px;}
.y49{bottom:568.374750px;}
.y80{bottom:568.374900px;}
.ye2{bottom:573.774900px;}
.y114{bottom:574.908900px;}
.y1a{bottom:580.074750px;}
.y48{bottom:588.174750px;}
.y7f{bottom:588.174900px;}
.ybc{bottom:588.175050px;}
.ye1{bottom:592.674900px;}
.y113{bottom:593.808900px;}
.y19{bottom:598.974750px;}
.y47{bottom:607.974750px;}
.y7e{bottom:607.974900px;}
.ye0{bottom:611.574900px;}
.y112{bottom:612.708900px;}
.y18{bottom:617.874750px;}
.y46{bottom:627.774750px;}
.y7d{bottom:627.774900px;}
.ybb{bottom:627.775050px;}
.ydf{bottom:630.474900px;}
.y111{bottom:631.608900px;}
.y17{bottom:636.774750px;}
.y45{bottom:647.574750px;}
.y7c{bottom:647.574900px;}
.yba{bottom:647.575050px;}
.yde{bottom:649.374900px;}
.y110{bottom:650.508900px;}
.y16{bottom:655.674750px;}
.y44{bottom:667.374750px;}
.y7b{bottom:667.374900px;}
.yb9{bottom:667.375050px;}
.ydd{bottom:668.274900px;}
.y10f{bottom:669.408900px;}
.y15{bottom:674.574750px;}
.y43{bottom:687.174750px;}
.y7a{bottom:687.174900px;}
.yb8{bottom:687.175050px;}
.y10e{bottom:688.308900px;}
.y14{bottom:693.474750px;}
.ydc{bottom:706.074900px;}
.y42{bottom:706.974750px;}
.y79{bottom:706.974900px;}
.yb7{bottom:706.975050px;}
.y10d{bottom:707.208900px;}
.y13{bottom:712.374750px;}
.ydb{bottom:724.974900px;}
.y10c{bottom:726.108900px;}
.y41{bottom:726.774750px;}
.y78{bottom:726.774900px;}
.y12{bottom:731.274750px;}
.yda{bottom:743.874900px;}
.y10b{bottom:745.008900px;}
.y77{bottom:746.574900px;}
.y11{bottom:750.174750px;}
.yd9{bottom:762.774900px;}
.y10a{bottom:763.908900px;}
.y40{bottom:766.374750px;}
.y76{bottom:766.374900px;}
.y10{bottom:769.074750px;}
.yd8{bottom:781.674900px;}
.y109{bottom:782.808900px;}
.y3f{bottom:786.174750px;}
.y75{bottom:786.174900px;}
.yf{bottom:787.974750px;}
.yd7{bottom:800.574900px;}
.y108{bottom:801.708900px;}
.y3e{bottom:805.974750px;}
.y74{bottom:805.974900px;}
.ye{bottom:806.874750px;}
.yd6{bottom:819.474900px;}
.y107{bottom:820.608900px;}
.yd{bottom:825.774750px;}
.y73{bottom:825.774900px;}
.yd5{bottom:838.374900px;}
.y106{bottom:839.508900px;}
.y3d{bottom:845.574750px;}
.y72{bottom:845.574900px;}
.yb5{bottom:850.974750px;}
.yd4{bottom:857.274900px;}
.y105{bottom:858.408900px;}
.y3c{bottom:865.374750px;}
.y71{bottom:865.374900px;}
.yb4{bottom:868.074750px;}
.yd3{bottom:876.174900px;}
.y104{bottom:877.308900px;}
.y3b{bottom:885.174750px;}
.y70{bottom:885.174900px;}
.yd2{bottom:895.074900px;}
.y103{bottom:896.208900px;}
.y8{bottom:904.974750px;}
.y6f{bottom:904.974900px;}
.yb6{bottom:904.975050px;}
.yd1{bottom:913.974900px;}
.y102{bottom:915.108900px;}
.y3a{bottom:924.774750px;}
.y6e{bottom:924.774900px;}
.yd0{bottom:932.874900px;}
.y101{bottom:934.008900px;}
.y39{bottom:944.574750px;}
.y6d{bottom:944.574900px;}
.ycf{bottom:951.774900px;}
.y100{bottom:952.908900px;}
.y7{bottom:956.831250px;}
.y38{bottom:964.374750px;}
.y6c{bottom:964.374900px;}
.yce{bottom:970.674900px;}
.yff{bottom:971.808900px;}
.y37{bottom:984.174750px;}
.y6b{bottom:984.174900px;}
.ycd{bottom:989.574900px;}
.yfe{bottom:990.708900px;}
.y6{bottom:1003.291200px;}
.y36{bottom:1003.974750px;}
.y6a{bottom:1003.974900px;}
.ycc{bottom:1008.474900px;}
.yfd{bottom:1009.608900px;}
.y35{bottom:1023.774750px;}
.y69{bottom:1023.774900px;}
.ycb{bottom:1027.374900px;}
.yfc{bottom:1028.508900px;}
.y5{bottom:1035.691200px;}
.y34{bottom:1043.574750px;}
.y68{bottom:1043.574900px;}
.yca{bottom:1046.274900px;}
.yfb{bottom:1047.408900px;}
.y33{bottom:1063.374750px;}
.y67{bottom:1063.374900px;}
.yc9{bottom:1065.174900px;}
.yfa{bottom:1066.308900px;}
.y32{bottom:1083.174750px;}
.y66{bottom:1083.174900px;}
.yc8{bottom:1084.074900px;}
.yf9{bottom:1085.208900px;}
.y4{bottom:1089.351000px;}
.y31{bottom:1102.974750px;}
.y65{bottom:1102.974900px;}
.y131{bottom:1110.354000px;}
.y30{bottom:1122.774750px;}
.y64{bottom:1122.774900px;}
.y130{bottom:1129.254000px;}
.y3{bottom:1132.551000px;}
.y63{bottom:1142.574900px;}
.y12f{bottom:1148.154000px;}
.y2f{bottom:1162.374750px;}
.y62{bottom:1162.374900px;}
.y12e{bottom:1167.054000px;}
.y2{bottom:1175.751000px;}
.y2e{bottom:1212.210900px;}
.hc{height:48.168000px;}
.h7{height:48.924000px;}
.h8{height:54.144000px;}
.h2{height:54.360000px;}
.hd{height:55.347000px;}
.h10{height:56.196000px;}
.h9{height:57.078000px;}
.hb{height:58.032000px;}
.ha{height:59.796000px;}
.he{height:59.796600px;}
.h5{height:63.420000px;}
.h6{height:65.232000px;}
.hf{height:75.936000px;}
.h4{height:80.352000px;}
.h3{height:108.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x5{left:71.010000px;}
.x4{left:75.259800px;}
.xe{left:96.504000px;}
.x2{left:117.153300px;}
.xc{left:121.710900px;}
.x8{left:158.593950px;}
.x3{left:183.330300px;}
.x10{left:292.334550px;}
.x9{left:335.055150px;}
.xa{left:356.307150px;}
.xb{left:377.559150px;}
.x6{left:463.464600px;}
.x7{left:480.474600px;}
.xf{left:484.731000px;}
.xd{left:591.874050px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.586667pt;}
.wsa8{word-spacing:-26.224000pt;}
.ws32{word-spacing:-25.344000pt;}
.wsf5{word-spacing:-15.253333pt;}
.wsf3{word-spacing:-14.560000pt;}
.ws57{word-spacing:-8.892693pt;}
.wsf6{word-spacing:-4.634667pt;}
.ws7e{word-spacing:-4.048000pt;}
.wsd1{word-spacing:-3.050667pt;}
.ws45{word-spacing:-2.992000pt;}
.ws44{word-spacing:-2.933333pt;}
.wsec{word-spacing:-2.874667pt;}
.wsdd{word-spacing:-2.816000pt;}
.ws33{word-spacing:-2.762667pt;}
.ws72{word-spacing:-2.757333pt;}
.ws5c{word-spacing:-2.698667pt;}
.ws5{word-spacing:-2.632000pt;}
.ws2c{word-spacing:-2.576000pt;}
.wse1{word-spacing:-2.565333pt;}
.wse0{word-spacing:-2.522667pt;}
.ws3b{word-spacing:-2.464000pt;}
.ws16{word-spacing:-2.408000pt;}
.wsdc{word-spacing:-2.405333pt;}
.wsa1{word-spacing:-2.346667pt;}
.ws7b{word-spacing:-2.288000pt;}
.ws93{word-spacing:-2.229333pt;}
.ws36{word-spacing:-2.170667pt;}
.ws97{word-spacing:-2.112000pt;}
.ws3d{word-spacing:-2.053333pt;}
.wsbd{word-spacing:-2.016000pt;}
.ws8f{word-spacing:-1.994667pt;}
.ws9c{word-spacing:-1.936000pt;}
.wsef{word-spacing:-1.877333pt;}
.ws99{word-spacing:-1.818667pt;}
.ws31{word-spacing:-1.792000pt;}
.ws35{word-spacing:-1.701333pt;}
.wsab{word-spacing:-1.642667pt;}
.ws53{word-spacing:-1.584000pt;}
.ws61{word-spacing:-1.525333pt;}
.wse4{word-spacing:-1.466667pt;}
.ws63{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.349333pt;}
.wse9{word-spacing:-1.344000pt;}
.ws1{word-spacing:-1.296000pt;}
.ws79{word-spacing:-1.290667pt;}
.ws2e{word-spacing:-1.232000pt;}
.ws67{word-spacing:-1.173333pt;}
.ws29{word-spacing:-1.120000pt;}
.wsc8{word-spacing:-1.114667pt;}
.ws38{word-spacing:-1.056000pt;}
.ws11{word-spacing:-1.008000pt;}
.wsdf{word-spacing:-0.997333pt;}
.ws40{word-spacing:-0.938667pt;}
.ws62{word-spacing:-0.880000pt;}
.ws6b{word-spacing:-0.821333pt;}
.wsde{word-spacing:-0.762667pt;}
.wsb{word-spacing:-0.728000pt;}
.ws50{word-spacing:-0.645333pt;}
.wsb7{word-spacing:-0.586667pt;}
.wsbb{word-spacing:-0.480000pt;}
.ws6d{word-spacing:-0.469333pt;}
.wsc0{word-spacing:-0.432000pt;}
.ws65{word-spacing:-0.410667pt;}
.ws9d{word-spacing:-0.352000pt;}
.wsac{word-spacing:-0.293333pt;}
.wsd8{word-spacing:-0.288000pt;}
.ws2b{word-spacing:-0.280000pt;}
.ws42{word-spacing:-0.234667pt;}
.wse6{word-spacing:-0.176000pt;}
.ws3f{word-spacing:-0.117333pt;}
.wsf4{word-spacing:-0.112000pt;}
.ws68{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.058667pt;}
.ws39{word-spacing:0.117333pt;}
.ws15{word-spacing:0.168000pt;}
.wsb4{word-spacing:0.176000pt;}
.ws7{word-spacing:0.224000pt;}
.wsd9{word-spacing:0.234667pt;}
.wsa5{word-spacing:0.240000pt;}
.ws83{word-spacing:0.266667pt;}
.ws2f{word-spacing:0.280000pt;}
.ws3c{word-spacing:0.293333pt;}
.wsae{word-spacing:0.352000pt;}
.ws46{word-spacing:0.410667pt;}
.wscf{word-spacing:0.469333pt;}
.wsa4{word-spacing:0.480000pt;}
.ws88{word-spacing:0.528000pt;}
.ws59{word-spacing:0.586667pt;}
.wsa{word-spacing:0.616000pt;}
.ws51{word-spacing:0.645333pt;}
.ws6a{word-spacing:0.704000pt;}
.ws5e{word-spacing:0.762667pt;}
.ws98{word-spacing:0.821333pt;}
.wse3{word-spacing:0.880000pt;}
.ws1a{word-spacing:0.896000pt;}
.wscc{word-spacing:0.938667pt;}
.wsc9{word-spacing:0.997333pt;}
.wse{word-spacing:1.064000pt;}
.ws76{word-spacing:1.114667pt;}
.ws8a{word-spacing:1.173333pt;}
.ws20{word-spacing:1.232000pt;}
.ws91{word-spacing:1.290667pt;}
.ws30{word-spacing:1.344000pt;}
.ws55{word-spacing:1.349333pt;}
.ws66{word-spacing:1.408000pt;}
.ws80{word-spacing:1.440000pt;}
.ws49{word-spacing:1.466667pt;}
.ws2{word-spacing:1.512000pt;}
.wsad{word-spacing:1.525333pt;}
.ws27{word-spacing:1.568000pt;}
.ws96{word-spacing:1.584000pt;}
.ws87{word-spacing:1.642667pt;}
.wsbc{word-spacing:1.680000pt;}
.ws6e{word-spacing:1.701333pt;}
.ws12{word-spacing:1.736000pt;}
.ws9f{word-spacing:1.760000pt;}
.ws4a{word-spacing:1.818667pt;}
.ws89{word-spacing:1.877333pt;}
.ws5b{word-spacing:1.936000pt;}
.wse2{word-spacing:1.994667pt;}
.ws6c{word-spacing:2.053333pt;}
.wsb9{word-spacing:2.064000pt;}
.ws9b{word-spacing:2.112000pt;}
.wscd{word-spacing:2.170667pt;}
.ws3e{word-spacing:2.229333pt;}
.wsba{word-spacing:2.304000pt;}
.ws4c{word-spacing:2.346667pt;}
.ws52{word-spacing:2.405333pt;}
.ws4{word-spacing:2.464000pt;}
.wsb2{word-spacing:2.522667pt;}
.wsd6{word-spacing:2.544000pt;}
.ws9a{word-spacing:2.640000pt;}
.ws84{word-spacing:2.666667pt;}
.wse5{word-spacing:2.698667pt;}
.wsc1{word-spacing:2.736000pt;}
.ws22{word-spacing:2.744000pt;}
.ws70{word-spacing:2.757333pt;}
.ws21{word-spacing:2.800000pt;}
.ws47{word-spacing:2.816000pt;}
.ws54{word-spacing:2.874667pt;}
.wsce{word-spacing:2.933333pt;}
.ws10{word-spacing:3.024000pt;}
.ws4e{word-spacing:3.050667pt;}
.ws3a{word-spacing:3.109333pt;}
.ws34{word-spacing:3.168000pt;}
.ws7f{word-spacing:3.200000pt;}
.ws86{word-spacing:3.344000pt;}
.ws4b{word-spacing:3.402667pt;}
.ws5a{word-spacing:3.461333pt;}
.ws5f{word-spacing:3.520000pt;}
.wse8{word-spacing:3.600000pt;}
.ws9e{word-spacing:3.637333pt;}
.wsc2{word-spacing:3.648000pt;}
.ws73{word-spacing:3.754667pt;}
.wsb1{word-spacing:3.813333pt;}
.ws43{word-spacing:3.930667pt;}
.ws1d{word-spacing:4.032000pt;}
.ws4d{word-spacing:4.048000pt;}
.ws41{word-spacing:4.106667pt;}
.wsbe{word-spacing:4.128000pt;}
.ws9{word-spacing:4.144000pt;}
.ws8e{word-spacing:4.165333pt;}
.ws71{word-spacing:4.224000pt;}
.ws1f{word-spacing:4.256000pt;}
.wsd3{word-spacing:4.282667pt;}
.ws24{word-spacing:4.312000pt;}
.wsd2{word-spacing:4.341333pt;}
.ws78{word-spacing:4.400000pt;}
.wsf2{word-spacing:4.458667pt;}
.ws56{word-spacing:4.517333pt;}
.ws75{word-spacing:4.634667pt;}
.ws5d{word-spacing:4.693333pt;}
.wsda{word-spacing:4.810667pt;}
.ws14{word-spacing:4.928000pt;}
.wsa3{word-spacing:4.992000pt;}
.ws2d{word-spacing:5.096000pt;}
.ws6f{word-spacing:5.162667pt;}
.wsa7{word-spacing:5.184000pt;}
.ws18{word-spacing:5.208000pt;}
.wsdb{word-spacing:5.221333pt;}
.wsed{word-spacing:5.280000pt;}
.ws7c{word-spacing:5.338667pt;}
.ws28{word-spacing:5.376000pt;}
.wsf0{word-spacing:5.397333pt;}
.ws48{word-spacing:5.514667pt;}
.ws60{word-spacing:5.632000pt;}
.ws85{word-spacing:5.690667pt;}
.wseb{word-spacing:5.749333pt;}
.ws17{word-spacing:5.768000pt;}
.wsd4{word-spacing:5.866667pt;}
.wsf8{word-spacing:5.925333pt;}
.wsaf{word-spacing:5.984000pt;}
.ws77{word-spacing:6.042667pt;}
.wsb8{word-spacing:6.160000pt;}
.wsb6{word-spacing:6.277333pt;}
.ws8c{word-spacing:6.394667pt;}
.ws8{word-spacing:6.552000pt;}
.ws7a{word-spacing:6.570667pt;}
.wsc3{word-spacing:6.576000pt;}
.ws69{word-spacing:6.629333pt;}
.wsd0{word-spacing:6.746667pt;}
.ws1b{word-spacing:6.776000pt;}
.ws8d{word-spacing:6.805333pt;}
.ws81{word-spacing:6.826667pt;}
.wsc{word-spacing:6.832000pt;}
.wsb3{word-spacing:6.922667pt;}
.ws82{word-spacing:7.040000pt;}
.wsc7{word-spacing:7.098667pt;}
.wsa0{word-spacing:7.157333pt;}
.wsbf{word-spacing:7.200000pt;}
.wsf1{word-spacing:7.216000pt;}
.ws8b{word-spacing:7.274667pt;}
.ws92{word-spacing:7.333333pt;}
.ws19{word-spacing:7.504000pt;}
.ws4f{word-spacing:7.568000pt;}
.ws13{word-spacing:7.672000pt;}
.wsb5{word-spacing:7.744000pt;}
.ws1c{word-spacing:7.840000pt;}
.ws1e{word-spacing:7.896000pt;}
.ws94{word-spacing:7.920000pt;}
.wsd{word-spacing:8.176000pt;}
.ws37{word-spacing:8.213333pt;}
.wsf{word-spacing:8.232000pt;}
.ws23{word-spacing:8.288000pt;}
.wsa2{word-spacing:8.330667pt;}
.ws6{word-spacing:8.512000pt;}
.wsaa{word-spacing:8.565333pt;}
.ws26{word-spacing:8.624000pt;}
.wsd7{word-spacing:8.640000pt;}
.wsee{word-spacing:8.741333pt;}
.wsca{word-spacing:9.445333pt;}
.ws3{word-spacing:9.520000pt;}
.wsb0{word-spacing:9.680000pt;}
.ws95{word-spacing:9.797333pt;}
.ws2a{word-spacing:10.080000pt;}
.ws90{word-spacing:10.442667pt;}
.ws25{word-spacing:10.696000pt;}
.ws7d{word-spacing:10.794667pt;}
.wsa6{word-spacing:11.520000pt;}
.ws58{word-spacing:12.000000pt;}
.wsa9{word-spacing:12.144000pt;}
.wsea{word-spacing:12.864000pt;}
.wscb{word-spacing:15.018667pt;}
.wsc5{word-spacing:15.312000pt;}
.wsc6{word-spacing:19.653333pt;}
.wsc4{word-spacing:21.178667pt;}
.wsf7{word-spacing:23.525333pt;}
.wsd5{word-spacing:27.600000pt;}
.wse7{word-spacing:30.816000pt;}
._1{margin-left:-16.307200pt;}
._5{margin-left:-8.678400pt;}
._7{margin-left:-7.616000pt;}
._c{margin-left:-5.888000pt;}
._2{margin-left:-4.736000pt;}
._3{margin-left:-3.840000pt;}
._6{margin-left:-2.592000pt;}
._4{margin-left:-1.536000pt;}
._e{width:0.965333pt;}
._9{width:1.953600pt;}
._f{width:5.045333pt;}
._b{width:6.192000pt;}
._14{width:22.416000pt;}
._13{width:25.632000pt;}
._a{width:30.192000pt;}
._d{width:41.232000pt;}
._11{width:48.240000pt;}
._12{width:51.168000pt;}
._10{width:53.232000pt;}
._8{width:55.488000pt;}
._0{width:1274.026667pt;}
.fs8{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:36.261067pt;}
.yc7{bottom:79.332800pt;}
.y9f{bottom:79.338133pt;}
.yb3{bottom:79.343467pt;}
.yc{bottom:79.354133pt;}
.y61{bottom:79.364800pt;}
.y5f{bottom:82.822000pt;}
.y95{bottom:82.822133pt;}
.yad{bottom:82.850133pt;}
.yf8{bottom:90.022133pt;}
.y12d{bottom:91.030133pt;}
.yc6{bottom:93.204800pt;}
.y9e{bottom:93.210133pt;}
.yb2{bottom:93.215467pt;}
.yb{bottom:93.226133pt;}
.y60{bottom:93.236800pt;}
.yac{bottom:96.722133pt;}
.y5e{bottom:100.422000pt;}
.y94{bottom:100.422133pt;}
.yf7{bottom:106.822133pt;}
.yc5{bottom:107.076800pt;}
.y9d{bottom:107.082133pt;}
.yb1{bottom:107.087467pt;}
.ya{bottom:107.098133pt;}
.y12c{bottom:107.830133pt;}
.yab{bottom:110.594133pt;}
.y5d{bottom:118.022000pt;}
.y93{bottom:118.022133pt;}
.yc4{bottom:120.948800pt;}
.y9c{bottom:120.954133pt;}
.yb0{bottom:120.959467pt;}
.y9{bottom:120.970133pt;}
.yf6{bottom:123.622133pt;}
.yaa{bottom:124.466133pt;}
.y12b{bottom:124.630133pt;}
.yc3{bottom:134.820800pt;}
.y9b{bottom:134.826133pt;}
.yaf{bottom:134.831467pt;}
.y5c{bottom:135.622000pt;}
.y92{bottom:135.622133pt;}
.ya9{bottom:138.338133pt;}
.y12a{bottom:141.430133pt;}
.yc2{bottom:148.692800pt;}
.y9a{bottom:148.698133pt;}
.yae{bottom:148.703467pt;}
.ya8{bottom:152.210133pt;}
.y5b{bottom:153.222000pt;}
.y91{bottom:153.222133pt;}
.yf5{bottom:157.222133pt;}
.y129{bottom:158.230133pt;}
.yc1{bottom:162.564800pt;}
.y99{bottom:162.570133pt;}
.ya7{bottom:166.082133pt;}
.y5a{bottom:170.822000pt;}
.y90{bottom:170.822133pt;}
.y128{bottom:175.030133pt;}
.yc0{bottom:176.436800pt;}
.y2d{bottom:179.622000pt;}
.ya6{bottom:179.954133pt;}
.y59{bottom:188.422000pt;}
.y8f{bottom:188.422133pt;}
.yf4{bottom:190.822133pt;}
.y127{bottom:191.830133pt;}
.ya5{bottom:193.826133pt;}
.y2c{bottom:196.422000pt;}
.y58{bottom:206.022000pt;}
.y98{bottom:206.022133pt;}
.yf3{bottom:207.622133pt;}
.ya4{bottom:207.698133pt;}
.y126{bottom:208.630133pt;}
.y2b{bottom:213.222000pt;}
.ya3{bottom:221.570133pt;}
.y57{bottom:223.622000pt;}
.y8e{bottom:223.622133pt;}
.yf2{bottom:224.422133pt;}
.y125{bottom:225.430133pt;}
.ya2{bottom:235.442133pt;}
.y56{bottom:241.222000pt;}
.y97{bottom:241.222133pt;}
.y124{bottom:242.230133pt;}
.y2a{bottom:246.822000pt;}
.ya1{bottom:249.314133pt;}
.yf1{bottom:258.022133pt;}
.y55{bottom:258.822000pt;}
.y96{bottom:258.822133pt;}
.y123{bottom:259.030133pt;}
.ya0{bottom:263.186133pt;}
.y29{bottom:263.622000pt;}
.yf0{bottom:274.822133pt;}
.y122{bottom:275.830133pt;}
.y54{bottom:276.422000pt;}
.y8d{bottom:276.422133pt;}
.y28{bottom:280.422000pt;}
.yef{bottom:291.622133pt;}
.y121{bottom:292.630133pt;}
.y53{bottom:294.022000pt;}
.y8c{bottom:294.022133pt;}
.y27{bottom:297.222000pt;}
.yee{bottom:308.422133pt;}
.y120{bottom:309.430133pt;}
.y52{bottom:311.622000pt;}
.y8b{bottom:311.622133pt;}
.y26{bottom:314.022000pt;}
.yed{bottom:325.222133pt;}
.y11f{bottom:326.230133pt;}
.y51{bottom:329.222000pt;}
.y8a{bottom:329.222133pt;}
.y25{bottom:330.822000pt;}
.yec{bottom:342.022133pt;}
.y11e{bottom:343.030133pt;}
.y50{bottom:346.822000pt;}
.y89{bottom:346.822133pt;}
.y24{bottom:347.622000pt;}
.yeb{bottom:358.822133pt;}
.y11d{bottom:359.830133pt;}
.y23{bottom:364.422000pt;}
.y88{bottom:364.422133pt;}
.yea{bottom:375.622133pt;}
.y11c{bottom:376.630133pt;}
.y22{bottom:381.222000pt;}
.y4f{bottom:382.022000pt;}
.y87{bottom:382.022133pt;}
.ye9{bottom:392.422133pt;}
.y11b{bottom:393.430133pt;}
.y21{bottom:398.022000pt;}
.y4e{bottom:399.622000pt;}
.y86{bottom:399.622133pt;}
.ybf{bottom:399.622267pt;}
.ye8{bottom:409.222133pt;}
.y11a{bottom:410.230133pt;}
.y20{bottom:414.822000pt;}
.y4d{bottom:417.222000pt;}
.y85{bottom:417.222133pt;}
.ybe{bottom:417.222267pt;}
.ye7{bottom:426.022133pt;}
.y119{bottom:427.030133pt;}
.y1f{bottom:431.622000pt;}
.y4c{bottom:434.822000pt;}
.y84{bottom:434.822133pt;}
.ybd{bottom:434.822267pt;}
.ye6{bottom:442.822133pt;}
.y118{bottom:443.830133pt;}
.y1e{bottom:448.422000pt;}
.y4b{bottom:452.422000pt;}
.y83{bottom:452.422133pt;}
.ye5{bottom:459.622133pt;}
.y117{bottom:460.630133pt;}
.y1d{bottom:465.222000pt;}
.y82{bottom:470.022133pt;}
.ye4{bottom:476.422133pt;}
.y116{bottom:477.430133pt;}
.y1c{bottom:482.022000pt;}
.y4a{bottom:487.622000pt;}
.y81{bottom:487.622133pt;}
.ye3{bottom:493.222133pt;}
.y115{bottom:494.230133pt;}
.y1b{bottom:498.822000pt;}
.y49{bottom:505.222000pt;}
.y80{bottom:505.222133pt;}
.ye2{bottom:510.022133pt;}
.y114{bottom:511.030133pt;}
.y1a{bottom:515.622000pt;}
.y48{bottom:522.822000pt;}
.y7f{bottom:522.822133pt;}
.ybc{bottom:522.822267pt;}
.ye1{bottom:526.822133pt;}
.y113{bottom:527.830133pt;}
.y19{bottom:532.422000pt;}
.y47{bottom:540.422000pt;}
.y7e{bottom:540.422133pt;}
.ye0{bottom:543.622133pt;}
.y112{bottom:544.630133pt;}
.y18{bottom:549.222000pt;}
.y46{bottom:558.022000pt;}
.y7d{bottom:558.022133pt;}
.ybb{bottom:558.022267pt;}
.ydf{bottom:560.422133pt;}
.y111{bottom:561.430133pt;}
.y17{bottom:566.022000pt;}
.y45{bottom:575.622000pt;}
.y7c{bottom:575.622133pt;}
.yba{bottom:575.622267pt;}
.yde{bottom:577.222133pt;}
.y110{bottom:578.230133pt;}
.y16{bottom:582.822000pt;}
.y44{bottom:593.222000pt;}
.y7b{bottom:593.222133pt;}
.yb9{bottom:593.222267pt;}
.ydd{bottom:594.022133pt;}
.y10f{bottom:595.030133pt;}
.y15{bottom:599.622000pt;}
.y43{bottom:610.822000pt;}
.y7a{bottom:610.822133pt;}
.yb8{bottom:610.822267pt;}
.y10e{bottom:611.830133pt;}
.y14{bottom:616.422000pt;}
.ydc{bottom:627.622133pt;}
.y42{bottom:628.422000pt;}
.y79{bottom:628.422133pt;}
.yb7{bottom:628.422267pt;}
.y10d{bottom:628.630133pt;}
.y13{bottom:633.222000pt;}
.ydb{bottom:644.422133pt;}
.y10c{bottom:645.430133pt;}
.y41{bottom:646.022000pt;}
.y78{bottom:646.022133pt;}
.y12{bottom:650.022000pt;}
.yda{bottom:661.222133pt;}
.y10b{bottom:662.230133pt;}
.y77{bottom:663.622133pt;}
.y11{bottom:666.822000pt;}
.yd9{bottom:678.022133pt;}
.y10a{bottom:679.030133pt;}
.y40{bottom:681.222000pt;}
.y76{bottom:681.222133pt;}
.y10{bottom:683.622000pt;}
.yd8{bottom:694.822133pt;}
.y109{bottom:695.830133pt;}
.y3f{bottom:698.822000pt;}
.y75{bottom:698.822133pt;}
.yf{bottom:700.422000pt;}
.yd7{bottom:711.622133pt;}
.y108{bottom:712.630133pt;}
.y3e{bottom:716.422000pt;}
.y74{bottom:716.422133pt;}
.ye{bottom:717.222000pt;}
.yd6{bottom:728.422133pt;}
.y107{bottom:729.430133pt;}
.yd{bottom:734.022000pt;}
.y73{bottom:734.022133pt;}
.yd5{bottom:745.222133pt;}
.y106{bottom:746.230133pt;}
.y3d{bottom:751.622000pt;}
.y72{bottom:751.622133pt;}
.yb5{bottom:756.422000pt;}
.yd4{bottom:762.022133pt;}
.y105{bottom:763.030133pt;}
.y3c{bottom:769.222000pt;}
.y71{bottom:769.222133pt;}
.yb4{bottom:771.622000pt;}
.yd3{bottom:778.822133pt;}
.y104{bottom:779.830133pt;}
.y3b{bottom:786.822000pt;}
.y70{bottom:786.822133pt;}
.yd2{bottom:795.622133pt;}
.y103{bottom:796.630133pt;}
.y8{bottom:804.422000pt;}
.y6f{bottom:804.422133pt;}
.yb6{bottom:804.422267pt;}
.yd1{bottom:812.422133pt;}
.y102{bottom:813.430133pt;}
.y3a{bottom:822.022000pt;}
.y6e{bottom:822.022133pt;}
.yd0{bottom:829.222133pt;}
.y101{bottom:830.230133pt;}
.y39{bottom:839.622000pt;}
.y6d{bottom:839.622133pt;}
.ycf{bottom:846.022133pt;}
.y100{bottom:847.030133pt;}
.y7{bottom:850.516667pt;}
.y38{bottom:857.222000pt;}
.y6c{bottom:857.222133pt;}
.yce{bottom:862.822133pt;}
.yff{bottom:863.830133pt;}
.y37{bottom:874.822000pt;}
.y6b{bottom:874.822133pt;}
.ycd{bottom:879.622133pt;}
.yfe{bottom:880.630133pt;}
.y6{bottom:891.814400pt;}
.y36{bottom:892.422000pt;}
.y6a{bottom:892.422133pt;}
.ycc{bottom:896.422133pt;}
.yfd{bottom:897.430133pt;}
.y35{bottom:910.022000pt;}
.y69{bottom:910.022133pt;}
.ycb{bottom:913.222133pt;}
.yfc{bottom:914.230133pt;}
.y5{bottom:920.614400pt;}
.y34{bottom:927.622000pt;}
.y68{bottom:927.622133pt;}
.yca{bottom:930.022133pt;}
.yfb{bottom:931.030133pt;}
.y33{bottom:945.222000pt;}
.y67{bottom:945.222133pt;}
.yc9{bottom:946.822133pt;}
.yfa{bottom:947.830133pt;}
.y32{bottom:962.822000pt;}
.y66{bottom:962.822133pt;}
.yc8{bottom:963.622133pt;}
.yf9{bottom:964.630133pt;}
.y4{bottom:968.312000pt;}
.y31{bottom:980.422000pt;}
.y65{bottom:980.422133pt;}
.y131{bottom:986.981333pt;}
.y30{bottom:998.022000pt;}
.y64{bottom:998.022133pt;}
.y130{bottom:1003.781333pt;}
.y3{bottom:1006.712000pt;}
.y63{bottom:1015.622133pt;}
.y12f{bottom:1020.581333pt;}
.y2f{bottom:1033.222000pt;}
.y62{bottom:1033.222133pt;}
.y12e{bottom:1037.381333pt;}
.y2{bottom:1045.112000pt;}
.y2e{bottom:1077.520800pt;}
.hc{height:42.816000pt;}
.h7{height:43.488000pt;}
.h8{height:48.128000pt;}
.h2{height:48.320000pt;}
.hd{height:49.197333pt;}
.h10{height:49.952000pt;}
.h9{height:50.736000pt;}
.hb{height:51.584000pt;}
.ha{height:53.152000pt;}
.he{height:53.152533pt;}
.h5{height:56.373333pt;}
.h6{height:57.984000pt;}
.hf{height:67.498667pt;}
.h4{height:71.424000pt;}
.h3{height:96.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x5{left:63.120000pt;}
.x4{left:66.897600pt;}
.xe{left:85.781333pt;}
.x2{left:104.136267pt;}
.xc{left:108.187467pt;}
.x8{left:140.972400pt;}
.x3{left:162.960267pt;}
.x10{left:259.852933pt;}
.x9{left:297.826800pt;}
.xa{left:316.717467pt;}
.xb{left:335.608133pt;}
.x6{left:411.968533pt;}
.x7{left:427.088533pt;}
.xf{left:430.872000pt;}
.xd{left:526.110267pt;}
}

