
    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_562bb6f7c40cb3b50fe734e0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.165039;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_9121cb6d37520d9c5fc13208.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_babbf21d2e0934dc26cab843.woff')format("woff");}.ff3{font-family:ff3;line-height:1.160156;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_af6068536f5b12f894565fbe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.169922;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_da2d20d959733e8e1a428aaa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0200d1e38120c7cb1e117d47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.854080px;}
.v1{vertical-align:23.621760px;}
.ls5a{letter-spacing:-1.584000px;}
.ls37{letter-spacing:-1.283040px;}
.ls41{letter-spacing:-1.013760px;}
.ls29{letter-spacing:-0.887040px;}
.ls3d{letter-spacing:-0.823680px;}
.ls51{letter-spacing:-0.760320px;}
.ls4e{letter-spacing:-0.696960px;}
.ls3c{letter-spacing:-0.633600px;}
.lsf{letter-spacing:-0.627120px;}
.lse{letter-spacing:-0.578880px;}
.ls24{letter-spacing:-0.540000px;}
.ls42{letter-spacing:-0.506880px;}
.ls1b{letter-spacing:-0.486000px;}
.ls1a{letter-spacing:-0.378000px;}
.ls23{letter-spacing:-0.362880px;}
.ls46{letter-spacing:-0.357840px;}
.ls18{letter-spacing:-0.324000px;}
.ls3e{letter-spacing:-0.316800px;}
.ls44{letter-spacing:-0.306720px;}
.ls60{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.264960px;}
.ls26{letter-spacing:-0.253440px;}
.ls3b{letter-spacing:-0.227520px;}
.ls15{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.204480px;}
.ls13{letter-spacing:-0.192960px;}
.ls3f{letter-spacing:-0.190080px;}
.ls38{letter-spacing:-0.170640px;}
.ls52{letter-spacing:-0.165600px;}
.ls17{letter-spacing:-0.162000px;}
.ls40{letter-spacing:-0.126720px;}
.ls39{letter-spacing:-0.113760px;}
.ls7{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.063360px;}
.ls45{letter-spacing:-0.051120px;}
.lsa{letter-spacing:-0.038880px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015336px;}
.ls12{letter-spacing:0.051120px;}
.ls16{letter-spacing:0.054000px;}
.ls2b{letter-spacing:0.056880px;}
.ls21{letter-spacing:0.063360px;}
.ls0{letter-spacing:0.070200px;}
.ls5d{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.136080px;}
.ls14{letter-spacing:0.144720px;}
.ls57{letter-spacing:0.152064px;}
.ls53{letter-spacing:0.153360px;}
.ls1e{letter-spacing:0.155520px;}
.ls3a{letter-spacing:0.170640px;}
.ls43{letter-spacing:0.190080px;}
.ls9{letter-spacing:0.194400px;}
.lsd{letter-spacing:0.198720px;}
.ls2a{letter-spacing:0.213840px;}
.ls6{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.226800px;}
.ls58{letter-spacing:0.227520px;}
.ls2{letter-spacing:0.233280px;}
.ls25{letter-spacing:0.253440px;}
.ls5b{letter-spacing:0.253680px;}
.ls2d{letter-spacing:0.254880px;}
.ls1{letter-spacing:0.272160px;}
.ls4d{letter-spacing:0.284400px;}
.ls1c{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.291600px;}
.ls22{letter-spacing:0.298800px;}
.ls4f{letter-spacing:0.316800px;}
.ls5{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.331200px;}
.ls10{letter-spacing:0.357840px;}
.ls19{letter-spacing:0.378000px;}
.ls28{letter-spacing:0.380160px;}
.ls32{letter-spacing:0.633600px;}
.ls1d{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.853200px;}
.ls55{letter-spacing:1.273536px;}
.ls47{letter-spacing:1.330560px;}
.ls4{letter-spacing:1.782000px;}
.ls48{letter-spacing:2.014848px;}
.ls54{letter-spacing:2.046528px;}
.ls2c{letter-spacing:2.090880px;}
.ls4b{letter-spacing:2.787840px;}
.ls5e{letter-spacing:3.186000px;}
.ls4c{letter-spacing:3.271680px;}
.ls31{letter-spacing:3.548160px;}
.ls33{letter-spacing:3.987360px;}
.ls49{letter-spacing:4.169088px;}
.ls20{letter-spacing:4.942080px;}
.ls50{letter-spacing:6.399360px;}
.ls4a{letter-spacing:6.711840px;}
.ls2e{letter-spacing:7.032960px;}
.ls30{letter-spacing:7.089984px;}
.ls2f{letter-spacing:7.096320px;}
.ls5c{letter-spacing:7.506000px;}
.ls59{letter-spacing:7.609536px;}
.ls5f{letter-spacing:9.666000px;}
.ls34{letter-spacing:10.479600px;}
.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;}
}
.ws3c{word-spacing:-17.740800px;}
.wsd5{word-spacing:-17.614080px;}
.ws6b{word-spacing:-17.550720px;}
.wsa9{word-spacing:-17.424000px;}
.ws6f{word-spacing:-17.360640px;}
.ws6d{word-spacing:-17.297280px;}
.wsb7{word-spacing:-17.233920px;}
.ws6e{word-spacing:-17.170560px;}
.ws3e{word-spacing:-17.107200px;}
.ws6a{word-spacing:-17.043840px;}
.ws69{word-spacing:-16.727040px;}
.ws3a{word-spacing:-16.673040px;}
.wse7{word-spacing:-16.600320px;}
.ws6c{word-spacing:-16.536960px;}
.ws3d{word-spacing:-16.473600px;}
.wsf5{word-spacing:-16.346880px;}
.wsc7{word-spacing:-15.869520px;}
.ws67{word-spacing:-15.642000px;}
.ws68{word-spacing:-15.471360px;}
.wsb8{word-spacing:-15.414480px;}
.wsf9{word-spacing:-15.357600px;}
.wsd{word-spacing:-15.174000px;}
.ws109{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.850000px;}
.wsb{word-spacing:-14.796000px;}
.ws0{word-spacing:-14.688000px;}
.wsc{word-spacing:-14.634000px;}
.ws9{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.568480px;}
.ws3b{word-spacing:-14.472000px;}
.ws5{word-spacing:-14.364720px;}
.wse{word-spacing:-14.310000px;}
.ws8{word-spacing:-14.058000px;}
.ws7{word-spacing:-14.022216px;}
.ws6{word-spacing:-14.006880px;}
.wsb9{word-spacing:-13.955760px;}
.ws70{word-spacing:-13.802400px;}
.ws66{word-spacing:-12.655440px;}
.ws1{word-spacing:-10.925280px;}
.ws2{word-spacing:-10.653120px;}
.wsc8{word-spacing:-9.074880px;}
.wsf0{word-spacing:-8.909280px;}
.wscf{word-spacing:-4.625280px;}
.wsd0{word-spacing:-4.435200px;}
.wse1{word-spacing:-4.308480px;}
.wse0{word-spacing:-4.181760px;}
.ws64{word-spacing:-3.928320px;}
.ws63{word-spacing:-3.738240px;}
.ws4a{word-spacing:-3.672000px;}
.ws55{word-spacing:-3.611520px;}
.ws2f{word-spacing:-3.510000px;}
.wsad{word-spacing:-3.421440px;}
.ws101{word-spacing:-3.412800px;}
.wsb2{word-spacing:-3.358080px;}
.ws54{word-spacing:-3.231360px;}
.ws49{word-spacing:-3.132000px;}
.wsd2{word-spacing:-3.041280px;}
.wsbf{word-spacing:-2.977920px;}
.ws30{word-spacing:-2.916000px;}
.ws106{word-spacing:-2.900880px;}
.ws107{word-spacing:-2.844000px;}
.ws7b{word-spacing:-2.787120px;}
.ws22{word-spacing:-2.754000px;}
.wsbd{word-spacing:-2.724480px;}
.ws79{word-spacing:-2.673360px;}
.wsf8{word-spacing:-2.504880px;}
.ws80{word-spacing:-2.471040px;}
.ws7a{word-spacing:-2.445840px;}
.ws111{word-spacing:-2.322000px;}
.wsf7{word-spacing:-2.300400px;}
.ws82{word-spacing:-2.280960px;}
.ws42{word-spacing:-2.214000px;}
.wsfe{word-spacing:-2.154240px;}
.wsf3{word-spacing:-2.095920px;}
.ws1e{word-spacing:-2.052000px;}
.ws94{word-spacing:-1.964160px;}
.wsc1{word-spacing:-1.933920px;}
.ws57{word-spacing:-1.774080px;}
.ws1f{word-spacing:-1.674000px;}
.wsae{word-spacing:-1.584000px;}
.ws4d{word-spacing:-1.512000px;}
.wsf6{word-spacing:-1.457280px;}
.wsc5{word-spacing:-1.380240px;}
.ws26{word-spacing:-1.350000px;}
.wsbb{word-spacing:-1.330560px;}
.ws58{word-spacing:-1.267200px;}
.wscd{word-spacing:-1.251360px;}
.wsfd{word-spacing:-1.203840px;}
.ws25{word-spacing:-1.134000px;}
.ws52{word-spacing:-1.077120px;}
.ws73{word-spacing:-1.043280px;}
.ws112{word-spacing:-1.026000px;}
.wsc6{word-spacing:-1.022400px;}
.ws48{word-spacing:-0.972000px;}
.wsf2{word-spacing:-0.971280px;}
.ws23{word-spacing:-0.918000px;}
.ws56{word-spacing:-0.887040px;}
.ws12{word-spacing:-0.855360px;}
.ws24{word-spacing:-0.810000px;}
.wsef{word-spacing:-0.760320px;}
.ws113{word-spacing:-0.756000px;}
.ws38{word-spacing:-0.702000px;}
.wsfa{word-spacing:-0.682560px;}
.ws18{word-spacing:-0.664560px;}
.wsde{word-spacing:-0.633600px;}
.ws31{word-spacing:-0.594000px;}
.ws62{word-spacing:-0.570240px;}
.wsfb{word-spacing:-0.511920px;}
.wsf4{word-spacing:-0.460080px;}
.wsb4{word-spacing:-0.443520px;}
.ws40{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.397440px;}
.ws1d{word-spacing:-0.385920px;}
.ws88{word-spacing:-0.380160px;}
.ws37{word-spacing:-0.378000px;}
.ws1b{word-spacing:-0.357840px;}
.ws16{word-spacing:-0.331200px;}
.ws74{word-spacing:-0.317520px;}
.ws5d{word-spacing:-0.316800px;}
.ws19{word-spacing:-0.306720px;}
.ws75{word-spacing:-0.288000px;}
.wscb{word-spacing:-0.284400px;}
.ws11b{word-spacing:-0.255600px;}
.ws10{word-spacing:-0.233280px;}
.ws39{word-spacing:-0.216000px;}
.ws77{word-spacing:-0.194400px;}
.wsdd{word-spacing:-0.190080px;}
.ws71{word-spacing:-0.181440px;}
.wsb3{word-spacing:-0.126720px;}
.ws14{word-spacing:-0.116640px;}
.ws1a{word-spacing:-0.102240px;}
.wsdc{word-spacing:-0.063360px;}
.ws36{word-spacing:-0.054000px;}
.ws96{word-spacing:-0.051120px;}
.ws1c{word-spacing:-0.048240px;}
.wsf{word-spacing:0.000000px;}
.ws11{word-spacing:0.038880px;}
.wsa0{word-spacing:0.051120px;}
.wseb{word-spacing:0.063360px;}
.ws32{word-spacing:0.108000px;}
.ws85{word-spacing:0.126720px;}
.ws13{word-spacing:0.155520px;}
.ws10b{word-spacing:0.162000px;}
.ws41{word-spacing:0.181440px;}
.ws61{word-spacing:0.190080px;}
.wsc4{word-spacing:0.227520px;}
.ws50{word-spacing:0.253440px;}
.ws15{word-spacing:0.264960px;}
.ws3f{word-spacing:0.288000px;}
.ws9c{word-spacing:0.306720px;}
.ws10a{word-spacing:0.324000px;}
.ws59{word-spacing:0.380160px;}
.wsa1{word-spacing:0.408960px;}
.ws76{word-spacing:0.432000px;}
.wsea{word-spacing:0.443520px;}
.wsce{word-spacing:0.455040px;}
.ws10e{word-spacing:0.486000px;}
.ws8c{word-spacing:0.506880px;}
.ws7c{word-spacing:0.511920px;}
.ws118{word-spacing:0.540000px;}
.ws72{word-spacing:0.544320px;}
.ws65{word-spacing:0.570240px;}
.ws17{word-spacing:0.578880px;}
.ws117{word-spacing:0.594000px;}
.ws29{word-spacing:0.648000px;}
.wsec{word-spacing:0.696960px;}
.ws33{word-spacing:0.702000px;}
.wsfc{word-spacing:0.760320px;}
.ws2e{word-spacing:0.810000px;}
.wsaa{word-spacing:0.823680px;}
.ws95{word-spacing:0.887040px;}
.ws8a{word-spacing:1.013760px;}
.ws53{word-spacing:1.140480px;}
.ws2d{word-spacing:1.188000px;}
.ws93{word-spacing:1.203840px;}
.ws114{word-spacing:1.242000px;}
.wsab{word-spacing:1.330560px;}
.wsd8{word-spacing:1.457280px;}
.wsa4{word-spacing:1.482480px;}
.ws21{word-spacing:1.566000px;}
.ws92{word-spacing:1.584000px;}
.ws7d{word-spacing:1.647360px;}
.wsc2{word-spacing:1.649520px;}
.wsb1{word-spacing:1.710720px;}
.ws2a{word-spacing:1.782000px;}
.ws5f{word-spacing:1.837440px;}
.ws78{word-spacing:1.877040px;}
.wsa2{word-spacing:1.891440px;}
.ws2c{word-spacing:1.944000px;}
.ws5e{word-spacing:2.027520px;}
.wsa3{word-spacing:2.044800px;}
.ws43{word-spacing:2.106000px;}
.ws2b{word-spacing:2.160000px;}
.wsa5{word-spacing:2.198160px;}
.ws44{word-spacing:2.268000px;}
.ws83{word-spacing:2.280960px;}
.ws7e{word-spacing:2.344320px;}
.wsc9{word-spacing:2.388960px;}
.ws81{word-spacing:2.534400px;}
.ws9b{word-spacing:2.556000px;}
.ws9a{word-spacing:2.607120px;}
.ws60{word-spacing:2.724480px;}
.wsd4{word-spacing:2.760480px;}
.wse8{word-spacing:2.787840px;}
.ws105{word-spacing:2.844000px;}
.wsd3{word-spacing:2.862720px;}
.ws7f{word-spacing:2.914560px;}
.ws4e{word-spacing:2.970000px;}
.wse9{word-spacing:2.977920px;}
.ws5c{word-spacing:3.041280px;}
.ws104{word-spacing:3.071520px;}
.ws86{word-spacing:3.104640px;}
.ws116{word-spacing:3.186000px;}
.ws98{word-spacing:3.271680px;}
.ws87{word-spacing:3.294720px;}
.ws99{word-spacing:3.322800px;}
.ws115{word-spacing:3.402000px;}
.ws5a{word-spacing:3.484800px;}
.ws97{word-spacing:3.578400px;}
.ws9f{word-spacing:3.629520px;}
.ws20{word-spacing:3.726000px;}
.wsd6{word-spacing:3.738240px;}
.wsbc{word-spacing:3.801600px;}
.wsf1{word-spacing:3.810960px;}
.ws9d{word-spacing:3.936240px;}
.ws9e{word-spacing:3.987360px;}
.ws84{word-spacing:3.991680px;}
.ws103{word-spacing:4.038480px;}
.wsc0{word-spacing:4.055040px;}
.wsed{word-spacing:4.181760px;}
.wscc{word-spacing:4.245120px;}
.ws47{word-spacing:4.266000px;}
.ws46{word-spacing:4.428000px;}
.wsbe{word-spacing:4.435200px;}
.wsac{word-spacing:4.498560px;}
.wsca{word-spacing:4.550400px;}
.ws110{word-spacing:4.644000px;}
.ws4f{word-spacing:4.688640px;}
.ws10f{word-spacing:4.860000px;}
.wse2{word-spacing:4.878720px;}
.ws28{word-spacing:5.130000px;}
.ws89{word-spacing:5.195520px;}
.ws108{word-spacing:5.232960px;}
.wsdb{word-spacing:5.385600px;}
.ws51{word-spacing:5.448960px;}
.ws27{word-spacing:5.508000px;}
.wsda{word-spacing:5.639040px;}
.ws45{word-spacing:5.886000px;}
.wse5{word-spacing:5.955840px;}
.ws102{word-spacing:5.972400px;}
.wsd1{word-spacing:6.145920px;}
.ws100{word-spacing:6.209280px;}
.wsb5{word-spacing:6.336000px;}
.ws35{word-spacing:6.426000px;}
.wsdf{word-spacing:6.462720px;}
.ws10d{word-spacing:6.480000px;}
.ws34{word-spacing:6.588000px;}
.wsb0{word-spacing:6.652800px;}
.wsc3{word-spacing:6.711840px;}
.wsba{word-spacing:6.842880px;}
.wsd9{word-spacing:7.032960px;}
.ws4c{word-spacing:7.128000px;}
.ws8f{word-spacing:7.159680px;}
.ws8b{word-spacing:7.286400px;}
.ws4b{word-spacing:7.290000px;}
.ws8e{word-spacing:7.349760px;}
.ws10c{word-spacing:7.506000px;}
.ws5b{word-spacing:7.603200px;}
.wse6{word-spacing:7.793280px;}
.ws90{word-spacing:7.983360px;}
.ws91{word-spacing:8.046720px;}
.ws8d{word-spacing:8.110080px;}
.wse3{word-spacing:8.300160px;}
.wsee{word-spacing:9.250560px;}
.ws119{word-spacing:9.450000px;}
.wse4{word-spacing:9.567360px;}
.ws11a{word-spacing:9.666000px;}
.wsd7{word-spacing:9.947520px;}
.wsa6{word-spacing:10.121760px;}
.wsaf{word-spacing:10.264320px;}
.wsa7{word-spacing:10.479600px;}
.wsa8{word-spacing:10.684080px;}
.wsff{word-spacing:22.682880px;}
.wsb6{word-spacing:29.905920px;}
._9{margin-left:-4.782528px;}
._7{margin-left:-3.567960px;}
._8{margin-left:-2.448936px;}
._1{margin-left:-1.333584px;}
._0{width:1.009800px;}
._2{width:2.538000px;}
._4{width:3.700224px;}
._3{width:5.721480px;}
._5{width:7.463520px;}
._a{width:8.718624px;}
._c{width:22.771800px;}
._6{width:29.598480px;}
._d{width:30.672000px;}
._b{width:216.069936px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.120000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.240000px;}
.y2e{bottom:44.822160px;}
.y1{bottom:45.900000px;}
.y2d{bottom:56.700000px;}
.y9{bottom:95.760000px;}
.y1b2{bottom:96.660000px;}
.y123{bottom:96.662340px;}
.y150{bottom:96.664680px;}
.yd9{bottom:96.668100px;}
.yff{bottom:96.670440px;}
.y88{bottom:96.683220px;}
.y11{bottom:99.000000px;}
.yb2{bottom:105.063840px;}
.y5c{bottom:105.726240px;}
.y190{bottom:105.943680px;}
.y2b{bottom:107.145000px;}
.y122{bottom:111.960000px;}
.y14f{bottom:111.962340px;}
.yd8{bottom:111.965760px;}
.yfe{bottom:111.968100px;}
.y87{bottom:111.980880px;}
.y1b1{bottom:113.760000px;}
.y12d{bottom:114.963840px;}
.yb1{bottom:123.960960px;}
.y2a{bottom:124.425000px;}
.y18f{bottom:124.840800px;}
.y14e{bottom:127.260000px;}
.yd7{bottom:127.263420px;}
.yfd{bottom:127.265760px;}
.y86{bottom:127.278540px;}
.y121{bottom:129.060000px;}
.y5b{bottom:133.620480px;}
.y12c{bottom:133.860960px;}
.y29{bottom:140.260500px;}
.yd6{bottom:142.740000px;}
.yfc{bottom:142.742340px;}
.y85{bottom:142.755120px;}
.yb0{bottom:142.858080px;}
.y18e{bottom:143.737920px;}
.y14d{bottom:144.540000px;}
.y5a{bottom:152.517600px;}
.y120{bottom:152.752320px;}
.y12b{bottom:152.758080px;}
.y28{bottom:155.920500px;}
.yfb{bottom:158.040000px;}
.y84{bottom:158.052780px;}
.yd5{bottom:159.840000px;}
.yaf{bottom:161.755200px;}
.y1b0{bottom:162.564300px;}
.y18d{bottom:162.635040px;}
.y59{bottom:171.414720px;}
.y11f{bottom:171.649440px;}
.y12a{bottom:171.655200px;}
.y27{bottom:171.756000px;}
.y83{bottom:173.350440px;}
.yfa{bottom:175.139850px;}
.yae{bottom:180.652320px;}
.y1af{bottom:181.462680px;}
.y18c{bottom:181.532160px;}
.y26{bottom:187.416000px;}
.y82{bottom:188.827020px;}
.y58{bottom:190.311840px;}
.y11e{bottom:190.546560px;}
.yd4{bottom:191.346480px;}
.yad{bottom:199.549440px;}
.y1ae{bottom:200.361060px;}
.y18b{bottom:200.429280px;}
.y25{bottom:203.251500px;}
.y81{bottom:204.124680px;}
.y57{bottom:209.208960px;}
.y11d{bottom:209.443680px;}
.yd3{bottom:210.244860px;}
.y14c{bottom:210.306240px;}
.yf9{bottom:211.145760px;}
.yac{bottom:218.446560px;}
.y24{bottom:218.911500px;}
.y1ad{bottom:219.259440px;}
.y18a{bottom:219.326400px;}
.y80{bottom:219.422340px;}
.y56{bottom:228.106080px;}
.y169{bottom:228.317760px;}
.yd2{bottom:229.143240px;}
.y14b{bottom:229.203360px;}
.yf8{bottom:230.042880px;}
.y7f{bottom:234.720000px;}
.y23{bottom:234.747000px;}
.y11c{bottom:237.337920px;}
.yab{bottom:237.343680px;}
.y1ac{bottom:238.157820px;}
.y189{bottom:238.223520px;}
.y55{bottom:247.003200px;}
.y168{bottom:247.214880px;}
.yd1{bottom:248.041620px;}
.y14a{bottom:248.100480px;}
.yf7{bottom:248.942880px;}
.y22{bottom:250.407000px;}
.y7e{bottom:252.000000px;}
.y11b{bottom:256.235040px;}
.yaa{bottom:256.240800px;}
.y1ab{bottom:257.056200px;}
.y188{bottom:257.120640px;}
.y54{bottom:265.900320px;}
.y21{bottom:266.242500px;}
.yd0{bottom:266.940000px;}
.y149{bottom:266.997600px;}
.yf6{bottom:267.880320px;}
.y167{bottom:275.109120px;}
.y11a{bottom:275.132160px;}
.ya9{bottom:275.137920px;}
.y1aa{bottom:275.954580px;}
.y7d{bottom:275.965920px;}
.y187{bottom:276.017760px;}
.y20{bottom:281.902500px;}
.y53{bottom:284.797440px;}
.y148{bottom:285.894720px;}
.yf5{bottom:286.777440px;}
.y166{bottom:294.006240px;}
.y119{bottom:294.029280px;}
.ya8{bottom:294.035040px;}
.y1a9{bottom:294.852960px;}
.y7c{bottom:294.863040px;}
.y186{bottom:294.914880px;}
.y1f{bottom:297.738000px;}
.y52{bottom:303.694560px;}
.ycf{bottom:303.888960px;}
.y147{bottom:304.791840px;}
.yf4{bottom:305.674560px;}
.y165{bottom:312.903360px;}
.y118{bottom:312.926400px;}
.ya7{bottom:312.932160px;}
.y1e{bottom:313.398000px;}
.y1a8{bottom:313.751340px;}
.y7b{bottom:313.760160px;}
.y185{bottom:313.812000px;}
.y51{bottom:322.591680px;}
.yce{bottom:322.786080px;}
.y146{bottom:323.688960px;}
.yf3{bottom:324.571680px;}
.y1d{bottom:329.233500px;}
.y164{bottom:331.800480px;}
.y117{bottom:331.823520px;}
.ya6{bottom:331.829280px;}
.y1a7{bottom:332.649720px;}
.y7a{bottom:332.657280px;}
.y184{bottom:332.709120px;}
.y50{bottom:341.488800px;}
.ycd{bottom:341.683200px;}
.y145{bottom:342.586080px;}
.yf2{bottom:343.468800px;}
.y1c{bottom:344.893500px;}
.y163{bottom:350.697600px;}
.y116{bottom:350.720640px;}
.ya5{bottom:350.726400px;}
.y1a6{bottom:351.548100px;}
.y79{bottom:351.554400px;}
.y183{bottom:351.606240px;}
.y4f{bottom:360.385920px;}
.y1b{bottom:360.729000px;}
.y144{bottom:361.483200px;}
.yf1{bottom:362.365920px;}
.ycc{bottom:369.577440px;}
.y162{bottom:369.594720px;}
.y115{bottom:369.617760px;}
.ya4{bottom:369.623520px;}
.y1a5{bottom:370.446480px;}
.y78{bottom:370.451520px;}
.y182{bottom:370.503360px;}
.y1a{bottom:376.389000px;}
.y4e{bottom:379.283040px;}
.y143{bottom:380.380320px;}
.yf0{bottom:381.263040px;}
.ycb{bottom:388.474560px;}
.y161{bottom:388.491840px;}
.y114{bottom:388.514880px;}
.ya3{bottom:388.520640px;}
.y1a4{bottom:389.344860px;}
.y77{bottom:389.348640px;}
.y1c8{bottom:389.380500px;}
.y181{bottom:389.400480px;}
.y19{bottom:392.224500px;}
.y4d{bottom:398.180160px;}
.y142{bottom:399.277440px;}
.yef{bottom:400.160160px;}
.y1c7{bottom:406.660500px;}
.yca{bottom:407.371680px;}
.y160{bottom:407.388960px;}
.y113{bottom:407.412000px;}
.ya2{bottom:407.417760px;}
.y18{bottom:407.884500px;}
.y1a3{bottom:408.243240px;}
.y76{bottom:408.245760px;}
.y180{bottom:408.297600px;}
.y4c{bottom:417.077280px;}
.y141{bottom:418.174560px;}
.yee{bottom:419.057280px;}
.y17{bottom:423.720000px;}
.yc9{bottom:426.268800px;}
.y15f{bottom:426.286080px;}
.y112{bottom:426.309120px;}
.ya1{bottom:426.314880px;}
.y1a2{bottom:427.141620px;}
.y75{bottom:427.142880px;}
.y17f{bottom:427.194720px;}
.y1c6{bottom:428.436000px;}
.y4b{bottom:435.974400px;}
.y140{bottom:437.071680px;}
.yed{bottom:437.954400px;}
.yc8{bottom:445.165920px;}
.y15e{bottom:445.183200px;}
.y111{bottom:445.206240px;}
.ya0{bottom:445.212000px;}
.y1c5{bottom:445.716000px;}
.y1a1{bottom:446.040000px;}
.y74{bottom:446.042880px;}
.y17e{bottom:446.091840px;}
.y16{bottom:449.105760px;}
.y4a{bottom:454.871520px;}
.y13f{bottom:455.968800px;}
.yec{bottom:456.851520px;}
.yc7{bottom:464.063040px;}
.y15d{bottom:464.080320px;}
.y110{bottom:464.103360px;}
.y9f{bottom:464.109120px;}
.y73{bottom:464.957280px;}
.y17d{bottom:464.988960px;}
.y1c4{bottom:467.316000px;}
.y49{bottom:473.768640px;}
.y13e{bottom:474.865920px;}
.yeb{bottom:475.748640px;}
.y15{bottom:477.000000px;}
.yc6{bottom:482.960160px;}
.y15c{bottom:482.977440px;}
.y1a0{bottom:482.988810px;}
.y10f{bottom:483.000480px;}
.y9e{bottom:483.006240px;}
.y72{bottom:483.854400px;}
.y17c{bottom:483.886080px;}
.y1c3{bottom:489.091500px;}
.y48{bottom:492.665760px;}
.y13d{bottom:493.763040px;}
.yea{bottom:494.645760px;}
.y8{bottom:501.120000px;}
.yc5{bottom:501.857280px;}
.y15b{bottom:501.874560px;}
.y19f{bottom:501.885930px;}
.y10e{bottom:501.897600px;}
.y9d{bottom:501.903360px;}
.y71{bottom:502.751520px;}
.y17b{bottom:502.783200px;}
.y1c2{bottom:506.371500px;}
.y47{bottom:511.562880px;}
.y13c{bottom:512.660160px;}
.ye9{bottom:513.542880px;}
.yf{bottom:519.670440px;}
.yc4{bottom:520.754400px;}
.y15a{bottom:520.771680px;}
.y19e{bottom:520.783050px;}
.y10d{bottom:520.794720px;}
.y9c{bottom:520.800480px;}
.y70{bottom:521.648640px;}
.y17a{bottom:521.680320px;}
.y1c1{bottom:528.147000px;}
.y46{bottom:530.460000px;}
.y13b{bottom:531.557280px;}
.ye8{bottom:532.440000px;}
.ye{bottom:534.968100px;}
.yc3{bottom:539.651520px;}
.y159{bottom:539.668800px;}
.y19d{bottom:539.680170px;}
.y10c{bottom:539.691840px;}
.y9b{bottom:539.697600px;}
.y6f{bottom:540.545760px;}
.y179{bottom:540.577440px;}
.y1c0{bottom:549.922500px;}
.yd{bottom:550.444680px;}
.y13a{bottom:550.454400px;}
.y14{bottom:556.740720px;}
.y45{bottom:557.500500px;}
.yc2{bottom:558.548640px;}
.y158{bottom:558.565920px;}
.y19c{bottom:558.577290px;}
.y10b{bottom:558.588960px;}
.y9a{bottom:558.594720px;}
.y6e{bottom:559.442880px;}
.y178{bottom:559.474560px;}
.yc{bottom:565.742340px;}
.ye7{bottom:569.343240px;}
.y139{bottom:569.351520px;}
.y13{bottom:571.140360px;}
.y1bf{bottom:571.522500px;}
.y44{bottom:574.780500px;}
.yc1{bottom:577.445760px;}
.y157{bottom:577.463040px;}
.y19b{bottom:577.474410px;}
.y99{bottom:577.491840px;}
.y6d{bottom:578.345760px;}
.y177{bottom:578.371680px;}
.yb{bottom:581.040000px;}
.y12{bottom:585.540000px;}
.y10a{bottom:586.483200px;}
.ye6{bottom:588.241620px;}
.y138{bottom:588.248640px;}
.y1be{bottom:588.802500px;}
.y43{bottom:592.060500px;}
.yc0{bottom:596.342880px;}
.y156{bottom:596.360160px;}
.y19a{bottom:596.371530px;}
.y98{bottom:596.388960px;}
.ya{bottom:596.880000px;}
.y6c{bottom:597.242880px;}
.y176{bottom:597.268800px;}
.y109{bottom:605.380320px;}
.ye5{bottom:607.140000px;}
.y137{bottom:607.145760px;}
.y42{bottom:609.340500px;}
.y1bd{bottom:610.578000px;}
.y155{bottom:615.257280px;}
.y199{bottom:615.268650px;}
.ybf{bottom:615.280320px;}
.y97{bottom:615.286080px;}
.y175{bottom:616.165920px;}
.y6b{bottom:616.174560px;}
.y108{bottom:624.277440px;}
.y136{bottom:626.042880px;}
.y41{bottom:626.620500px;}
.y1bc{bottom:627.858000px;}
.y154{bottom:634.154400px;}
.y198{bottom:634.165770px;}
.ybe{bottom:634.177440px;}
.y96{bottom:634.183200px;}
.y174{bottom:635.063040px;}
.y6a{bottom:635.071680px;}
.y40{bottom:642.456000px;}
.y107{bottom:643.174560px;}
.ye4{bottom:644.063040px;}
.y135{bottom:644.940000px;}
.y1bb{bottom:645.138000px;}
.y197{bottom:653.062890px;}
.ybd{bottom:653.074560px;}
.y129{bottom:653.080320px;}
.y173{bottom:653.960160px;}
.y3f{bottom:658.116000px;}
.y153{bottom:662.048640px;}
.y106{bottom:662.071680px;}
.y95{bottom:662.077440px;}
.y1ba{bottom:662.418000px;}
.ye3{bottom:662.960160px;}
.y69{bottom:662.965920px;}
.y196{bottom:671.960010px;}
.ybc{bottom:671.971680px;}
.y128{bottom:671.977440px;}
.y172{bottom:672.857280px;}
.y3e{bottom:673.951500px;}
.y152{bottom:680.945760px;}
.y105{bottom:680.968800px;}
.y94{bottom:680.974560px;}
.y7{bottom:681.491520px;}
.y134{bottom:681.843090px;}
.ye2{bottom:681.857280px;}
.y68{bottom:681.863040px;}
.y1b9{bottom:684.018000px;}
.y3d{bottom:689.611500px;}
.y195{bottom:690.857130px;}
.ybb{bottom:690.868800px;}
.y127{bottom:690.874560px;}
.y171{bottom:691.754400px;}
.y151{bottom:699.842880px;}
.y104{bottom:699.865920px;}
.y93{bottom:699.871680px;}
.y133{bottom:700.741470px;}
.ye1{bottom:700.754400px;}
.y67{bottom:700.760160px;}
.y3c{bottom:705.447000px;}
.y1b8{bottom:705.793500px;}
.yba{bottom:709.765920px;}
.y126{bottom:709.771680px;}
.y170{bottom:710.651520px;}
.y194{bottom:718.751370px;}
.y103{bottom:718.763040px;}
.y92{bottom:718.768800px;}
.y132{bottom:719.639850px;}
.ye0{bottom:719.651520px;}
.y66{bottom:719.657280px;}
.y3b{bottom:721.107000px;}
.y6{bottom:722.345040px;}
.y1b7{bottom:723.073500px;}
.yb9{bottom:728.663040px;}
.y125{bottom:728.668800px;}
.y16f{bottom:729.548640px;}
.y3a{bottom:736.942500px;}
.y193{bottom:737.648490px;}
.y102{bottom:737.660160px;}
.y91{bottom:737.665920px;}
.ydf{bottom:738.548640px;}
.y65{bottom:738.554400px;}
.y1b6{bottom:744.849000px;}
.y5{bottom:745.380000px;}
.yb8{bottom:747.560160px;}
.y124{bottom:747.565920px;}
.y16e{bottom:748.445760px;}
.y39{bottom:752.602500px;}
.y192{bottom:756.545610px;}
.y131{bottom:756.551370px;}
.y101{bottom:756.557280px;}
.y90{bottom:756.563040px;}
.yde{bottom:757.445760px;}
.y64{bottom:757.451520px;}
.yb7{bottom:766.457280px;}
.y1b5{bottom:766.624500px;}
.y16d{bottom:767.342880px;}
.y38{bottom:768.438000px;}
.y191{bottom:775.442730px;}
.y130{bottom:775.448490px;}
.y100{bottom:775.454400px;}
.y8f{bottom:775.460160px;}
.ydd{bottom:776.342880px;}
.y63{bottom:776.348640px;}
.y37{bottom:784.098000px;}
.y16c{bottom:786.240000px;}
.y1b4{bottom:788.400000px;}
.y12f{bottom:794.345610px;}
.yb6{bottom:794.351520px;}
.y8e{bottom:794.357280px;}
.ydc{bottom:795.240000px;}
.y62{bottom:795.245760px;}
.y36{bottom:799.933500px;}
.y12e{bottom:813.242730px;}
.yb5{bottom:813.248640px;}
.y8d{bottom:813.254400px;}
.y61{bottom:814.142880px;}
.y35{bottom:815.593500px;}
.y16b{bottom:823.145220px;}
.y1b3{bottom:824.045700px;}
.y34{bottom:831.429000px;}
.yb4{bottom:832.145760px;}
.ydb{bottom:832.146480px;}
.y8c{bottom:832.151520px;}
.y60{bottom:833.040000px;}
.y16a{bottom:842.043600px;}
.y33{bottom:847.089000px;}
.yb3{bottom:851.042880px;}
.yda{bottom:851.044860px;}
.y8b{bottom:851.048640px;}
.y32{bottom:862.924500px;}
.y5f{bottom:869.943240px;}
.y8a{bottom:869.945760px;}
.y31{bottom:878.584500px;}
.y4{bottom:885.962730px;}
.y5e{bottom:888.841620px;}
.y89{bottom:888.842880px;}
.y30{bottom:894.420000px;}
.y3{bottom:899.463810px;}
.y5d{bottom:907.740000px;}
.y2f{bottom:910.080000px;}
.y2{bottom:913.139850px;}
.y2c{bottom:950.760000px;}
.h3{height:36.696797px;}
.h4{height:37.646016px;}
.hf{height:38.234531px;}
.hc{height:46.708945px;}
.ha{height:47.439141px;}
.h14{height:47.988281px;}
.hb{height:49.497539px;}
.h17{height:52.233398px;}
.h2{height:52.286133px;}
.h11{height:55.074727px;}
.he{height:57.863320px;}
.h9{height:58.767891px;}
.hd{height:61.349063px;}
.h16{height:61.349302px;}
.h15{height:61.359936px;}
.h12{height:61.382976px;}
.h13{height:61.394496px;}
.h7{height:64.072969px;}
.h6{height:65.140312px;}
.h5{height:65.787188px;}
.h10{height:69.714844px;}
.h8{height:110.520000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:133.198500px;}
.w2{width:393.480000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x7{left:47.880000px;}
.x1{left:97.740000px;}
.x9{left:98.820000px;}
.x4{left:102.405600px;}
.x2{left:106.380000px;}
.xf{left:110.160000px;}
.x6{left:114.120000px;}
.xc{left:118.980000px;}
.x10{left:140.400000px;}
.x8{left:156.780000px;}
.x12{left:168.512700px;}
.x3{left:312.104880px;}
.x11{left:313.740000px;}
.xe{left:376.200720px;}
.xd{left:401.220000px;}
.xa{left:491.220000px;}
.xb{left:499.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.536960pt;}
.v1{vertical-align:20.997120pt;}
.ls5a{letter-spacing:-1.408000pt;}
.ls37{letter-spacing:-1.140480pt;}
.ls41{letter-spacing:-0.901120pt;}
.ls29{letter-spacing:-0.788480pt;}
.ls3d{letter-spacing:-0.732160pt;}
.ls51{letter-spacing:-0.675840pt;}
.ls4e{letter-spacing:-0.619520pt;}
.ls3c{letter-spacing:-0.563200pt;}
.lsf{letter-spacing:-0.557440pt;}
.lse{letter-spacing:-0.514560pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls42{letter-spacing:-0.450560pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls1a{letter-spacing:-0.336000pt;}
.ls23{letter-spacing:-0.322560pt;}
.ls46{letter-spacing:-0.318080pt;}
.ls18{letter-spacing:-0.288000pt;}
.ls3e{letter-spacing:-0.281600pt;}
.ls44{letter-spacing:-0.272640pt;}
.ls60{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.235520pt;}
.ls26{letter-spacing:-0.225280pt;}
.ls3b{letter-spacing:-0.202240pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.181760pt;}
.ls13{letter-spacing:-0.171520pt;}
.ls3f{letter-spacing:-0.168960pt;}
.ls38{letter-spacing:-0.151680pt;}
.ls52{letter-spacing:-0.147200pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls40{letter-spacing:-0.112640pt;}
.ls39{letter-spacing:-0.101120pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.056320pt;}
.ls45{letter-spacing:-0.045440pt;}
.lsa{letter-spacing:-0.034560pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013632pt;}
.ls12{letter-spacing:0.045440pt;}
.ls16{letter-spacing:0.048000pt;}
.ls2b{letter-spacing:0.050560pt;}
.ls21{letter-spacing:0.056320pt;}
.ls0{letter-spacing:0.062400pt;}
.ls5d{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.120960pt;}
.ls14{letter-spacing:0.128640pt;}
.ls57{letter-spacing:0.135168pt;}
.ls53{letter-spacing:0.136320pt;}
.ls1e{letter-spacing:0.138240pt;}
.ls3a{letter-spacing:0.151680pt;}
.ls43{letter-spacing:0.168960pt;}
.ls9{letter-spacing:0.172800pt;}
.lsd{letter-spacing:0.176640pt;}
.ls2a{letter-spacing:0.190080pt;}
.ls6{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.201600pt;}
.ls58{letter-spacing:0.202240pt;}
.ls2{letter-spacing:0.207360pt;}
.ls25{letter-spacing:0.225280pt;}
.ls5b{letter-spacing:0.225493pt;}
.ls2d{letter-spacing:0.226560pt;}
.ls1{letter-spacing:0.241920pt;}
.ls4d{letter-spacing:0.252800pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.259200pt;}
.ls22{letter-spacing:0.265600pt;}
.ls4f{letter-spacing:0.281600pt;}
.ls5{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.294400pt;}
.ls10{letter-spacing:0.318080pt;}
.ls19{letter-spacing:0.336000pt;}
.ls28{letter-spacing:0.337920pt;}
.ls32{letter-spacing:0.563200pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.758400pt;}
.ls55{letter-spacing:1.132032pt;}
.ls47{letter-spacing:1.182720pt;}
.ls4{letter-spacing:1.584000pt;}
.ls48{letter-spacing:1.790976pt;}
.ls54{letter-spacing:1.819136pt;}
.ls2c{letter-spacing:1.858560pt;}
.ls4b{letter-spacing:2.478080pt;}
.ls5e{letter-spacing:2.832000pt;}
.ls4c{letter-spacing:2.908160pt;}
.ls31{letter-spacing:3.153920pt;}
.ls33{letter-spacing:3.544320pt;}
.ls49{letter-spacing:3.705856pt;}
.ls20{letter-spacing:4.392960pt;}
.ls50{letter-spacing:5.688320pt;}
.ls4a{letter-spacing:5.966080pt;}
.ls2e{letter-spacing:6.251520pt;}
.ls30{letter-spacing:6.302208pt;}
.ls2f{letter-spacing:6.307840pt;}
.ls5c{letter-spacing:6.672000pt;}
.ls59{letter-spacing:6.764032pt;}
.ls5f{letter-spacing:8.592000pt;}
.ls34{letter-spacing:9.315200pt;}
.ws3c{word-spacing:-15.769600pt;}
.wsd5{word-spacing:-15.656960pt;}
.ws6b{word-spacing:-15.600640pt;}
.wsa9{word-spacing:-15.488000pt;}
.ws6f{word-spacing:-15.431680pt;}
.ws6d{word-spacing:-15.375360pt;}
.wsb7{word-spacing:-15.319040pt;}
.ws6e{word-spacing:-15.262720pt;}
.ws3e{word-spacing:-15.206400pt;}
.ws6a{word-spacing:-15.150080pt;}
.ws69{word-spacing:-14.868480pt;}
.ws3a{word-spacing:-14.820480pt;}
.wse7{word-spacing:-14.755840pt;}
.ws6c{word-spacing:-14.699520pt;}
.ws3d{word-spacing:-14.643200pt;}
.wsf5{word-spacing:-14.530560pt;}
.wsc7{word-spacing:-14.106240pt;}
.ws67{word-spacing:-13.904000pt;}
.ws68{word-spacing:-13.752320pt;}
.wsb8{word-spacing:-13.701760pt;}
.wsf9{word-spacing:-13.651200pt;}
.wsd{word-spacing:-13.488000pt;}
.ws109{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.200000pt;}
.wsb{word-spacing:-13.152000pt;}
.ws0{word-spacing:-13.056000pt;}
.wsc{word-spacing:-13.008000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.949760pt;}
.ws3b{word-spacing:-12.864000pt;}
.ws5{word-spacing:-12.768640pt;}
.wse{word-spacing:-12.720000pt;}
.ws8{word-spacing:-12.496000pt;}
.ws7{word-spacing:-12.464192pt;}
.ws6{word-spacing:-12.450560pt;}
.wsb9{word-spacing:-12.405120pt;}
.ws70{word-spacing:-12.268800pt;}
.ws66{word-spacing:-11.249280pt;}
.ws1{word-spacing:-9.711360pt;}
.ws2{word-spacing:-9.469440pt;}
.wsc8{word-spacing:-8.066560pt;}
.wsf0{word-spacing:-7.919360pt;}
.wscf{word-spacing:-4.111360pt;}
.wsd0{word-spacing:-3.942400pt;}
.wse1{word-spacing:-3.829760pt;}
.wse0{word-spacing:-3.717120pt;}
.ws64{word-spacing:-3.491840pt;}
.ws63{word-spacing:-3.322880pt;}
.ws4a{word-spacing:-3.264000pt;}
.ws55{word-spacing:-3.210240pt;}
.ws2f{word-spacing:-3.120000pt;}
.wsad{word-spacing:-3.041280pt;}
.ws101{word-spacing:-3.033600pt;}
.wsb2{word-spacing:-2.984960pt;}
.ws54{word-spacing:-2.872320pt;}
.ws49{word-spacing:-2.784000pt;}
.wsd2{word-spacing:-2.703360pt;}
.wsbf{word-spacing:-2.647040pt;}
.ws30{word-spacing:-2.592000pt;}
.ws106{word-spacing:-2.578560pt;}
.ws107{word-spacing:-2.528000pt;}
.ws7b{word-spacing:-2.477440pt;}
.ws22{word-spacing:-2.448000pt;}
.wsbd{word-spacing:-2.421760pt;}
.ws79{word-spacing:-2.376320pt;}
.wsf8{word-spacing:-2.226560pt;}
.ws80{word-spacing:-2.196480pt;}
.ws7a{word-spacing:-2.174080pt;}
.ws111{word-spacing:-2.064000pt;}
.wsf7{word-spacing:-2.044800pt;}
.ws82{word-spacing:-2.027520pt;}
.ws42{word-spacing:-1.968000pt;}
.wsfe{word-spacing:-1.914880pt;}
.wsf3{word-spacing:-1.863040pt;}
.ws1e{word-spacing:-1.824000pt;}
.ws94{word-spacing:-1.745920pt;}
.wsc1{word-spacing:-1.719040pt;}
.ws57{word-spacing:-1.576960pt;}
.ws1f{word-spacing:-1.488000pt;}
.wsae{word-spacing:-1.408000pt;}
.ws4d{word-spacing:-1.344000pt;}
.wsf6{word-spacing:-1.295360pt;}
.wsc5{word-spacing:-1.226880pt;}
.ws26{word-spacing:-1.200000pt;}
.wsbb{word-spacing:-1.182720pt;}
.ws58{word-spacing:-1.126400pt;}
.wscd{word-spacing:-1.112320pt;}
.wsfd{word-spacing:-1.070080pt;}
.ws25{word-spacing:-1.008000pt;}
.ws52{word-spacing:-0.957440pt;}
.ws73{word-spacing:-0.927360pt;}
.ws112{word-spacing:-0.912000pt;}
.wsc6{word-spacing:-0.908800pt;}
.ws48{word-spacing:-0.864000pt;}
.wsf2{word-spacing:-0.863360pt;}
.ws23{word-spacing:-0.816000pt;}
.ws56{word-spacing:-0.788480pt;}
.ws12{word-spacing:-0.760320pt;}
.ws24{word-spacing:-0.720000pt;}
.wsef{word-spacing:-0.675840pt;}
.ws113{word-spacing:-0.672000pt;}
.ws38{word-spacing:-0.624000pt;}
.wsfa{word-spacing:-0.606720pt;}
.ws18{word-spacing:-0.590720pt;}
.wsde{word-spacing:-0.563200pt;}
.ws31{word-spacing:-0.528000pt;}
.ws62{word-spacing:-0.506880pt;}
.wsfb{word-spacing:-0.455040pt;}
.wsf4{word-spacing:-0.408960pt;}
.wsb4{word-spacing:-0.394240pt;}
.ws40{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.353280pt;}
.ws1d{word-spacing:-0.343040pt;}
.ws88{word-spacing:-0.337920pt;}
.ws37{word-spacing:-0.336000pt;}
.ws1b{word-spacing:-0.318080pt;}
.ws16{word-spacing:-0.294400pt;}
.ws74{word-spacing:-0.282240pt;}
.ws5d{word-spacing:-0.281600pt;}
.ws19{word-spacing:-0.272640pt;}
.ws75{word-spacing:-0.256000pt;}
.wscb{word-spacing:-0.252800pt;}
.ws11b{word-spacing:-0.227200pt;}
.ws10{word-spacing:-0.207360pt;}
.ws39{word-spacing:-0.192000pt;}
.ws77{word-spacing:-0.172800pt;}
.wsdd{word-spacing:-0.168960pt;}
.ws71{word-spacing:-0.161280pt;}
.wsb3{word-spacing:-0.112640pt;}
.ws14{word-spacing:-0.103680pt;}
.ws1a{word-spacing:-0.090880pt;}
.wsdc{word-spacing:-0.056320pt;}
.ws36{word-spacing:-0.048000pt;}
.ws96{word-spacing:-0.045440pt;}
.ws1c{word-spacing:-0.042880pt;}
.wsf{word-spacing:0.000000pt;}
.ws11{word-spacing:0.034560pt;}
.wsa0{word-spacing:0.045440pt;}
.wseb{word-spacing:0.056320pt;}
.ws32{word-spacing:0.096000pt;}
.ws85{word-spacing:0.112640pt;}
.ws13{word-spacing:0.138240pt;}
.ws10b{word-spacing:0.144000pt;}
.ws41{word-spacing:0.161280pt;}
.ws61{word-spacing:0.168960pt;}
.wsc4{word-spacing:0.202240pt;}
.ws50{word-spacing:0.225280pt;}
.ws15{word-spacing:0.235520pt;}
.ws3f{word-spacing:0.256000pt;}
.ws9c{word-spacing:0.272640pt;}
.ws10a{word-spacing:0.288000pt;}
.ws59{word-spacing:0.337920pt;}
.wsa1{word-spacing:0.363520pt;}
.ws76{word-spacing:0.384000pt;}
.wsea{word-spacing:0.394240pt;}
.wsce{word-spacing:0.404480pt;}
.ws10e{word-spacing:0.432000pt;}
.ws8c{word-spacing:0.450560pt;}
.ws7c{word-spacing:0.455040pt;}
.ws118{word-spacing:0.480000pt;}
.ws72{word-spacing:0.483840pt;}
.ws65{word-spacing:0.506880pt;}
.ws17{word-spacing:0.514560pt;}
.ws117{word-spacing:0.528000pt;}
.ws29{word-spacing:0.576000pt;}
.wsec{word-spacing:0.619520pt;}
.ws33{word-spacing:0.624000pt;}
.wsfc{word-spacing:0.675840pt;}
.ws2e{word-spacing:0.720000pt;}
.wsaa{word-spacing:0.732160pt;}
.ws95{word-spacing:0.788480pt;}
.ws8a{word-spacing:0.901120pt;}
.ws53{word-spacing:1.013760pt;}
.ws2d{word-spacing:1.056000pt;}
.ws93{word-spacing:1.070080pt;}
.ws114{word-spacing:1.104000pt;}
.wsab{word-spacing:1.182720pt;}
.wsd8{word-spacing:1.295360pt;}
.wsa4{word-spacing:1.317760pt;}
.ws21{word-spacing:1.392000pt;}
.ws92{word-spacing:1.408000pt;}
.ws7d{word-spacing:1.464320pt;}
.wsc2{word-spacing:1.466240pt;}
.wsb1{word-spacing:1.520640pt;}
.ws2a{word-spacing:1.584000pt;}
.ws5f{word-spacing:1.633280pt;}
.ws78{word-spacing:1.668480pt;}
.wsa2{word-spacing:1.681280pt;}
.ws2c{word-spacing:1.728000pt;}
.ws5e{word-spacing:1.802240pt;}
.wsa3{word-spacing:1.817600pt;}
.ws43{word-spacing:1.872000pt;}
.ws2b{word-spacing:1.920000pt;}
.wsa5{word-spacing:1.953920pt;}
.ws44{word-spacing:2.016000pt;}
.ws83{word-spacing:2.027520pt;}
.ws7e{word-spacing:2.083840pt;}
.wsc9{word-spacing:2.123520pt;}
.ws81{word-spacing:2.252800pt;}
.ws9b{word-spacing:2.272000pt;}
.ws9a{word-spacing:2.317440pt;}
.ws60{word-spacing:2.421760pt;}
.wsd4{word-spacing:2.453760pt;}
.wse8{word-spacing:2.478080pt;}
.ws105{word-spacing:2.528000pt;}
.wsd3{word-spacing:2.544640pt;}
.ws7f{word-spacing:2.590720pt;}
.ws4e{word-spacing:2.640000pt;}
.wse9{word-spacing:2.647040pt;}
.ws5c{word-spacing:2.703360pt;}
.ws104{word-spacing:2.730240pt;}
.ws86{word-spacing:2.759680pt;}
.ws116{word-spacing:2.832000pt;}
.ws98{word-spacing:2.908160pt;}
.ws87{word-spacing:2.928640pt;}
.ws99{word-spacing:2.953600pt;}
.ws115{word-spacing:3.024000pt;}
.ws5a{word-spacing:3.097600pt;}
.ws97{word-spacing:3.180800pt;}
.ws9f{word-spacing:3.226240pt;}
.ws20{word-spacing:3.312000pt;}
.wsd6{word-spacing:3.322880pt;}
.wsbc{word-spacing:3.379200pt;}
.wsf1{word-spacing:3.387520pt;}
.ws9d{word-spacing:3.498880pt;}
.ws9e{word-spacing:3.544320pt;}
.ws84{word-spacing:3.548160pt;}
.ws103{word-spacing:3.589760pt;}
.wsc0{word-spacing:3.604480pt;}
.wsed{word-spacing:3.717120pt;}
.wscc{word-spacing:3.773440pt;}
.ws47{word-spacing:3.792000pt;}
.ws46{word-spacing:3.936000pt;}
.wsbe{word-spacing:3.942400pt;}
.wsac{word-spacing:3.998720pt;}
.wsca{word-spacing:4.044800pt;}
.ws110{word-spacing:4.128000pt;}
.ws4f{word-spacing:4.167680pt;}
.ws10f{word-spacing:4.320000pt;}
.wse2{word-spacing:4.336640pt;}
.ws28{word-spacing:4.560000pt;}
.ws89{word-spacing:4.618240pt;}
.ws108{word-spacing:4.651520pt;}
.wsdb{word-spacing:4.787200pt;}
.ws51{word-spacing:4.843520pt;}
.ws27{word-spacing:4.896000pt;}
.wsda{word-spacing:5.012480pt;}
.ws45{word-spacing:5.232000pt;}
.wse5{word-spacing:5.294080pt;}
.ws102{word-spacing:5.308800pt;}
.wsd1{word-spacing:5.463040pt;}
.ws100{word-spacing:5.519360pt;}
.wsb5{word-spacing:5.632000pt;}
.ws35{word-spacing:5.712000pt;}
.wsdf{word-spacing:5.744640pt;}
.ws10d{word-spacing:5.760000pt;}
.ws34{word-spacing:5.856000pt;}
.wsb0{word-spacing:5.913600pt;}
.wsc3{word-spacing:5.966080pt;}
.wsba{word-spacing:6.082560pt;}
.wsd9{word-spacing:6.251520pt;}
.ws4c{word-spacing:6.336000pt;}
.ws8f{word-spacing:6.364160pt;}
.ws8b{word-spacing:6.476800pt;}
.ws4b{word-spacing:6.480000pt;}
.ws8e{word-spacing:6.533120pt;}
.ws10c{word-spacing:6.672000pt;}
.ws5b{word-spacing:6.758400pt;}
.wse6{word-spacing:6.927360pt;}
.ws90{word-spacing:7.096320pt;}
.ws91{word-spacing:7.152640pt;}
.ws8d{word-spacing:7.208960pt;}
.wse3{word-spacing:7.377920pt;}
.wsee{word-spacing:8.222720pt;}
.ws119{word-spacing:8.400000pt;}
.wse4{word-spacing:8.504320pt;}
.ws11a{word-spacing:8.592000pt;}
.wsd7{word-spacing:8.842240pt;}
.wsa6{word-spacing:8.997120pt;}
.wsaf{word-spacing:9.123840pt;}
.wsa7{word-spacing:9.315200pt;}
.wsa8{word-spacing:9.496960pt;}
.wsff{word-spacing:20.162560pt;}
.wsb6{word-spacing:26.583040pt;}
._9{margin-left:-4.251136pt;}
._7{margin-left:-3.171520pt;}
._8{margin-left:-2.176832pt;}
._1{margin-left:-1.185408pt;}
._0{width:0.897600pt;}
._2{width:2.256000pt;}
._4{width:3.289088pt;}
._3{width:5.085760pt;}
._5{width:6.634240pt;}
._a{width:7.749888pt;}
._c{width:20.241600pt;}
._6{width:26.309760pt;}
._d{width:27.264000pt;}
._b{width:192.062165pt;}
.fsa{font-size:29.440000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.880000pt;}
.y2e{bottom:39.841920pt;}
.y1{bottom:40.800000pt;}
.y2d{bottom:50.400000pt;}
.y9{bottom:85.120000pt;}
.y1b2{bottom:85.920000pt;}
.y123{bottom:85.922080pt;}
.y150{bottom:85.924160pt;}
.yd9{bottom:85.927200pt;}
.yff{bottom:85.929280pt;}
.y88{bottom:85.940640pt;}
.y11{bottom:88.000000pt;}
.yb2{bottom:93.390080pt;}
.y5c{bottom:93.978880pt;}
.y190{bottom:94.172160pt;}
.y2b{bottom:95.240000pt;}
.y122{bottom:99.520000pt;}
.y14f{bottom:99.522080pt;}
.yd8{bottom:99.525120pt;}
.yfe{bottom:99.527200pt;}
.y87{bottom:99.538560pt;}
.y1b1{bottom:101.120000pt;}
.y12d{bottom:102.190080pt;}
.yb1{bottom:110.187520pt;}
.y2a{bottom:110.600000pt;}
.y18f{bottom:110.969600pt;}
.y14e{bottom:113.120000pt;}
.yd7{bottom:113.123040pt;}
.yfd{bottom:113.125120pt;}
.y86{bottom:113.136480pt;}
.y121{bottom:114.720000pt;}
.y5b{bottom:118.773760pt;}
.y12c{bottom:118.987520pt;}
.y29{bottom:124.676000pt;}
.yd6{bottom:126.880000pt;}
.yfc{bottom:126.882080pt;}
.y85{bottom:126.893440pt;}
.yb0{bottom:126.984960pt;}
.y18e{bottom:127.767040pt;}
.y14d{bottom:128.480000pt;}
.y5a{bottom:135.571200pt;}
.y120{bottom:135.779840pt;}
.y12b{bottom:135.784960pt;}
.y28{bottom:138.596000pt;}
.yfb{bottom:140.480000pt;}
.y84{bottom:140.491360pt;}
.yd5{bottom:142.080000pt;}
.yaf{bottom:143.782400pt;}
.y1b0{bottom:144.501600pt;}
.y18d{bottom:144.564480pt;}
.y59{bottom:152.368640pt;}
.y11f{bottom:152.577280pt;}
.y12a{bottom:152.582400pt;}
.y27{bottom:152.672000pt;}
.y83{bottom:154.089280pt;}
.yfa{bottom:155.679867pt;}
.yae{bottom:160.579840pt;}
.y1af{bottom:161.300160pt;}
.y18c{bottom:161.361920pt;}
.y26{bottom:166.592000pt;}
.y82{bottom:167.846240pt;}
.y58{bottom:169.166080pt;}
.y11e{bottom:169.374720pt;}
.yd4{bottom:170.085760pt;}
.yad{bottom:177.377280pt;}
.y1ae{bottom:178.098720pt;}
.y18b{bottom:178.159360pt;}
.y25{bottom:180.668000pt;}
.y81{bottom:181.444160pt;}
.y57{bottom:185.963520pt;}
.y11d{bottom:186.172160pt;}
.yd3{bottom:186.884320pt;}
.y14c{bottom:186.938880pt;}
.yf9{bottom:187.685120pt;}
.yac{bottom:194.174720pt;}
.y24{bottom:194.588000pt;}
.y1ad{bottom:194.897280pt;}
.y18a{bottom:194.956800pt;}
.y80{bottom:195.042080pt;}
.y56{bottom:202.760960pt;}
.y169{bottom:202.949120pt;}
.yd2{bottom:203.682880pt;}
.y14b{bottom:203.736320pt;}
.yf8{bottom:204.482560pt;}
.y7f{bottom:208.640000pt;}
.y23{bottom:208.664000pt;}
.y11c{bottom:210.967040pt;}
.yab{bottom:210.972160pt;}
.y1ac{bottom:211.695840pt;}
.y189{bottom:211.754240pt;}
.y55{bottom:219.558400pt;}
.y168{bottom:219.746560pt;}
.yd1{bottom:220.481440pt;}
.y14a{bottom:220.533760pt;}
.yf7{bottom:221.282560pt;}
.y22{bottom:222.584000pt;}
.y7e{bottom:224.000000pt;}
.y11b{bottom:227.764480pt;}
.yaa{bottom:227.769600pt;}
.y1ab{bottom:228.494400pt;}
.y188{bottom:228.551680pt;}
.y54{bottom:236.355840pt;}
.y21{bottom:236.660000pt;}
.yd0{bottom:237.280000pt;}
.y149{bottom:237.331200pt;}
.yf6{bottom:238.115840pt;}
.y167{bottom:244.541440pt;}
.y11a{bottom:244.561920pt;}
.ya9{bottom:244.567040pt;}
.y1aa{bottom:245.292960pt;}
.y7d{bottom:245.303040pt;}
.y187{bottom:245.349120pt;}
.y20{bottom:250.580000pt;}
.y53{bottom:253.153280pt;}
.y148{bottom:254.128640pt;}
.yf5{bottom:254.913280pt;}
.y166{bottom:261.338880pt;}
.y119{bottom:261.359360pt;}
.ya8{bottom:261.364480pt;}
.y1a9{bottom:262.091520pt;}
.y7c{bottom:262.100480pt;}
.y186{bottom:262.146560pt;}
.y1f{bottom:264.656000pt;}
.y52{bottom:269.950720pt;}
.ycf{bottom:270.123520pt;}
.y147{bottom:270.926080pt;}
.yf4{bottom:271.710720pt;}
.y165{bottom:278.136320pt;}
.y118{bottom:278.156800pt;}
.ya7{bottom:278.161920pt;}
.y1e{bottom:278.576000pt;}
.y1a8{bottom:278.890080pt;}
.y7b{bottom:278.897920pt;}
.y185{bottom:278.944000pt;}
.y51{bottom:286.748160pt;}
.yce{bottom:286.920960pt;}
.y146{bottom:287.723520pt;}
.yf3{bottom:288.508160pt;}
.y1d{bottom:292.652000pt;}
.y164{bottom:294.933760pt;}
.y117{bottom:294.954240pt;}
.ya6{bottom:294.959360pt;}
.y1a7{bottom:295.688640pt;}
.y7a{bottom:295.695360pt;}
.y184{bottom:295.741440pt;}
.y50{bottom:303.545600pt;}
.ycd{bottom:303.718400pt;}
.y145{bottom:304.520960pt;}
.yf2{bottom:305.305600pt;}
.y1c{bottom:306.572000pt;}
.y163{bottom:311.731200pt;}
.y116{bottom:311.751680pt;}
.ya5{bottom:311.756800pt;}
.y1a6{bottom:312.487200pt;}
.y79{bottom:312.492800pt;}
.y183{bottom:312.538880pt;}
.y4f{bottom:320.343040pt;}
.y1b{bottom:320.648000pt;}
.y144{bottom:321.318400pt;}
.yf1{bottom:322.103040pt;}
.ycc{bottom:328.513280pt;}
.y162{bottom:328.528640pt;}
.y115{bottom:328.549120pt;}
.ya4{bottom:328.554240pt;}
.y1a5{bottom:329.285760pt;}
.y78{bottom:329.290240pt;}
.y182{bottom:329.336320pt;}
.y1a{bottom:334.568000pt;}
.y4e{bottom:337.140480pt;}
.y143{bottom:338.115840pt;}
.yf0{bottom:338.900480pt;}
.ycb{bottom:345.310720pt;}
.y161{bottom:345.326080pt;}
.y114{bottom:345.346560pt;}
.ya3{bottom:345.351680pt;}
.y1a4{bottom:346.084320pt;}
.y77{bottom:346.087680pt;}
.y1c8{bottom:346.116000pt;}
.y181{bottom:346.133760pt;}
.y19{bottom:348.644000pt;}
.y4d{bottom:353.937920pt;}
.y142{bottom:354.913280pt;}
.yef{bottom:355.697920pt;}
.y1c7{bottom:361.476000pt;}
.yca{bottom:362.108160pt;}
.y160{bottom:362.123520pt;}
.y113{bottom:362.144000pt;}
.ya2{bottom:362.149120pt;}
.y18{bottom:362.564000pt;}
.y1a3{bottom:362.882880pt;}
.y76{bottom:362.885120pt;}
.y180{bottom:362.931200pt;}
.y4c{bottom:370.735360pt;}
.y141{bottom:371.710720pt;}
.yee{bottom:372.495360pt;}
.y17{bottom:376.640000pt;}
.yc9{bottom:378.905600pt;}
.y15f{bottom:378.920960pt;}
.y112{bottom:378.941440pt;}
.ya1{bottom:378.946560pt;}
.y1a2{bottom:379.681440pt;}
.y75{bottom:379.682560pt;}
.y17f{bottom:379.728640pt;}
.y1c6{bottom:380.832000pt;}
.y4b{bottom:387.532800pt;}
.y140{bottom:388.508160pt;}
.yed{bottom:389.292800pt;}
.yc8{bottom:395.703040pt;}
.y15e{bottom:395.718400pt;}
.y111{bottom:395.738880pt;}
.ya0{bottom:395.744000pt;}
.y1c5{bottom:396.192000pt;}
.y1a1{bottom:396.480000pt;}
.y74{bottom:396.482560pt;}
.y17e{bottom:396.526080pt;}
.y16{bottom:399.205120pt;}
.y4a{bottom:404.330240pt;}
.y13f{bottom:405.305600pt;}
.yec{bottom:406.090240pt;}
.yc7{bottom:412.500480pt;}
.y15d{bottom:412.515840pt;}
.y110{bottom:412.536320pt;}
.y9f{bottom:412.541440pt;}
.y73{bottom:413.295360pt;}
.y17d{bottom:413.323520pt;}
.y1c4{bottom:415.392000pt;}
.y49{bottom:421.127680pt;}
.y13e{bottom:422.103040pt;}
.yeb{bottom:422.887680pt;}
.y15{bottom:424.000000pt;}
.yc6{bottom:429.297920pt;}
.y15c{bottom:429.313280pt;}
.y1a0{bottom:429.323387pt;}
.y10f{bottom:429.333760pt;}
.y9e{bottom:429.338880pt;}
.y72{bottom:430.092800pt;}
.y17c{bottom:430.120960pt;}
.y1c3{bottom:434.748000pt;}
.y48{bottom:437.925120pt;}
.y13d{bottom:438.900480pt;}
.yea{bottom:439.685120pt;}
.y8{bottom:445.440000pt;}
.yc5{bottom:446.095360pt;}
.y15b{bottom:446.110720pt;}
.y19f{bottom:446.120827pt;}
.y10e{bottom:446.131200pt;}
.y9d{bottom:446.136320pt;}
.y71{bottom:446.890240pt;}
.y17b{bottom:446.918400pt;}
.y1c2{bottom:450.108000pt;}
.y47{bottom:454.722560pt;}
.y13c{bottom:455.697920pt;}
.ye9{bottom:456.482560pt;}
.yf{bottom:461.929280pt;}
.yc4{bottom:462.892800pt;}
.y15a{bottom:462.908160pt;}
.y19e{bottom:462.918267pt;}
.y10d{bottom:462.928640pt;}
.y9c{bottom:462.933760pt;}
.y70{bottom:463.687680pt;}
.y17a{bottom:463.715840pt;}
.y1c1{bottom:469.464000pt;}
.y46{bottom:471.520000pt;}
.y13b{bottom:472.495360pt;}
.ye8{bottom:473.280000pt;}
.ye{bottom:475.527200pt;}
.yc3{bottom:479.690240pt;}
.y159{bottom:479.705600pt;}
.y19d{bottom:479.715707pt;}
.y10c{bottom:479.726080pt;}
.y9b{bottom:479.731200pt;}
.y6f{bottom:480.485120pt;}
.y179{bottom:480.513280pt;}
.y1c0{bottom:488.820000pt;}
.yd{bottom:489.284160pt;}
.y13a{bottom:489.292800pt;}
.y14{bottom:494.880640pt;}
.y45{bottom:495.556000pt;}
.yc2{bottom:496.487680pt;}
.y158{bottom:496.503040pt;}
.y19c{bottom:496.513147pt;}
.y10b{bottom:496.523520pt;}
.y9a{bottom:496.528640pt;}
.y6e{bottom:497.282560pt;}
.y178{bottom:497.310720pt;}
.yc{bottom:502.882080pt;}
.ye7{bottom:506.082880pt;}
.y139{bottom:506.090240pt;}
.y13{bottom:507.680320pt;}
.y1bf{bottom:508.020000pt;}
.y44{bottom:510.916000pt;}
.yc1{bottom:513.285120pt;}
.y157{bottom:513.300480pt;}
.y19b{bottom:513.310587pt;}
.y99{bottom:513.326080pt;}
.y6d{bottom:514.085120pt;}
.y177{bottom:514.108160pt;}
.yb{bottom:516.480000pt;}
.y12{bottom:520.480000pt;}
.y10a{bottom:521.318400pt;}
.ye6{bottom:522.881440pt;}
.y138{bottom:522.887680pt;}
.y1be{bottom:523.380000pt;}
.y43{bottom:526.276000pt;}
.yc0{bottom:530.082560pt;}
.y156{bottom:530.097920pt;}
.y19a{bottom:530.108027pt;}
.y98{bottom:530.123520pt;}
.ya{bottom:530.560000pt;}
.y6c{bottom:530.882560pt;}
.y176{bottom:530.905600pt;}
.y109{bottom:538.115840pt;}
.ye5{bottom:539.680000pt;}
.y137{bottom:539.685120pt;}
.y42{bottom:541.636000pt;}
.y1bd{bottom:542.736000pt;}
.y155{bottom:546.895360pt;}
.y199{bottom:546.905467pt;}
.ybf{bottom:546.915840pt;}
.y97{bottom:546.920960pt;}
.y175{bottom:547.703040pt;}
.y6b{bottom:547.710720pt;}
.y108{bottom:554.913280pt;}
.y136{bottom:556.482560pt;}
.y41{bottom:556.996000pt;}
.y1bc{bottom:558.096000pt;}
.y154{bottom:563.692800pt;}
.y198{bottom:563.702907pt;}
.ybe{bottom:563.713280pt;}
.y96{bottom:563.718400pt;}
.y174{bottom:564.500480pt;}
.y6a{bottom:564.508160pt;}
.y40{bottom:571.072000pt;}
.y107{bottom:571.710720pt;}
.ye4{bottom:572.500480pt;}
.y135{bottom:573.280000pt;}
.y1bb{bottom:573.456000pt;}
.y197{bottom:580.500347pt;}
.ybd{bottom:580.510720pt;}
.y129{bottom:580.515840pt;}
.y173{bottom:581.297920pt;}
.y3f{bottom:584.992000pt;}
.y153{bottom:588.487680pt;}
.y106{bottom:588.508160pt;}
.y95{bottom:588.513280pt;}
.y1ba{bottom:588.816000pt;}
.ye3{bottom:589.297920pt;}
.y69{bottom:589.303040pt;}
.y196{bottom:597.297787pt;}
.ybc{bottom:597.308160pt;}
.y128{bottom:597.313280pt;}
.y172{bottom:598.095360pt;}
.y3e{bottom:599.068000pt;}
.y152{bottom:605.285120pt;}
.y105{bottom:605.305600pt;}
.y94{bottom:605.310720pt;}
.y7{bottom:605.770240pt;}
.y134{bottom:606.082747pt;}
.ye2{bottom:606.095360pt;}
.y68{bottom:606.100480pt;}
.y1b9{bottom:608.016000pt;}
.y3d{bottom:612.988000pt;}
.y195{bottom:614.095227pt;}
.ybb{bottom:614.105600pt;}
.y127{bottom:614.110720pt;}
.y171{bottom:614.892800pt;}
.y151{bottom:622.082560pt;}
.y104{bottom:622.103040pt;}
.y93{bottom:622.108160pt;}
.y133{bottom:622.881307pt;}
.ye1{bottom:622.892800pt;}
.y67{bottom:622.897920pt;}
.y3c{bottom:627.064000pt;}
.y1b8{bottom:627.372000pt;}
.yba{bottom:630.903040pt;}
.y126{bottom:630.908160pt;}
.y170{bottom:631.690240pt;}
.y194{bottom:638.890107pt;}
.y103{bottom:638.900480pt;}
.y92{bottom:638.905600pt;}
.y132{bottom:639.679867pt;}
.ye0{bottom:639.690240pt;}
.y66{bottom:639.695360pt;}
.y3b{bottom:640.984000pt;}
.y6{bottom:642.084480pt;}
.y1b7{bottom:642.732000pt;}
.yb9{bottom:647.700480pt;}
.y125{bottom:647.705600pt;}
.y16f{bottom:648.487680pt;}
.y3a{bottom:655.060000pt;}
.y193{bottom:655.687547pt;}
.y102{bottom:655.697920pt;}
.y91{bottom:655.703040pt;}
.ydf{bottom:656.487680pt;}
.y65{bottom:656.492800pt;}
.y1b6{bottom:662.088000pt;}
.y5{bottom:662.560000pt;}
.yb8{bottom:664.497920pt;}
.y124{bottom:664.503040pt;}
.y16e{bottom:665.285120pt;}
.y39{bottom:668.980000pt;}
.y192{bottom:672.484987pt;}
.y131{bottom:672.490107pt;}
.y101{bottom:672.495360pt;}
.y90{bottom:672.500480pt;}
.yde{bottom:673.285120pt;}
.y64{bottom:673.290240pt;}
.yb7{bottom:681.295360pt;}
.y1b5{bottom:681.444000pt;}
.y16d{bottom:682.082560pt;}
.y38{bottom:683.056000pt;}
.y191{bottom:689.282427pt;}
.y130{bottom:689.287547pt;}
.y100{bottom:689.292800pt;}
.y8f{bottom:689.297920pt;}
.ydd{bottom:690.082560pt;}
.y63{bottom:690.087680pt;}
.y37{bottom:696.976000pt;}
.y16c{bottom:698.880000pt;}
.y1b4{bottom:700.800000pt;}
.y12f{bottom:706.084987pt;}
.yb6{bottom:706.090240pt;}
.y8e{bottom:706.095360pt;}
.ydc{bottom:706.880000pt;}
.y62{bottom:706.885120pt;}
.y36{bottom:711.052000pt;}
.y12e{bottom:722.882427pt;}
.yb5{bottom:722.887680pt;}
.y8d{bottom:722.892800pt;}
.y61{bottom:723.682560pt;}
.y35{bottom:724.972000pt;}
.y16b{bottom:731.684640pt;}
.y1b3{bottom:732.485067pt;}
.y34{bottom:739.048000pt;}
.yb4{bottom:739.685120pt;}
.ydb{bottom:739.685760pt;}
.y8c{bottom:739.690240pt;}
.y60{bottom:740.480000pt;}
.y16a{bottom:748.483200pt;}
.y33{bottom:752.968000pt;}
.yb3{bottom:756.482560pt;}
.yda{bottom:756.484320pt;}
.y8b{bottom:756.487680pt;}
.y32{bottom:767.044000pt;}
.y5f{bottom:773.282880pt;}
.y8a{bottom:773.285120pt;}
.y31{bottom:780.964000pt;}
.y4{bottom:787.522427pt;}
.y5e{bottom:790.081440pt;}
.y89{bottom:790.082560pt;}
.y30{bottom:795.040000pt;}
.y3{bottom:799.523387pt;}
.y5d{bottom:806.880000pt;}
.y2f{bottom:808.960000pt;}
.y2{bottom:811.679867pt;}
.y2c{bottom:845.120000pt;}
.h3{height:32.619375pt;}
.h4{height:33.463125pt;}
.hf{height:33.986250pt;}
.hc{height:41.519062pt;}
.ha{height:42.168125pt;}
.h14{height:42.656250pt;}
.hb{height:43.997812pt;}
.h17{height:46.429688pt;}
.h2{height:46.476562pt;}
.h11{height:48.955312pt;}
.he{height:51.434063pt;}
.h9{height:52.238125pt;}
.hd{height:54.532500pt;}
.h16{height:54.532713pt;}
.h15{height:54.542165pt;}
.h12{height:54.562645pt;}
.h13{height:54.572885pt;}
.h7{height:56.953750pt;}
.h6{height:57.902500pt;}
.h5{height:58.477500pt;}
.h10{height:61.968750pt;}
.h8{height:98.240000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:118.398667pt;}
.w2{width:349.760000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x7{left:42.560000pt;}
.x1{left:86.880000pt;}
.x9{left:87.840000pt;}
.x4{left:91.027200pt;}
.x2{left:94.560000pt;}
.xf{left:97.920000pt;}
.x6{left:101.440000pt;}
.xc{left:105.760000pt;}
.x10{left:124.800000pt;}
.x8{left:139.360000pt;}
.x12{left:149.789067pt;}
.x3{left:277.426560pt;}
.x11{left:278.880000pt;}
.xe{left:334.400640pt;}
.xd{left:356.640000pt;}
.xa{left:436.640000pt;}
.xb{left:443.840000pt;}
}

