
    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_4446c34de0814c17732b2644.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_67eb3930eab5b26d10ea8565.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_0ae1689f86ba62d7adea503e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_0cb084aefb244f46d6e58f42.woff')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_f77de7836188c43953d0ee12.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_3ad6a10145bc0178f3d65fc3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_cbca857c93575d4708042b80.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_24244ab9d8584716d4859201.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_4446c34de0814c17732b2644.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_67eb3930eab5b26d10ea8565.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_ca5846212d9f6a292bf2d4aa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_f13adfd8512e32608968c006.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_67eb3930eab5b26d10ea8565.woff')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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:fff;src:url('chunks/assets/font_c4a0178cd4e187382bd9bbc6.woff')format("woff");}.fff{font-family:fff;line-height:0.893066;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);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.579400px;}
.v1{vertical-align:27.971400px;}
.ls4{letter-spacing:-2.520000px;}
.lsd{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.420000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.lsf{letter-spacing:0.009000px;}
.lse{letter-spacing:0.009600px;}
.ls0{letter-spacing:0.165000px;}
.ls9{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.618000px;}
.ls10{letter-spacing:0.655200px;}
.ls1{letter-spacing:1.755000px;}
.lsc{letter-spacing:1.980000px;}
.ls6{letter-spacing:2.772000px;}
.ls11{letter-spacing:7.386600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.665000px;}
.ws16{word-spacing:-16.500000px;}
.ws15{word-spacing:-16.068000px;}
.ws1{word-spacing:-15.600000px;}
.ws17{word-spacing:-15.450000px;}
.wsce{word-spacing:-6.612600px;}
.wsc1{word-spacing:-6.056400px;}
.wsb1{word-spacing:-5.685600px;}
.ws71{word-spacing:-5.314800px;}
.ws58{word-spacing:-5.191200px;}
.ws7f{word-spacing:-5.005800px;}
.wsb4{word-spacing:-4.944000px;}
.wsf7{word-spacing:-4.820400px;}
.wsdf{word-spacing:-4.511400px;}
.wsb6{word-spacing:-4.264200px;}
.wsf4{word-spacing:-4.202400px;}
.ws98{word-spacing:-4.078800px;}
.wsc5{word-spacing:-4.017000px;}
.wsb2{word-spacing:-3.769800px;}
.wse{word-spacing:-3.660000px;}
.ws91{word-spacing:-3.399000px;}
.ws33{word-spacing:-3.168000px;}
.wsa4{word-spacing:-3.090000px;}
.ws83{word-spacing:-2.842800px;}
.ws26{word-spacing:-2.719200px;}
.ws2c{word-spacing:-2.595600px;}
.ws40{word-spacing:-2.472000px;}
.ws3f{word-spacing:-2.410200px;}
.ws89{word-spacing:-2.348400px;}
.ws3e{word-spacing:-2.286600px;}
.wscf{word-spacing:-2.163000px;}
.wscd{word-spacing:-2.101200px;}
.wse3{word-spacing:-1.977600px;}
.ws93{word-spacing:-1.854000px;}
.wsf2{word-spacing:-1.483200px;}
.ws59{word-spacing:-1.421400px;}
.ws2b{word-spacing:-1.359600px;}
.ws74{word-spacing:-1.297800px;}
.ws1d{word-spacing:-1.236000px;}
.ws63{word-spacing:-1.174200px;}
.wsf0{word-spacing:-1.112400px;}
.wsba{word-spacing:-1.050600px;}
.ws81{word-spacing:-0.927000px;}
.ws43{word-spacing:-0.865200px;}
.wsee{word-spacing:-0.741600px;}
.wsd{word-spacing:-0.720000px;}
.ws99{word-spacing:-0.679800px;}
.ws19{word-spacing:-0.618000px;}
.ws7{word-spacing:-0.600000px;}
.ws49{word-spacing:-0.556200px;}
.ws3d{word-spacing:-0.370800px;}
.wsbf{word-spacing:-0.309000px;}
.wsb{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.247200px;}
.wsdd{word-spacing:-0.123600px;}
.wsc2{word-spacing:-0.066000px;}
.ws2{word-spacing:-0.061800px;}
.ws3{word-spacing:0.000000px;}
.ws80{word-spacing:0.123600px;}
.ws22{word-spacing:0.185400px;}
.ws73{word-spacing:0.247200px;}
.wsa5{word-spacing:0.370800px;}
.ws7e{word-spacing:0.494400px;}
.ws72{word-spacing:0.618000px;}
.ws90{word-spacing:0.679800px;}
.wsa3{word-spacing:0.741600px;}
.ws9b{word-spacing:0.803400px;}
.ws13{word-spacing:0.816000px;}
.ws42{word-spacing:0.865200px;}
.ws47{word-spacing:0.927000px;}
.ws86{word-spacing:0.988800px;}
.ws5e{word-spacing:1.050600px;}
.ws82{word-spacing:1.112400px;}
.ws6{word-spacing:1.200000px;}
.ws6b{word-spacing:1.297800px;}
.ws62{word-spacing:1.359600px;}
.ws1e{word-spacing:1.421400px;}
.ws5c{word-spacing:1.483200px;}
.wsc{word-spacing:1.500000px;}
.ws7c{word-spacing:1.545000px;}
.ws60{word-spacing:1.730400px;}
.ws29{word-spacing:1.792200px;}
.wsdb{word-spacing:1.854000px;}
.ws7d{word-spacing:2.039400px;}
.ws53{word-spacing:2.101200px;}
.ws4e{word-spacing:2.224800px;}
.wse9{word-spacing:2.286600px;}
.wsc9{word-spacing:2.376000px;}
.wsb0{word-spacing:2.533800px;}
.wse1{word-spacing:2.657400px;}
.wsab{word-spacing:2.719200px;}
.ws9{word-spacing:2.760000px;}
.ws56{word-spacing:2.781000px;}
.ws5{word-spacing:2.820000px;}
.wsea{word-spacing:2.842800px;}
.ws24{word-spacing:2.966400px;}
.wsaf{word-spacing:3.090000px;}
.ws34{word-spacing:3.120000px;}
.wsec{word-spacing:3.151800px;}
.ws41{word-spacing:3.213600px;}
.ws9a{word-spacing:3.275400px;}
.ws25{word-spacing:3.337200px;}
.wsa9{word-spacing:3.460800px;}
.wse8{word-spacing:3.522600px;}
.ws79{word-spacing:3.584400px;}
.ws5d{word-spacing:3.646200px;}
.ws9c{word-spacing:3.708000px;}
.ws87{word-spacing:3.831600px;}
.wsb8{word-spacing:3.893400px;}
.ws94{word-spacing:3.955200px;}
.ws57{word-spacing:4.017000px;}
.ws4a{word-spacing:4.140600px;}
.ws1b{word-spacing:4.202400px;}
.ws20{word-spacing:4.326000px;}
.ws4b{word-spacing:4.387800px;}
.wsa{word-spacing:4.440000px;}
.wsaa{word-spacing:4.449600px;}
.wsa6{word-spacing:4.511400px;}
.wsae{word-spacing:4.635000px;}
.ws92{word-spacing:4.696800px;}
.ws3a{word-spacing:4.758600px;}
.wse4{word-spacing:4.820400px;}
.ws8a{word-spacing:4.882200px;}
.wscb{word-spacing:4.944000px;}
.ws78{word-spacing:5.005800px;}
.ws9d{word-spacing:5.129400px;}
.wsbd{word-spacing:5.376600px;}
.wsd0{word-spacing:5.500200px;}
.wsc7{word-spacing:5.562000px;}
.ws2d{word-spacing:5.623800px;}
.wsc6{word-spacing:5.685600px;}
.ws5a{word-spacing:5.747400px;}
.wsf6{word-spacing:5.809200px;}
.ws61{word-spacing:5.932800px;}
.ws21{word-spacing:5.994600px;}
.ws6d{word-spacing:6.056400px;}
.ws77{word-spacing:6.118200px;}
.ws64{word-spacing:6.180000px;}
.wsd1{word-spacing:6.303600px;}
.wsd4{word-spacing:6.365400px;}
.ws48{word-spacing:6.489000px;}
.wsac{word-spacing:6.550800px;}
.wsd5{word-spacing:6.612600px;}
.ws5b{word-spacing:6.674400px;}
.ws6a{word-spacing:6.859800px;}
.ws39{word-spacing:6.921600px;}
.ws10{word-spacing:6.996000px;}
.wsc3{word-spacing:7.045200px;}
.wsca{word-spacing:7.168800px;}
.ws3b{word-spacing:7.230600px;}
.wsb5{word-spacing:7.292400px;}
.ws97{word-spacing:7.354200px;}
.ws9e{word-spacing:7.416000px;}
.ws35{word-spacing:7.477800px;}
.ws1c{word-spacing:7.539600px;}
.ws50{word-spacing:7.601400px;}
.ws54{word-spacing:7.663200px;}
.wsc4{word-spacing:7.725000px;}
.ws65{word-spacing:8.034000px;}
.ws75{word-spacing:8.095800px;}
.wsad{word-spacing:8.281200px;}
.wsa2{word-spacing:8.404800px;}
.wsbc{word-spacing:8.528400px;}
.ws9f{word-spacing:8.590200px;}
.ws12{word-spacing:8.592000px;}
.wsa8{word-spacing:8.713800px;}
.ws44{word-spacing:8.775600px;}
.ws7a{word-spacing:8.899200px;}
.wse0{word-spacing:9.022800px;}
.ws1f{word-spacing:9.084600px;}
.ws7b{word-spacing:9.146400px;}
.ws4f{word-spacing:9.208200px;}
.ws36{word-spacing:9.270000px;}
.wsa7{word-spacing:9.517200px;}
.ws30{word-spacing:9.579000px;}
.ws32{word-spacing:9.648000px;}
.ws8{word-spacing:9.840000px;}
.wse5{word-spacing:9.888000px;}
.ws2e{word-spacing:9.949800px;}
.ws96{word-spacing:10.073400px;}
.ws52{word-spacing:10.135200px;}
.wsf9{word-spacing:10.197000px;}
.ws66{word-spacing:10.382400px;}
.wsa1{word-spacing:10.444200px;}
.wsde{word-spacing:10.506000px;}
.wse7{word-spacing:11.000400px;}
.ws23{word-spacing:11.124000px;}
.wscc{word-spacing:11.185800px;}
.wsbe{word-spacing:11.247600px;}
.wsf8{word-spacing:11.309400px;}
.ws4{word-spacing:11.580000px;}
.ws1a{word-spacing:11.742000px;}
.ws8f{word-spacing:11.803800px;}
.wsd2{word-spacing:11.989200px;}
.ws31{word-spacing:12.240000px;}
.wsb9{word-spacing:12.298200px;}
.ws2a{word-spacing:12.360000px;}
.wsb3{word-spacing:12.421800px;}
.ws95{word-spacing:12.545400px;}
.wsf1{word-spacing:12.916200px;}
.wsf3{word-spacing:13.039800px;}
.wse2{word-spacing:13.287000px;}
.ws3c{word-spacing:13.410600px;}
.ws8e{word-spacing:13.596000px;}
.ws37{word-spacing:13.719600px;}
.wsed{word-spacing:13.781400px;}
.ws55{word-spacing:13.905000px;}
.wsa0{word-spacing:14.337600px;}
.wsc0{word-spacing:14.399400px;}
.ws11{word-spacing:14.448000px;}
.ws67{word-spacing:14.461200px;}
.ws46{word-spacing:14.523000px;}
.wsda{word-spacing:14.646600px;}
.wsf{word-spacing:14.832000px;}
.ws38{word-spacing:15.017400px;}
.ws85{word-spacing:15.202800px;}
.ws8b{word-spacing:15.264600px;}
.ws88{word-spacing:15.450000px;}
.ws4d{word-spacing:16.006200px;}
.ws6f{word-spacing:16.500600px;}
.ws70{word-spacing:16.624200px;}
.ws6e{word-spacing:16.686000px;}
.ws8d{word-spacing:16.747800px;}
.ws8c{word-spacing:16.809600px;}
.wsdc{word-spacing:17.180400px;}
.ws51{word-spacing:17.551200px;}
.wsd7{word-spacing:17.674800px;}
.wsf5{word-spacing:17.736600px;}
.ws68{word-spacing:18.231000px;}
.wsd6{word-spacing:18.663600px;}
.wse6{word-spacing:19.096200px;}
.ws6c{word-spacing:19.405200px;}
.ws2f{word-spacing:19.776000px;}
.wsd3{word-spacing:20.023200px;}
.ws45{word-spacing:20.085000px;}
.wsd8{word-spacing:20.579400px;}
.wsd9{word-spacing:20.641200px;}
.ws4c{word-spacing:21.444600px;}
.ws84{word-spacing:21.815400px;}
.ws5f{word-spacing:22.000800px;}
.wseb{word-spacing:22.124400px;}
.wsc8{word-spacing:22.680600px;}
.ws76{word-spacing:23.422200px;}
.ws18{word-spacing:23.484000px;}
.ws69{word-spacing:25.276200px;}
.ws28{word-spacing:26.574000px;}
.wsef{word-spacing:28.428000px;}
.ws27{word-spacing:31.827000px;}
.wsbb{word-spacing:34.360800px;}
.ws14{word-spacing:426.541200px;}
._14{margin-left:-9.646980px;}
._16{margin-left:-7.626120px;}
._13{margin-left:-6.235620px;}
._2{margin-left:-5.048400px;}
._5{margin-left:-4.014000px;}
._3{margin-left:-2.886600px;}
._0{margin-left:-1.549800px;}
._1{width:1.069200px;}
._f{width:2.212440px;}
._a{width:3.440220px;}
._4{width:4.464000px;}
._e{width:5.951340px;}
._6{width:7.152000px;}
._12{width:8.590200px;}
._b{width:9.949800px;}
._8{width:11.297040px;}
._c{width:12.304380px;}
._7{width:13.782000px;}
._15{width:16.457340px;}
._10{width:17.538840px;}
._11{width:18.552360px;}
._d{width:20.387820px;}
._9{width:24.027840px;}
._17{width:36.319860px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y25{bottom:76.500000px;}
.y4b{bottom:76.500150px;}
.y24{bottom:90.000000px;}
.y4a{bottom:90.000150px;}
.ycf{bottom:91.196100px;}
.yb1{bottom:91.376100px;}
.ybc{bottom:92.456100px;}
.y9f{bottom:92.621100px;}
.y76{bottom:92.636100px;}
.yf9{bottom:92.713800px;}
.y23{bottom:103.500000px;}
.y49{bottom:103.500150px;}
.yce{bottom:109.736100px;}
.yb0{bottom:109.916100px;}
.ybb{bottom:110.996100px;}
.y9e{bottom:111.161100px;}
.y75{bottom:111.176100px;}
.yf8{bottom:111.253950px;}
.y22{bottom:117.000000px;}
.y48{bottom:117.000150px;}
.ycd{bottom:128.276100px;}
.yaf{bottom:128.456100px;}
.yba{bottom:129.536100px;}
.y9d{bottom:129.701100px;}
.y74{bottom:129.716100px;}
.yf7{bottom:129.793800px;}
.y21{bottom:134.496000px;}
.y47{bottom:134.496150px;}
.ycc{bottom:146.816100px;}
.yae{bottom:146.996100px;}
.yb9{bottom:148.076100px;}
.y9c{bottom:148.241100px;}
.y73{bottom:148.256100px;}
.yf6{bottom:148.333950px;}
.y20{bottom:158.535000px;}
.y46{bottom:165.328650px;}
.ycb{bottom:165.356100px;}
.yad{bottom:165.536100px;}
.yb8{bottom:166.616100px;}
.y9b{bottom:166.781100px;}
.y72{bottom:166.796100px;}
.yf5{bottom:166.873800px;}
.y1f{bottom:177.075000px;}
.y45{bottom:183.868650px;}
.yca{bottom:183.896100px;}
.yac{bottom:184.076100px;}
.yb7{bottom:185.156100px;}
.y9a{bottom:185.321100px;}
.y71{bottom:185.336100px;}
.yf4{bottom:185.413950px;}
.y44{bottom:202.408650px;}
.yc9{bottom:202.436100px;}
.yab{bottom:202.616100px;}
.yb6{bottom:203.696100px;}
.y99{bottom:203.861100px;}
.y70{bottom:203.876100px;}
.yf3{bottom:203.953800px;}
.y1e{bottom:213.615000px;}
.y43{bottom:220.948650px;}
.yc8{bottom:220.976100px;}
.yaa{bottom:221.156100px;}
.yb5{bottom:222.236100px;}
.y98{bottom:222.401100px;}
.y6f{bottom:222.416100px;}
.yf2{bottom:222.493950px;}
.y1d{bottom:231.615000px;}
.y42{bottom:239.488650px;}
.yc7{bottom:239.516100px;}
.ya9{bottom:239.696100px;}
.yb4{bottom:240.776100px;}
.y97{bottom:240.941100px;}
.y6e{bottom:240.956100px;}
.yf1{bottom:241.033800px;}
.y1c{bottom:249.615000px;}
.y41{bottom:258.028650px;}
.yc6{bottom:258.056100px;}
.ya8{bottom:258.236100px;}
.yb3{bottom:259.316100px;}
.y96{bottom:259.481100px;}
.y6d{bottom:259.496100px;}
.yf0{bottom:259.573950px;}
.y1b{bottom:267.615000px;}
.y40{bottom:276.568650px;}
.yc5{bottom:276.596100px;}
.ya7{bottom:276.776100px;}
.y95{bottom:278.021100px;}
.y6c{bottom:278.036100px;}
.yef{bottom:278.113800px;}
.y1a{bottom:285.615000px;}
.y3f{bottom:295.108650px;}
.yc4{bottom:295.136100px;}
.ya6{bottom:295.316100px;}
.yb2{bottom:296.396100px;}
.y94{bottom:296.561100px;}
.y6b{bottom:296.576100px;}
.yee{bottom:296.653950px;}
.y19{bottom:303.615000px;}
.y3e{bottom:313.648650px;}
.yc3{bottom:313.676100px;}
.ya5{bottom:313.856100px;}
.y93{bottom:315.101100px;}
.y6a{bottom:315.116100px;}
.yed{bottom:315.193800px;}
.y18{bottom:321.615000px;}
.y3d{bottom:332.188650px;}
.yc2{bottom:332.216100px;}
.ya4{bottom:332.396100px;}
.y92{bottom:333.641100px;}
.y69{bottom:333.656100px;}
.yec{bottom:333.733950px;}
.y17{bottom:339.615000px;}
.y3c{bottom:350.728650px;}
.yc1{bottom:350.756100px;}
.ya3{bottom:350.936100px;}
.y91{bottom:352.181100px;}
.y68{bottom:352.196100px;}
.yeb{bottom:352.273800px;}
.y16{bottom:357.615000px;}
.y3b{bottom:369.268650px;}
.yc0{bottom:369.296100px;}
.ya2{bottom:369.476100px;}
.y90{bottom:370.721100px;}
.y67{bottom:370.736100px;}
.yea{bottom:370.813800px;}
.y15{bottom:375.615000px;}
.ybf{bottom:387.836100px;}
.ya1{bottom:388.016100px;}
.y8f{bottom:389.261100px;}
.y66{bottom:389.276100px;}
.ye9{bottom:389.353800px;}
.y14{bottom:393.615000px;}
.y3a{bottom:406.348650px;}
.yd1{bottom:406.556100px;}
.y8e{bottom:407.801100px;}
.y65{bottom:407.816100px;}
.ye8{bottom:407.893800px;}
.y13{bottom:411.615000px;}
.ybe{bottom:424.916100px;}
.ya0{bottom:425.096100px;}
.y8d{bottom:426.341100px;}
.y64{bottom:426.356100px;}
.ye7{bottom:426.433800px;}
.y12{bottom:429.615000px;}
.ybd{bottom:444.716100px;}
.y8c{bottom:444.881100px;}
.y63{bottom:444.896100px;}
.ye6{bottom:444.973800px;}
.y11{bottom:447.615000px;}
.y39{bottom:462.148650px;}
.yd0{bottom:462.176100px;}
.y8b{bottom:463.421100px;}
.y62{bottom:463.436100px;}
.ye5{bottom:463.513800px;}
.y10{bottom:465.615000px;}
.y38{bottom:480.688650px;}
.y8a{bottom:481.961100px;}
.y61{bottom:481.976100px;}
.ye4{bottom:482.053950px;}
.yf{bottom:483.615000px;}
.y89{bottom:500.501100px;}
.y60{bottom:500.516100px;}
.ye3{bottom:500.593800px;}
.ye{bottom:509.115000px;}
.y37{bottom:517.768650px;}
.y88{bottom:519.041100px;}
.y5f{bottom:519.056100px;}
.ye2{bottom:519.133800px;}
.y36{bottom:536.308650px;}
.y87{bottom:537.581100px;}
.y5e{bottom:537.596100px;}
.ye1{bottom:537.673800px;}
.y35{bottom:554.848650px;}
.y86{bottom:556.121100px;}
.y5d{bottom:556.136100px;}
.ye0{bottom:556.213950px;}
.yd{bottom:567.915000px;}
.y34{bottom:573.388650px;}
.y85{bottom:574.661100px;}
.y5c{bottom:574.676100px;}
.ydf{bottom:574.753950px;}
.yc{bottom:589.515000px;}
.y33{bottom:591.928650px;}
.y84{bottom:593.201100px;}
.y5b{bottom:593.216100px;}
.yde{bottom:593.293800px;}
.y32{bottom:610.468650px;}
.y83{bottom:611.741100px;}
.y5a{bottom:611.756100px;}
.ydd{bottom:611.833800px;}
.yb{bottom:625.215000px;}
.y31{bottom:629.008650px;}
.y82{bottom:630.281100px;}
.y59{bottom:630.296100px;}
.ydc{bottom:630.373800px;}
.y30{bottom:647.548650px;}
.y81{bottom:648.821100px;}
.y58{bottom:648.836100px;}
.ydb{bottom:648.913950px;}
.ya{bottom:650.766900px;}
.y2f{bottom:666.088650px;}
.y80{bottom:667.361100px;}
.y57{bottom:667.376100px;}
.yda{bottom:667.453800px;}
.y9{bottom:677.467050px;}
.y2e{bottom:684.628650px;}
.y7f{bottom:685.901100px;}
.y56{bottom:685.916100px;}
.yd9{bottom:685.993950px;}
.y2d{bottom:703.168650px;}
.y7e{bottom:704.441100px;}
.y55{bottom:704.456100px;}
.yd8{bottom:704.533800px;}
.y8{bottom:720.666900px;}
.y2c{bottom:721.708650px;}
.y7d{bottom:722.981100px;}
.y54{bottom:722.996100px;}
.yd7{bottom:723.073950px;}
.y2b{bottom:740.248650px;}
.y7c{bottom:741.521100px;}
.y53{bottom:741.536100px;}
.yd6{bottom:741.613800px;}
.y7{bottom:747.666900px;}
.y2a{bottom:758.788650px;}
.y7b{bottom:760.061100px;}
.y52{bottom:760.076100px;}
.yd5{bottom:760.153800px;}
.y6{bottom:774.666900px;}
.y29{bottom:777.328650px;}
.y7a{bottom:778.601100px;}
.y51{bottom:778.616100px;}
.yd4{bottom:778.693950px;}
.y28{bottom:795.868650px;}
.y79{bottom:797.141100px;}
.y50{bottom:797.156100px;}
.yd3{bottom:797.233950px;}
.y78{bottom:815.681100px;}
.y4f{bottom:815.696100px;}
.y5{bottom:828.666900px;}
.y27{bottom:832.948650px;}
.yd2{bottom:833.773950px;}
.y77{bottom:834.220950px;}
.y4e{bottom:834.236100px;}
.y4{bottom:855.666900px;}
.y3{bottom:882.666900px;}
.y4d{bottom:893.470500px;}
.y4c{bottom:905.470500px;}
.y26{bottom:906.525150px;}
.h16{height:24.554320px;}
.hd{height:26.133187px;}
.hf{height:33.351562px;}
.h2{height:36.852539px;}
.h7{height:37.098633px;}
.ha{height:41.132812px;}
.h9{height:41.220703px;}
.h17{height:41.660156px;}
.he{height:42.117188px;}
.h11{height:42.366797px;}
.hc{height:42.457324px;}
.hb{height:42.608203px;}
.h14{height:42.909961px;}
.h15{height:42.940137px;}
.h12{height:45.181641px;}
.h6{height:45.342773px;}
.h8{height:45.503906px;}
.h18{height:45.826172px;}
.h10{height:47.381836px;}
.h13{height:54.225879px;}
.h5{height:57.708984px;}
.h4{height:61.615738px;}
.h3{height:74.197266px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x8{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694350px;}
.xb{left:94.302450px;}
.x3{left:106.662900px;}
.xa{left:168.961950px;}
.x9{left:541.222350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.292800pt;}
.v1{vertical-align:24.863467pt;}
.ls4{letter-spacing:-2.240000pt;}
.lsd{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.lsf{letter-spacing:0.008000pt;}
.lse{letter-spacing:0.008533pt;}
.ls0{letter-spacing:0.146667pt;}
.ls9{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.549333pt;}
.ls10{letter-spacing:0.582400pt;}
.ls1{letter-spacing:1.560000pt;}
.lsc{letter-spacing:1.760000pt;}
.ls6{letter-spacing:2.464000pt;}
.ls11{letter-spacing:6.565867pt;}
.ws0{word-spacing:-14.813333pt;}
.ws16{word-spacing:-14.666667pt;}
.ws15{word-spacing:-14.282667pt;}
.ws1{word-spacing:-13.866667pt;}
.ws17{word-spacing:-13.733333pt;}
.wsce{word-spacing:-5.877867pt;}
.wsc1{word-spacing:-5.383467pt;}
.wsb1{word-spacing:-5.053867pt;}
.ws71{word-spacing:-4.724267pt;}
.ws58{word-spacing:-4.614400pt;}
.ws7f{word-spacing:-4.449600pt;}
.wsb4{word-spacing:-4.394667pt;}
.wsf7{word-spacing:-4.284800pt;}
.wsdf{word-spacing:-4.010133pt;}
.wsb6{word-spacing:-3.790400pt;}
.wsf4{word-spacing:-3.735467pt;}
.ws98{word-spacing:-3.625600pt;}
.wsc5{word-spacing:-3.570667pt;}
.wsb2{word-spacing:-3.350933pt;}
.wse{word-spacing:-3.253333pt;}
.ws91{word-spacing:-3.021333pt;}
.ws33{word-spacing:-2.816000pt;}
.wsa4{word-spacing:-2.746667pt;}
.ws83{word-spacing:-2.526933pt;}
.ws26{word-spacing:-2.417067pt;}
.ws2c{word-spacing:-2.307200pt;}
.ws40{word-spacing:-2.197333pt;}
.ws3f{word-spacing:-2.142400pt;}
.ws89{word-spacing:-2.087467pt;}
.ws3e{word-spacing:-2.032533pt;}
.wscf{word-spacing:-1.922667pt;}
.wscd{word-spacing:-1.867733pt;}
.wse3{word-spacing:-1.757867pt;}
.ws93{word-spacing:-1.648000pt;}
.wsf2{word-spacing:-1.318400pt;}
.ws59{word-spacing:-1.263467pt;}
.ws2b{word-spacing:-1.208533pt;}
.ws74{word-spacing:-1.153600pt;}
.ws1d{word-spacing:-1.098667pt;}
.ws63{word-spacing:-1.043733pt;}
.wsf0{word-spacing:-0.988800pt;}
.wsba{word-spacing:-0.933867pt;}
.ws81{word-spacing:-0.824000pt;}
.ws43{word-spacing:-0.769067pt;}
.wsee{word-spacing:-0.659200pt;}
.wsd{word-spacing:-0.640000pt;}
.ws99{word-spacing:-0.604267pt;}
.ws19{word-spacing:-0.549333pt;}
.ws7{word-spacing:-0.533333pt;}
.ws49{word-spacing:-0.494400pt;}
.ws3d{word-spacing:-0.329600pt;}
.wsbf{word-spacing:-0.274667pt;}
.wsb{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.219733pt;}
.wsdd{word-spacing:-0.109867pt;}
.wsc2{word-spacing:-0.058667pt;}
.ws2{word-spacing:-0.054933pt;}
.ws3{word-spacing:0.000000pt;}
.ws80{word-spacing:0.109867pt;}
.ws22{word-spacing:0.164800pt;}
.ws73{word-spacing:0.219733pt;}
.wsa5{word-spacing:0.329600pt;}
.ws7e{word-spacing:0.439467pt;}
.ws72{word-spacing:0.549333pt;}
.ws90{word-spacing:0.604267pt;}
.wsa3{word-spacing:0.659200pt;}
.ws9b{word-spacing:0.714133pt;}
.ws13{word-spacing:0.725333pt;}
.ws42{word-spacing:0.769067pt;}
.ws47{word-spacing:0.824000pt;}
.ws86{word-spacing:0.878933pt;}
.ws5e{word-spacing:0.933867pt;}
.ws82{word-spacing:0.988800pt;}
.ws6{word-spacing:1.066667pt;}
.ws6b{word-spacing:1.153600pt;}
.ws62{word-spacing:1.208533pt;}
.ws1e{word-spacing:1.263467pt;}
.ws5c{word-spacing:1.318400pt;}
.wsc{word-spacing:1.333333pt;}
.ws7c{word-spacing:1.373333pt;}
.ws60{word-spacing:1.538133pt;}
.ws29{word-spacing:1.593067pt;}
.wsdb{word-spacing:1.648000pt;}
.ws7d{word-spacing:1.812800pt;}
.ws53{word-spacing:1.867733pt;}
.ws4e{word-spacing:1.977600pt;}
.wse9{word-spacing:2.032533pt;}
.wsc9{word-spacing:2.112000pt;}
.wsb0{word-spacing:2.252267pt;}
.wse1{word-spacing:2.362133pt;}
.wsab{word-spacing:2.417067pt;}
.ws9{word-spacing:2.453333pt;}
.ws56{word-spacing:2.472000pt;}
.ws5{word-spacing:2.506667pt;}
.wsea{word-spacing:2.526933pt;}
.ws24{word-spacing:2.636800pt;}
.wsaf{word-spacing:2.746667pt;}
.ws34{word-spacing:2.773333pt;}
.wsec{word-spacing:2.801600pt;}
.ws41{word-spacing:2.856533pt;}
.ws9a{word-spacing:2.911467pt;}
.ws25{word-spacing:2.966400pt;}
.wsa9{word-spacing:3.076267pt;}
.wse8{word-spacing:3.131200pt;}
.ws79{word-spacing:3.186133pt;}
.ws5d{word-spacing:3.241067pt;}
.ws9c{word-spacing:3.296000pt;}
.ws87{word-spacing:3.405867pt;}
.wsb8{word-spacing:3.460800pt;}
.ws94{word-spacing:3.515733pt;}
.ws57{word-spacing:3.570667pt;}
.ws4a{word-spacing:3.680533pt;}
.ws1b{word-spacing:3.735467pt;}
.ws20{word-spacing:3.845333pt;}
.ws4b{word-spacing:3.900267pt;}
.wsa{word-spacing:3.946667pt;}
.wsaa{word-spacing:3.955200pt;}
.wsa6{word-spacing:4.010133pt;}
.wsae{word-spacing:4.120000pt;}
.ws92{word-spacing:4.174933pt;}
.ws3a{word-spacing:4.229867pt;}
.wse4{word-spacing:4.284800pt;}
.ws8a{word-spacing:4.339733pt;}
.wscb{word-spacing:4.394667pt;}
.ws78{word-spacing:4.449600pt;}
.ws9d{word-spacing:4.559467pt;}
.wsbd{word-spacing:4.779200pt;}
.wsd0{word-spacing:4.889067pt;}
.wsc7{word-spacing:4.944000pt;}
.ws2d{word-spacing:4.998933pt;}
.wsc6{word-spacing:5.053867pt;}
.ws5a{word-spacing:5.108800pt;}
.wsf6{word-spacing:5.163733pt;}
.ws61{word-spacing:5.273600pt;}
.ws21{word-spacing:5.328533pt;}
.ws6d{word-spacing:5.383467pt;}
.ws77{word-spacing:5.438400pt;}
.ws64{word-spacing:5.493333pt;}
.wsd1{word-spacing:5.603200pt;}
.wsd4{word-spacing:5.658133pt;}
.ws48{word-spacing:5.768000pt;}
.wsac{word-spacing:5.822933pt;}
.wsd5{word-spacing:5.877867pt;}
.ws5b{word-spacing:5.932800pt;}
.ws6a{word-spacing:6.097600pt;}
.ws39{word-spacing:6.152533pt;}
.ws10{word-spacing:6.218667pt;}
.wsc3{word-spacing:6.262400pt;}
.wsca{word-spacing:6.372267pt;}
.ws3b{word-spacing:6.427200pt;}
.wsb5{word-spacing:6.482133pt;}
.ws97{word-spacing:6.537067pt;}
.ws9e{word-spacing:6.592000pt;}
.ws35{word-spacing:6.646933pt;}
.ws1c{word-spacing:6.701867pt;}
.ws50{word-spacing:6.756800pt;}
.ws54{word-spacing:6.811733pt;}
.wsc4{word-spacing:6.866667pt;}
.ws65{word-spacing:7.141333pt;}
.ws75{word-spacing:7.196267pt;}
.wsad{word-spacing:7.361067pt;}
.wsa2{word-spacing:7.470933pt;}
.wsbc{word-spacing:7.580800pt;}
.ws9f{word-spacing:7.635733pt;}
.ws12{word-spacing:7.637333pt;}
.wsa8{word-spacing:7.745600pt;}
.ws44{word-spacing:7.800533pt;}
.ws7a{word-spacing:7.910400pt;}
.wse0{word-spacing:8.020267pt;}
.ws1f{word-spacing:8.075200pt;}
.ws7b{word-spacing:8.130133pt;}
.ws4f{word-spacing:8.185067pt;}
.ws36{word-spacing:8.240000pt;}
.wsa7{word-spacing:8.459733pt;}
.ws30{word-spacing:8.514667pt;}
.ws32{word-spacing:8.576000pt;}
.ws8{word-spacing:8.746667pt;}
.wse5{word-spacing:8.789333pt;}
.ws2e{word-spacing:8.844267pt;}
.ws96{word-spacing:8.954133pt;}
.ws52{word-spacing:9.009067pt;}
.wsf9{word-spacing:9.064000pt;}
.ws66{word-spacing:9.228800pt;}
.wsa1{word-spacing:9.283733pt;}
.wsde{word-spacing:9.338667pt;}
.wse7{word-spacing:9.778133pt;}
.ws23{word-spacing:9.888000pt;}
.wscc{word-spacing:9.942933pt;}
.wsbe{word-spacing:9.997867pt;}
.wsf8{word-spacing:10.052800pt;}
.ws4{word-spacing:10.293333pt;}
.ws1a{word-spacing:10.437333pt;}
.ws8f{word-spacing:10.492267pt;}
.wsd2{word-spacing:10.657067pt;}
.ws31{word-spacing:10.880000pt;}
.wsb9{word-spacing:10.931733pt;}
.ws2a{word-spacing:10.986667pt;}
.wsb3{word-spacing:11.041600pt;}
.ws95{word-spacing:11.151467pt;}
.wsf1{word-spacing:11.481067pt;}
.wsf3{word-spacing:11.590933pt;}
.wse2{word-spacing:11.810667pt;}
.ws3c{word-spacing:11.920533pt;}
.ws8e{word-spacing:12.085333pt;}
.ws37{word-spacing:12.195200pt;}
.wsed{word-spacing:12.250133pt;}
.ws55{word-spacing:12.360000pt;}
.wsa0{word-spacing:12.744533pt;}
.wsc0{word-spacing:12.799467pt;}
.ws11{word-spacing:12.842667pt;}
.ws67{word-spacing:12.854400pt;}
.ws46{word-spacing:12.909333pt;}
.wsda{word-spacing:13.019200pt;}
.wsf{word-spacing:13.184000pt;}
.ws38{word-spacing:13.348800pt;}
.ws85{word-spacing:13.513600pt;}
.ws8b{word-spacing:13.568533pt;}
.ws88{word-spacing:13.733333pt;}
.ws4d{word-spacing:14.227733pt;}
.ws6f{word-spacing:14.667200pt;}
.ws70{word-spacing:14.777067pt;}
.ws6e{word-spacing:14.832000pt;}
.ws8d{word-spacing:14.886933pt;}
.ws8c{word-spacing:14.941867pt;}
.wsdc{word-spacing:15.271467pt;}
.ws51{word-spacing:15.601067pt;}
.wsd7{word-spacing:15.710933pt;}
.wsf5{word-spacing:15.765867pt;}
.ws68{word-spacing:16.205333pt;}
.wsd6{word-spacing:16.589867pt;}
.wse6{word-spacing:16.974400pt;}
.ws6c{word-spacing:17.249067pt;}
.ws2f{word-spacing:17.578667pt;}
.wsd3{word-spacing:17.798400pt;}
.ws45{word-spacing:17.853333pt;}
.wsd8{word-spacing:18.292800pt;}
.wsd9{word-spacing:18.347733pt;}
.ws4c{word-spacing:19.061867pt;}
.ws84{word-spacing:19.391467pt;}
.ws5f{word-spacing:19.556267pt;}
.wseb{word-spacing:19.666133pt;}
.wsc8{word-spacing:20.160533pt;}
.ws76{word-spacing:20.819733pt;}
.ws18{word-spacing:20.874667pt;}
.ws69{word-spacing:22.467733pt;}
.ws28{word-spacing:23.621333pt;}
.wsef{word-spacing:25.269333pt;}
.ws27{word-spacing:28.290667pt;}
.wsbb{word-spacing:30.542933pt;}
.ws14{word-spacing:379.147733pt;}
._14{margin-left:-8.575093pt;}
._16{margin-left:-6.778773pt;}
._13{margin-left:-5.542773pt;}
._2{margin-left:-4.487467pt;}
._5{margin-left:-3.568000pt;}
._3{margin-left:-2.565867pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.950400pt;}
._f{width:1.966613pt;}
._a{width:3.057973pt;}
._4{width:3.968000pt;}
._e{width:5.290080pt;}
._6{width:6.357333pt;}
._12{width:7.635733pt;}
._b{width:8.844267pt;}
._8{width:10.041813pt;}
._c{width:10.937227pt;}
._7{width:12.250667pt;}
._15{width:14.628747pt;}
._10{width:15.590080pt;}
._11{width:16.490987pt;}
._d{width:18.122507pt;}
._9{width:21.358080pt;}
._17{width:32.284320pt;}
.fs8{font-size:24.874667pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y25{bottom:68.000000pt;}
.y4b{bottom:68.000133pt;}
.y24{bottom:80.000000pt;}
.y4a{bottom:80.000133pt;}
.ycf{bottom:81.063200pt;}
.yb1{bottom:81.223200pt;}
.ybc{bottom:82.183200pt;}
.y9f{bottom:82.329867pt;}
.y76{bottom:82.343200pt;}
.yf9{bottom:82.412267pt;}
.y23{bottom:92.000000pt;}
.y49{bottom:92.000133pt;}
.yce{bottom:97.543200pt;}
.yb0{bottom:97.703200pt;}
.ybb{bottom:98.663200pt;}
.y9e{bottom:98.809867pt;}
.y75{bottom:98.823200pt;}
.yf8{bottom:98.892400pt;}
.y22{bottom:104.000000pt;}
.y48{bottom:104.000133pt;}
.ycd{bottom:114.023200pt;}
.yaf{bottom:114.183200pt;}
.yba{bottom:115.143200pt;}
.y9d{bottom:115.289867pt;}
.y74{bottom:115.303200pt;}
.yf7{bottom:115.372267pt;}
.y21{bottom:119.552000pt;}
.y47{bottom:119.552133pt;}
.ycc{bottom:130.503200pt;}
.yae{bottom:130.663200pt;}
.yb9{bottom:131.623200pt;}
.y9c{bottom:131.769867pt;}
.y73{bottom:131.783200pt;}
.yf6{bottom:131.852400pt;}
.y20{bottom:140.920000pt;}
.y46{bottom:146.958800pt;}
.ycb{bottom:146.983200pt;}
.yad{bottom:147.143200pt;}
.yb8{bottom:148.103200pt;}
.y9b{bottom:148.249867pt;}
.y72{bottom:148.263200pt;}
.yf5{bottom:148.332267pt;}
.y1f{bottom:157.400000pt;}
.y45{bottom:163.438800pt;}
.yca{bottom:163.463200pt;}
.yac{bottom:163.623200pt;}
.yb7{bottom:164.583200pt;}
.y9a{bottom:164.729867pt;}
.y71{bottom:164.743200pt;}
.yf4{bottom:164.812400pt;}
.y44{bottom:179.918800pt;}
.yc9{bottom:179.943200pt;}
.yab{bottom:180.103200pt;}
.yb6{bottom:181.063200pt;}
.y99{bottom:181.209867pt;}
.y70{bottom:181.223200pt;}
.yf3{bottom:181.292267pt;}
.y1e{bottom:189.880000pt;}
.y43{bottom:196.398800pt;}
.yc8{bottom:196.423200pt;}
.yaa{bottom:196.583200pt;}
.yb5{bottom:197.543200pt;}
.y98{bottom:197.689867pt;}
.y6f{bottom:197.703200pt;}
.yf2{bottom:197.772400pt;}
.y1d{bottom:205.880000pt;}
.y42{bottom:212.878800pt;}
.yc7{bottom:212.903200pt;}
.ya9{bottom:213.063200pt;}
.yb4{bottom:214.023200pt;}
.y97{bottom:214.169867pt;}
.y6e{bottom:214.183200pt;}
.yf1{bottom:214.252267pt;}
.y1c{bottom:221.880000pt;}
.y41{bottom:229.358800pt;}
.yc6{bottom:229.383200pt;}
.ya8{bottom:229.543200pt;}
.yb3{bottom:230.503200pt;}
.y96{bottom:230.649867pt;}
.y6d{bottom:230.663200pt;}
.yf0{bottom:230.732400pt;}
.y1b{bottom:237.880000pt;}
.y40{bottom:245.838800pt;}
.yc5{bottom:245.863200pt;}
.ya7{bottom:246.023200pt;}
.y95{bottom:247.129867pt;}
.y6c{bottom:247.143200pt;}
.yef{bottom:247.212267pt;}
.y1a{bottom:253.880000pt;}
.y3f{bottom:262.318800pt;}
.yc4{bottom:262.343200pt;}
.ya6{bottom:262.503200pt;}
.yb2{bottom:263.463200pt;}
.y94{bottom:263.609867pt;}
.y6b{bottom:263.623200pt;}
.yee{bottom:263.692400pt;}
.y19{bottom:269.880000pt;}
.y3e{bottom:278.798800pt;}
.yc3{bottom:278.823200pt;}
.ya5{bottom:278.983200pt;}
.y93{bottom:280.089867pt;}
.y6a{bottom:280.103200pt;}
.yed{bottom:280.172267pt;}
.y18{bottom:285.880000pt;}
.y3d{bottom:295.278800pt;}
.yc2{bottom:295.303200pt;}
.ya4{bottom:295.463200pt;}
.y92{bottom:296.569867pt;}
.y69{bottom:296.583200pt;}
.yec{bottom:296.652400pt;}
.y17{bottom:301.880000pt;}
.y3c{bottom:311.758800pt;}
.yc1{bottom:311.783200pt;}
.ya3{bottom:311.943200pt;}
.y91{bottom:313.049867pt;}
.y68{bottom:313.063200pt;}
.yeb{bottom:313.132267pt;}
.y16{bottom:317.880000pt;}
.y3b{bottom:328.238800pt;}
.yc0{bottom:328.263200pt;}
.ya2{bottom:328.423200pt;}
.y90{bottom:329.529867pt;}
.y67{bottom:329.543200pt;}
.yea{bottom:329.612267pt;}
.y15{bottom:333.880000pt;}
.ybf{bottom:344.743200pt;}
.ya1{bottom:344.903200pt;}
.y8f{bottom:346.009867pt;}
.y66{bottom:346.023200pt;}
.ye9{bottom:346.092267pt;}
.y14{bottom:349.880000pt;}
.y3a{bottom:361.198800pt;}
.yd1{bottom:361.383200pt;}
.y8e{bottom:362.489867pt;}
.y65{bottom:362.503200pt;}
.ye8{bottom:362.572267pt;}
.y13{bottom:365.880000pt;}
.ybe{bottom:377.703200pt;}
.ya0{bottom:377.863200pt;}
.y8d{bottom:378.969867pt;}
.y64{bottom:378.983200pt;}
.ye7{bottom:379.052267pt;}
.y12{bottom:381.880000pt;}
.ybd{bottom:395.303200pt;}
.y8c{bottom:395.449867pt;}
.y63{bottom:395.463200pt;}
.ye6{bottom:395.532267pt;}
.y11{bottom:397.880000pt;}
.y39{bottom:410.798800pt;}
.yd0{bottom:410.823200pt;}
.y8b{bottom:411.929867pt;}
.y62{bottom:411.943200pt;}
.ye5{bottom:412.012267pt;}
.y10{bottom:413.880000pt;}
.y38{bottom:427.278800pt;}
.y8a{bottom:428.409867pt;}
.y61{bottom:428.423200pt;}
.ye4{bottom:428.492400pt;}
.yf{bottom:429.880000pt;}
.y89{bottom:444.889867pt;}
.y60{bottom:444.903200pt;}
.ye3{bottom:444.972267pt;}
.ye{bottom:452.546667pt;}
.y37{bottom:460.238800pt;}
.y88{bottom:461.369867pt;}
.y5f{bottom:461.383200pt;}
.ye2{bottom:461.452267pt;}
.y36{bottom:476.718800pt;}
.y87{bottom:477.849867pt;}
.y5e{bottom:477.863200pt;}
.ye1{bottom:477.932267pt;}
.y35{bottom:493.198800pt;}
.y86{bottom:494.329867pt;}
.y5d{bottom:494.343200pt;}
.ye0{bottom:494.412400pt;}
.yd{bottom:504.813333pt;}
.y34{bottom:509.678800pt;}
.y85{bottom:510.809867pt;}
.y5c{bottom:510.823200pt;}
.ydf{bottom:510.892400pt;}
.yc{bottom:524.013333pt;}
.y33{bottom:526.158800pt;}
.y84{bottom:527.289867pt;}
.y5b{bottom:527.303200pt;}
.yde{bottom:527.372267pt;}
.y32{bottom:542.638800pt;}
.y83{bottom:543.769867pt;}
.y5a{bottom:543.783200pt;}
.ydd{bottom:543.852267pt;}
.yb{bottom:555.746667pt;}
.y31{bottom:559.118800pt;}
.y82{bottom:560.249867pt;}
.y59{bottom:560.263200pt;}
.ydc{bottom:560.332267pt;}
.y30{bottom:575.598800pt;}
.y81{bottom:576.729867pt;}
.y58{bottom:576.743200pt;}
.ydb{bottom:576.812400pt;}
.ya{bottom:578.459467pt;}
.y2f{bottom:592.078800pt;}
.y80{bottom:593.209867pt;}
.y57{bottom:593.223200pt;}
.yda{bottom:593.292267pt;}
.y9{bottom:602.192933pt;}
.y2e{bottom:608.558800pt;}
.y7f{bottom:609.689867pt;}
.y56{bottom:609.703200pt;}
.yd9{bottom:609.772400pt;}
.y2d{bottom:625.038800pt;}
.y7e{bottom:626.169867pt;}
.y55{bottom:626.183200pt;}
.yd8{bottom:626.252267pt;}
.y8{bottom:640.592800pt;}
.y2c{bottom:641.518800pt;}
.y7d{bottom:642.649867pt;}
.y54{bottom:642.663200pt;}
.yd7{bottom:642.732400pt;}
.y2b{bottom:657.998800pt;}
.y7c{bottom:659.129867pt;}
.y53{bottom:659.143200pt;}
.yd6{bottom:659.212267pt;}
.y7{bottom:664.592800pt;}
.y2a{bottom:674.478800pt;}
.y7b{bottom:675.609867pt;}
.y52{bottom:675.623200pt;}
.yd5{bottom:675.692267pt;}
.y6{bottom:688.592800pt;}
.y29{bottom:690.958800pt;}
.y7a{bottom:692.089867pt;}
.y51{bottom:692.103200pt;}
.yd4{bottom:692.172400pt;}
.y28{bottom:707.438800pt;}
.y79{bottom:708.569867pt;}
.y50{bottom:708.583200pt;}
.yd3{bottom:708.652400pt;}
.y78{bottom:725.049867pt;}
.y4f{bottom:725.063200pt;}
.y5{bottom:736.592800pt;}
.y27{bottom:740.398800pt;}
.yd2{bottom:741.132400pt;}
.y77{bottom:741.529733pt;}
.y4e{bottom:741.543200pt;}
.y4{bottom:760.592800pt;}
.y3{bottom:784.592800pt;}
.y4d{bottom:794.196000pt;}
.y4c{bottom:804.862667pt;}
.y26{bottom:805.800133pt;}
.h16{height:21.826062pt;}
.hd{height:23.229500pt;}
.hf{height:29.645833pt;}
.h2{height:32.757812pt;}
.h7{height:32.976562pt;}
.ha{height:36.562500pt;}
.h9{height:36.640625pt;}
.h17{height:37.031250pt;}
.he{height:37.437500pt;}
.h11{height:37.659375pt;}
.hc{height:37.739844pt;}
.hb{height:37.873958pt;}
.h14{height:38.142187pt;}
.h15{height:38.169010pt;}
.h12{height:40.161458pt;}
.h6{height:40.304688pt;}
.h8{height:40.447917pt;}
.h18{height:40.734375pt;}
.h10{height:42.117188pt;}
.h13{height:48.200781pt;}
.h5{height:51.296875pt;}
.h4{height:54.769545pt;}
.h3{height:65.953125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x8{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617200pt;}
.xb{left:83.824400pt;}
.x3{left:94.811467pt;}
.xa{left:150.188400pt;}
.x9{left:481.086533pt;}
}

