
    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_0bb8cf3fb6dd87877ebbdf1d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.219000;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_3c11cd8c95d4ad4b20427ae4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.932000;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_c7c5a7f1abea09db604a1506.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_0d256ce09c29881f42193c24.woff')format("woff");}.ff4{font-family:ff4;line-height:1.199000;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_6c27a084c4dc723202db1ebe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.183000;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_17f83a72fdb514ebd4adf91d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_b85512b82bf743a7b5491ccb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-42.664380px;}
.v1{vertical-align:-10.776000px;}
.v3{vertical-align:-9.578400px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-4.232910px;}
.ls13{letter-spacing:-1.592161px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000276px;}
.ls2{letter-spacing:7.219920px;}
.ls10{letter-spacing:11.973000px;}
.ls7{letter-spacing:13.872210px;}
.lsa{letter-spacing:13.956030px;}
.ls14{letter-spacing:15.947557px;}
.ls1{letter-spacing:15.948036px;}
.ls9{letter-spacing:16.386810px;}
.ls6{letter-spacing:19.558440px;}
.ls4{letter-spacing:24.138240px;}
.ls5{letter-spacing:25.862400px;}
.ls3{letter-spacing:29.418480px;}
.lsf{letter-spacing:153.013410px;}
.lsb{letter-spacing:180.883560px;}
.lsc{letter-spacing:182.895240px;}
.lsd{letter-spacing:194.881500px;}
.lse{letter-spacing:206.867760px;}
.ls11{letter-spacing:224.302739px;}
.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;}
}
.ws91{word-spacing:-236.037539px;}
.wsd7{word-spacing:-55.841593px;}
.ws5{word-spacing:-47.895000px;}
.ws7{word-spacing:-44.882040px;}
.ws0{word-spacing:-39.894036px;}
.ws7b{word-spacing:-33.028440px;}
.ws25{word-spacing:-32.866800px;}
.ws9a{word-spacing:-32.759040px;}
.ws8e{word-spacing:-32.435760px;}
.ws1a{word-spacing:-32.328000px;}
.ws89{word-spacing:-32.274120px;}
.ws24{word-spacing:-32.220240px;}
.ws20{word-spacing:-32.166360px;}
.ws21{word-spacing:-32.112480px;}
.ws14{word-spacing:-32.004720px;}
.ws7c{word-spacing:-31.735320px;}
.wsae{word-spacing:-31.627560px;}
.ws79{word-spacing:-31.573680px;}
.ws33{word-spacing:-31.465920px;}
.ws8f{word-spacing:-31.088760px;}
.ws9c{word-spacing:-30.981000px;}
.ws2d{word-spacing:-30.873240px;}
.ws80{word-spacing:-30.657720px;}
.wsac{word-spacing:-30.603840px;}
.wsb8{word-spacing:-30.442200px;}
.wsb6{word-spacing:-30.388320px;}
.ws2b{word-spacing:-30.334440px;}
.ws2f{word-spacing:-30.226680px;}
.wsb9{word-spacing:-30.118920px;}
.ws7f{word-spacing:-30.011160px;}
.ws3{word-spacing:-29.923026px;}
.wsb7{word-spacing:-29.849520px;}
.ws88{word-spacing:-29.580120px;}
.wsf{word-spacing:-29.472360px;}
.wse{word-spacing:-29.418480px;}
.wsaf{word-spacing:-29.256840px;}
.ws7a{word-spacing:-29.041320px;}
.wsbe{word-spacing:-28.987440px;}
.ws34{word-spacing:-28.718040px;}
.ws1b{word-spacing:-28.340880px;}
.ws16{word-spacing:-28.287000px;}
.wsa1{word-spacing:-28.179240px;}
.ws7e{word-spacing:-28.017600px;}
.wsbb{word-spacing:-27.963720px;}
.wsa3{word-spacing:-27.748200px;}
.ws10{word-spacing:-27.694320px;}
.ws78{word-spacing:-27.478800px;}
.wsbf{word-spacing:-27.371040px;}
.ws2e{word-spacing:-27.317160px;}
.wsa8{word-spacing:-27.263280px;}
.wsa9{word-spacing:-26.993880px;}
.ws6{word-spacing:-26.940000px;}
.wsb0{word-spacing:-26.832240px;}
.ws9e{word-spacing:-26.724480px;}
.ws27{word-spacing:-26.616720px;}
.ws13{word-spacing:-26.562840px;}
.wsb3{word-spacing:-26.508960px;}
.ws7d{word-spacing:-26.455080px;}
.wsaa{word-spacing:-26.293440px;}
.wsb2{word-spacing:-26.239560px;}
.ws17{word-spacing:-26.185680px;}
.wsb{word-spacing:-26.131800px;}
.wsa2{word-spacing:-25.970160px;}
.wsa5{word-spacing:-25.916280px;}
.ws84{word-spacing:-25.808520px;}
.ws15{word-spacing:-25.754640px;}
.ws11{word-spacing:-25.646880px;}
.ws4f{word-spacing:-25.565100px;}
.ws9{word-spacing:-25.431360px;}
.ws31{word-spacing:-25.323600px;}
.ws30{word-spacing:-25.215840px;}
.ws5b{word-spacing:-24.978360px;}
.ws82{word-spacing:-24.838680px;}
.wscd{word-spacing:-24.810720px;}
.ws65{word-spacing:-24.768810px;}
.ws53{word-spacing:-24.433530px;}
.ws26{word-spacing:-24.299880px;}
.ws57{word-spacing:-24.233352px;}
.ws90{word-spacing:-24.192120px;}
.wsc1{word-spacing:-24.140160px;}
.ws55{word-spacing:-24.014430px;}
.ws8b{word-spacing:-23.976600px;}
.ws75{word-spacing:-23.972520px;}
.ws4{word-spacing:-23.946000px;}
.wsc8{word-spacing:-23.888700px;}
.ws63{word-spacing:-23.804880px;}
.ws4b{word-spacing:-23.721060px;}
.ws4d{word-spacing:-23.637240px;}
.ws50{word-spacing:-23.595330px;}
.ws8d{word-spacing:-23.491680px;}
.ws6d{word-spacing:-23.469600px;}
.wsbc{word-spacing:-23.383920px;}
.wsa{word-spacing:-23.330040px;}
.wsb4{word-spacing:-23.276160px;}
.ws37{word-spacing:-23.260050px;}
.wsba{word-spacing:-23.168400px;}
.ws5d{word-spacing:-23.134320px;}
.ws67{word-spacing:-23.008590px;}
.wsad{word-spacing:-22.899000px;}
.ws32{word-spacing:-22.845120px;}
.wsdd{word-spacing:-22.799040px;}
.ws3a{word-spacing:-22.757130px;}
.ws38{word-spacing:-22.715220px;}
.ws35{word-spacing:-22.683480px;}
.ws66{word-spacing:-22.631400px;}
.ws28{word-spacing:-22.467960px;}
.wsd9{word-spacing:-22.463760px;}
.ws60{word-spacing:-22.421850px;}
.ws83{word-spacing:-22.360200px;}
.ws12{word-spacing:-22.306320px;}
.wsc3{word-spacing:-22.296120px;}
.wsdb{word-spacing:-22.254210px;}
.ws61{word-spacing:-22.212300px;}
.ws8a{word-spacing:-22.198560px;}
.wsda{word-spacing:-22.170390px;}
.ws4e{word-spacing:-22.086570px;}
.ws76{word-spacing:-22.044660px;}
.wsbd{word-spacing:-21.983040px;}
.ws5c{word-spacing:-21.877020px;}
.ws23{word-spacing:-21.659760px;}
.ws22{word-spacing:-21.605880px;}
.wsc2{word-spacing:-21.583650px;}
.ws9d{word-spacing:-21.498120px;}
.wsd1{word-spacing:-21.457920px;}
.ws18{word-spacing:-21.444240px;}
.ws51{word-spacing:-21.374100px;}
.wsc9{word-spacing:-21.332609px;}
.ws5e{word-spacing:-21.290280px;}
.ws72{word-spacing:-21.248370px;}
.ws3f{word-spacing:-21.206460px;}
.ws3e{word-spacing:-21.164550px;}
.wsca{word-spacing:-21.123059px;}
.ws39{word-spacing:-21.122640px;}
.ws52{word-spacing:-21.038820px;}
.ws47{word-spacing:-20.955000px;}
.wsd{word-spacing:-20.905440px;}
.ws64{word-spacing:-20.787360px;}
.ws1e{word-spacing:-20.743800px;}
.ws71{word-spacing:-20.661630px;}
.ws70{word-spacing:-20.619720px;}
.wsc{word-spacing:-20.528280px;}
.ws44{word-spacing:-20.493990px;}
.wsb1{word-spacing:-20.474400px;}
.ws85{word-spacing:-20.420520px;}
.ws59{word-spacing:-20.410170px;}
.wsa4{word-spacing:-20.366640px;}
.ws74{word-spacing:-20.284440px;}
.wsce{word-spacing:-20.074890px;}
.ws8c{word-spacing:-20.043360px;}
.ws45{word-spacing:-19.991070px;}
.ws69{word-spacing:-19.907250px;}
.wscc{word-spacing:-19.781520px;}
.wsde{word-spacing:-19.571970px;}
.wsa7{word-spacing:-19.558440px;}
.wsd0{word-spacing:-19.530060px;}
.ws86{word-spacing:-19.504560px;}
.ws77{word-spacing:-19.488150px;}
.wsdc{word-spacing:-19.404330px;}
.ws9f{word-spacing:-19.289040px;}
.wscb{word-spacing:-19.278600px;}
.ws3d{word-spacing:-19.236690px;}
.wscf{word-spacing:-19.152870px;}
.ws81{word-spacing:-19.073520px;}
.ws68{word-spacing:-19.069050px;}
.ws1f{word-spacing:-19.019640px;}
.ws6f{word-spacing:-18.943320px;}
.ws6a{word-spacing:-18.817590px;}
.ws19{word-spacing:-18.750240px;}
.ws6c{word-spacing:-18.733770px;}
.wsa6{word-spacing:-18.534720px;}
.ws6b{word-spacing:-18.524220px;}
.ws3c{word-spacing:-18.314670px;}
.ws3b{word-spacing:-18.272760px;}
.ws6e{word-spacing:-18.188940px;}
.ws1c{word-spacing:-18.049800px;}
.ws2a{word-spacing:-17.995920px;}
.ws87{word-spacing:-17.942040px;}
.wsdf{word-spacing:-17.937480px;}
.ws41{word-spacing:-17.644110px;}
.wsb5{word-spacing:-17.618760px;}
.ws42{word-spacing:-17.602200px;}
.ws54{word-spacing:-17.560290px;}
.wsa0{word-spacing:-17.511000px;}
.ws36{word-spacing:-17.026080px;}
.wsc4{word-spacing:-16.512540px;}
.ws62{word-spacing:-16.344900px;}
.ws43{word-spacing:-16.302990px;}
.ws73{word-spacing:-16.219170px;}
.ws99{word-spacing:-15.995928px;}
.wsab{word-spacing:-15.894600px;}
.ws46{word-spacing:-15.883890px;}
.wsc5{word-spacing:-15.758160px;}
.ws48{word-spacing:-15.716250px;}
.ws49{word-spacing:-15.674340px;}
.ws5a{word-spacing:-15.464790px;}
.ws1d{word-spacing:-15.463560px;}
.ws5f{word-spacing:-15.213330px;}
.ws29{word-spacing:-14.601480px;}
.ws8{word-spacing:-14.493048px;}
.ws56{word-spacing:-14.080248px;}
.ws1{word-spacing:-14.005692px;}
.ws2{word-spacing:-13.988250px;}
.wsc0{word-spacing:-13.956030px;}
.wsd8{word-spacing:-13.578840px;}
.ws4c{word-spacing:-12.698730px;}
.ws40{word-spacing:-9.848850px;}
.ws9b{word-spacing:-8.513040px;}
.wsc7{word-spacing:-7.376160px;}
.wsc6{word-spacing:-7.292340px;}
.ws2c{word-spacing:-0.969840px;}
.ws58{word-spacing:0.000000px;}
.ws4a{word-spacing:4.526280px;}
.wsd6{word-spacing:67.862964px;}
.ws94{word-spacing:128.957070px;}
.ws92{word-spacing:138.982584px;}
.wsd4{word-spacing:144.729624px;}
.ws96{word-spacing:156.702624px;}
.ws93{word-spacing:162.928584px;}
.wsd3{word-spacing:168.675624px;}
.ws95{word-spacing:175.811532px;}
.ws97{word-spacing:180.648624px;}
.wsd2{word-spacing:187.784532px;}
.wsd5{word-spacing:204.594624px;}
.ws98{word-spacing:211.730532px;}
._5{margin-left:-2167.768680px;}
._6{margin-left:-1078.372020px;}
._9{margin-left:-224.303577px;}
._34{margin-left:-22.421850px;}
._37{margin-left:-20.081640px;}
._31{margin-left:-16.638270px;}
._32{margin-left:-15.597270px;}
._1{margin-left:-8.525310px;}
._3{margin-left:-4.795320px;}
._2{margin-left:-3.232800px;}
._35{width:1.383030px;}
._33{width:4.232910px;}
._36{width:10.424693px;}
._4{width:11.973000px;}
._20{width:13.956030px;}
._1f{width:15.948036px;}
._7{width:23.946000px;}
._30{width:107.709108px;}
._1d{width:157.947816px;}
._e{width:175.907316px;}
._14{width:178.876620px;}
._d{width:181.893816px;}
._b{width:194.345736px;}
._c{width:202.822620px;}
._17{width:211.826316px;}
._12{width:214.795620px;}
._26{width:220.542660px;}
._3a{width:227.678568px;}
._11{width:230.264736px;}
._1b{width:238.741620px;}
._38{width:244.488660px;}
._2b{width:251.624568px;}
._23{width:256.461660px;}
._22{width:262.496052px;}
._39{width:263.597568px;}
._f{width:272.888616px;}
._25{width:298.415052px;}
._21{width:305.598852px;}
._2e{width:306.844044px;}
._27{width:311.393784px;}
._a{width:312.543192px;}
._28{width:314.458872px;}
._13{width:318.338124px;}
._15{width:321.403212px;}
._2a{width:335.627136px;}
._18{width:342.571476px;}
._2c{width:344.439264px;}
._24{width:345.971808px;}
._1c{width:350.138412px;}
._1a{width:351.383604px;}
._10{width:352.916148px;}
._19{width:358.758972px;}
._2d{width:379.879344px;}
._29{width:383.327568px;}
._1e{width:386.823684px;}
._16{width:390.271908px;}
._8{width:762.180990px;}
._2f{width:1076.024388px;}
._0{width:1369.923138px;}
._3b{width:1605.411768px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.940000px;}
.fs1{font-size:35.922000px;}
.fs4{font-size:38.916000px;}
.fs5{font-size:41.910000px;}
.fs0{font-size:47.892000px;}
.fs3{font-size:53.880000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:95.790000px;}
.y0{bottom:0.000000px;}
.y65{bottom:69.411375px;}
.y13b{bottom:97.779150px;}
.y61{bottom:97.839652px;}
.y64{bottom:97.847250px;}
.y9c{bottom:97.870620px;}
.ydb{bottom:106.459125px;}
.y13a{bottom:109.754932px;}
.y60{bottom:109.815435px;}
.y63{bottom:111.316875px;}
.y9b{bottom:112.835790px;}
.y139{bottom:121.730715px;}
.y5f{bottom:121.791217px;}
.y62{bottom:124.786500px;}
.y9a{bottom:127.800960px;}
.yda{bottom:133.398375px;}
.y138{bottom:133.706497px;}
.y5c{bottom:133.710937px;}
.y5e{bottom:133.767000px;}
.y5d{bottom:137.883000px;}
.y99{bottom:142.766130px;}
.y137{bottom:145.682280px;}
.y5b{bottom:145.686720px;}
.yd9{bottom:146.868000px;}
.y136{bottom:157.658062px;}
.y5a{bottom:157.662502px;}
.y98{bottom:157.731300px;}
.yd8{bottom:160.337625px;}
.y135{bottom:169.633845px;}
.y59{bottom:169.638285px;}
.y97{bottom:172.696470px;}
.yd7{bottom:173.807250px;}
.y38{bottom:179.466570px;}
.y134{bottom:181.609627px;}
.y58{bottom:181.614067px;}
.yd6{bottom:187.276875px;}
.y96{bottom:187.661640px;}
.y133{bottom:193.585410px;}
.y57{bottom:193.589850px;}
.y37{bottom:194.431740px;}
.yd5{bottom:200.746500px;}
.y95{bottom:202.626810px;}
.y132{bottom:205.561192px;}
.y56{bottom:205.565632px;}
.y36{bottom:209.396910px;}
.yd4{bottom:214.216125px;}
.y131{bottom:217.536975px;}
.y55{bottom:217.541415px;}
.y94{bottom:217.591980px;}
.y35{bottom:224.362080px;}
.yd3{bottom:227.685750px;}
.y130{bottom:229.512757px;}
.y54{bottom:229.517197px;}
.y93{bottom:232.557150px;}
.y34{bottom:239.327250px;}
.yd2{bottom:241.155375px;}
.y12f{bottom:241.488540px;}
.y53{bottom:241.492980px;}
.y92{bottom:247.522320px;}
.y12e{bottom:253.464322px;}
.y52{bottom:253.468762px;}
.y33{bottom:254.292420px;}
.yd1{bottom:254.625000px;}
.y12d{bottom:265.440105px;}
.y51{bottom:265.444545px;}
.y32{bottom:269.257590px;}
.y91{bottom:273.708000px;}
.y12c{bottom:277.415887px;}
.y50{bottom:277.420327px;}
.yd0{bottom:277.814775px;}
.yce{bottom:282.498218px;}
.y31{bottom:284.222760px;}
.y12b{bottom:289.391670px;}
.y4f{bottom:289.396110px;}
.ycd{bottom:294.474000px;}
.ycf{bottom:299.146965px;}
.y30{bottom:299.187930px;}
.y12a{bottom:301.367452px;}
.y4e{bottom:301.371892px;}
.y90{bottom:308.054895px;}
.y129{bottom:313.343235px;}
.y4d{bottom:313.347675px;}
.y2f{bottom:314.153100px;}
.y8f{bottom:320.030677px;}
.ycc{bottom:321.976875px;}
.y14e{bottom:321.977250px;}
.y128{bottom:325.319017px;}
.y4c{bottom:325.323457px;}
.y2e{bottom:329.118270px;}
.y8e{bottom:332.006460px;}
.ycb{bottom:335.446500px;}
.y14d{bottom:335.446875px;}
.y127{bottom:337.294800px;}
.y4b{bottom:337.299240px;}
.y8d{bottom:343.982242px;}
.y2d{bottom:344.083440px;}
.y14c{bottom:348.916500px;}
.y126{bottom:349.270582px;}
.y4a{bottom:349.275022px;}
.y8c{bottom:355.958025px;}
.y2c{bottom:359.048610px;}
.y125{bottom:361.246365px;}
.y49{bottom:361.250805px;}
.y8b{bottom:367.933807px;}
.y124{bottom:373.222147px;}
.y48{bottom:373.226587px;}
.y2b{bottom:374.013780px;}
.y8a{bottom:379.909590px;}
.yb5{bottom:381.144720px;}
.y123{bottom:385.197930px;}
.y47{bottom:385.202370px;}
.y2a{bottom:388.978950px;}
.y89{bottom:391.885372px;}
.yb4{bottom:396.109890px;}
.y122{bottom:397.173712px;}
.y46{bottom:397.178152px;}
.yf6{bottom:397.229250px;}
.y88{bottom:403.861155px;}
.y29{bottom:403.944120px;}
.y121{bottom:409.149495px;}
.y45{bottom:409.153935px;}
.yb3{bottom:411.075060px;}
.yf5{bottom:412.194420px;}
.y87{bottom:415.836937px;}
.y28{bottom:418.909290px;}
.y120{bottom:421.125277px;}
.y44{bottom:421.129717px;}
.yb2{bottom:426.040230px;}
.yf4{bottom:427.159590px;}
.y86{bottom:427.812720px;}
.y11f{bottom:433.101060px;}
.y43{bottom:433.105500px;}
.y27{bottom:433.874460px;}
.y85{bottom:439.788502px;}
.yb1{bottom:441.005400px;}
.yf3{bottom:442.124760px;}
.y26{bottom:448.839630px;}
.y11e{bottom:449.194500px;}
.y84{bottom:451.764285px;}
.yb0{bottom:455.970570px;}
.yf2{bottom:457.089930px;}
.y42{bottom:457.851060px;}
.y83{bottom:463.740067px;}
.y25{bottom:463.804800px;}
.yf1{bottom:472.055100px;}
.y82{bottom:475.715850px;}
.y11d{bottom:476.508288px;}
.y24{bottom:478.769970px;}
.yaf{bottom:483.287730px;}
.yf0{bottom:487.020270px;}
.y81{bottom:487.691632px;}
.y23{bottom:493.735140px;}
.y41{bottom:493.775550px;}
.y11c{bottom:498.586500px;}
.y80{bottom:499.667415px;}
.yef{bottom:501.985440px;}
.y22{bottom:508.700310px;}
.y40{bottom:508.740720px;}
.y7f{bottom:511.643197px;}
.yee{bottom:516.950610px;}
.yae{bottom:519.212220px;}
.y7e{bottom:523.618980px;}
.y21{bottom:523.665480px;}
.y3f{bottom:523.705890px;}
.yed{bottom:531.915780px;}
.y11b{bottom:531.983130px;}
.yad{bottom:534.177390px;}
.y7d{bottom:535.594762px;}
.y20{bottom:538.630650px;}
.y3e{bottom:538.671060px;}
.yec{bottom:546.880950px;}
.y11a{bottom:546.948300px;}
.y7c{bottom:547.570545px;}
.yac{bottom:549.142560px;}
.y1f{bottom:553.595820px;}
.y3d{bottom:553.636230px;}
.y7b{bottom:559.546327px;}
.yeb{bottom:561.846120px;}
.y119{bottom:561.913470px;}
.yab{bottom:564.107730px;}
.y1e{bottom:568.560990px;}
.y3c{bottom:568.601400px;}
.y7a{bottom:571.522110px;}
.yea{bottom:576.811290px;}
.y118{bottom:576.878640px;}
.yaa{bottom:579.072900px;}
.y79{bottom:583.497892px;}
.y1d{bottom:583.526160px;}
.y3b{bottom:583.566570px;}
.ye9{bottom:591.776460px;}
.y117{bottom:591.843810px;}
.ya9{bottom:594.038070px;}
.y78{bottom:595.473675px;}
.y1c{bottom:598.491330px;}
.y3a{bottom:598.531740px;}
.ye8{bottom:606.741630px;}
.y116{bottom:606.808980px;}
.y77{bottom:607.449457px;}
.ya8{bottom:609.003240px;}
.y1b{bottom:613.456500px;}
.y39{bottom:613.496910px;}
.y76{bottom:619.425240px;}
.ye7{bottom:621.706800px;}
.y115{bottom:621.774150px;}
.ya7{bottom:623.968410px;}
.y75{bottom:631.401022px;}
.ye6{bottom:636.671970px;}
.y114{bottom:636.739320px;}
.ya6{bottom:638.933580px;}
.y74{bottom:643.376805px;}
.ye5{bottom:651.637140px;}
.y113{bottom:651.704490px;}
.ya5{bottom:653.898750px;}
.y1a{bottom:654.644280px;}
.y73{bottom:655.352587px;}
.y66{bottom:662.319120px;}
.ye4{bottom:666.602310px;}
.y112{bottom:666.669660px;}
.y72{bottom:667.328370px;}
.ya4{bottom:668.863920px;}
.y19{bottom:669.609450px;}
.y71{bottom:679.304152px;}
.ye3{bottom:681.567480px;}
.y111{bottom:681.634830px;}
.ya3{bottom:683.829090px;}
.y18{bottom:684.574620px;}
.y70{bottom:691.279935px;}
.ye2{bottom:696.532650px;}
.y110{bottom:696.600000px;}
.ya2{bottom:698.794260px;}
.y17{bottom:699.539790px;}
.y6f{bottom:703.255717px;}
.ye1{bottom:711.497820px;}
.y10f{bottom:711.565170px;}
.ya1{bottom:713.759430px;}
.y16{bottom:714.504960px;}
.y6c{bottom:715.220588px;}
.y6e{bottom:715.231500px;}
.y6d{bottom:719.347500px;}
.ye0{bottom:726.462990px;}
.y10e{bottom:726.530340px;}
.y6b{bottom:727.196370px;}
.ya0{bottom:728.724600px;}
.y15{bottom:729.470130px;}
.y6a{bottom:739.172153px;}
.ydf{bottom:741.428160px;}
.y10d{bottom:741.495510px;}
.y9f{bottom:743.689770px;}
.y14{bottom:744.435300px;}
.y69{bottom:751.147935px;}
.yde{bottom:756.393330px;}
.y10c{bottom:756.460680px;}
.y9e{bottom:758.654940px;}
.y13{bottom:759.400470px;}
.y68{bottom:763.123718px;}
.ydd{bottom:771.358500px;}
.y10b{bottom:771.425850px;}
.y9d{bottom:773.620110px;}
.y12{bottom:774.365640px;}
.y67{bottom:775.099500px;}
.y10a{bottom:786.391020px;}
.y11{bottom:789.330810px;}
.y109{bottom:801.356190px;}
.y10{bottom:804.295980px;}
.y108{bottom:816.321360px;}
.yca{bottom:817.755000px;}
.yf{bottom:819.261150px;}
.yc9{bottom:820.000500px;}
.yc8{bottom:824.116500px;}
.y14b{bottom:828.988125px;}
.y107{bottom:831.286530px;}
.ye{bottom:834.226320px;}
.yc7{bottom:842.458125px;}
.y106{bottom:846.251700px;}
.yd{bottom:849.191490px;}
.y14a{bottom:855.927375px;}
.y105{bottom:861.216870px;}
.yc{bottom:864.156660px;}
.y149{bottom:869.397000px;}
.yc6{bottom:869.397375px;}
.y104{bottom:876.182040px;}
.yb{bottom:879.121830px;}
.y148{bottom:882.866625px;}
.yc5{bottom:882.867000px;}
.y103{bottom:891.147210px;}
.ya{bottom:894.087000px;}
.y147{bottom:896.336250px;}
.yc4{bottom:896.336625px;}
.y102{bottom:906.112380px;}
.y146{bottom:909.805875px;}
.yc3{bottom:909.806250px;}
.y101{bottom:921.077550px;}
.y145{bottom:923.275500px;}
.yc2{bottom:923.275875px;}
.y9{bottom:927.013500px;}
.y100{bottom:936.042720px;}
.y144{bottom:936.745125px;}
.yc1{bottom:936.745500px;}
.y143{bottom:950.214750px;}
.yc0{bottom:950.215125px;}
.yff{bottom:951.007890px;}
.y8{bottom:952.452180px;}
.y142{bottom:963.684375px;}
.ybf{bottom:963.684750px;}
.yfe{bottom:965.973060px;}
.y6{bottom:973.411500px;}
.y7{bottom:976.105500px;}
.y141{bottom:977.154000px;}
.ybe{bottom:977.154375px;}
.yfd{bottom:980.938230px;}
.ybd{bottom:990.624000px;}
.yfc{bottom:995.903400px;}
.y15d{bottom:1000.328827px;}
.y156{bottom:1000.339305px;}
.y140{bottom:1000.343775px;}
.y5{bottom:1000.352062px;}
.y13e{bottom:1005.027218px;}
.yfb{bottom:1010.868570px;}
.y15c{bottom:1012.304610px;}
.y155{bottom:1012.315088px;}
.ybc{bottom:1013.823000px;}
.y13d{bottom:1017.003000px;}
.yb9{bottom:1018.497218px;}
.y13f{bottom:1021.675965px;}
.y15b{bottom:1024.280393px;}
.y154{bottom:1024.290870px;}
.yfa{bottom:1025.833740px;}
.y4{bottom:1027.293000px;}
.ybb{bottom:1028.602500px;}
.yb8{bottom:1030.473000px;}
.yba{bottom:1035.145965px;}
.y15a{bottom:1036.256175px;}
.y153{bottom:1036.266653px;}
.yf9{bottom:1040.798910px;}
.y13c{bottom:1044.506250px;}
.y159{bottom:1048.231958px;}
.y152{bottom:1048.242435px;}
.yf8{bottom:1055.764080px;}
.yb7{bottom:1057.975875px;}
.y158{bottom:1060.207740px;}
.y151{bottom:1060.218218px;}
.yf7{bottom:1070.729250px;}
.yb6{bottom:1071.445500px;}
.y157{bottom:1072.183522px;}
.y150{bottom:1072.194000px;}
.y3{bottom:1081.175250px;}
.y2{bottom:1094.644875px;}
.ydc{bottom:1108.072413px;}
.y1{bottom:1108.114500px;}
.y14f{bottom:1110.467013px;}
.h6{height:25.943220px;}
.ha{height:39.688770px;}
.h5{height:40.359330px;}
.h9{height:45.353724px;}
.h1{height:46.119996px;}
.h8{height:46.288344px;}
.h4{height:51.024360px;}
.h3{height:51.886440px;}
.h7{height:68.835938px;}
.h2{height:92.245770px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:87.072000px;}
.x21{left:92.778000px;}
.x16{left:97.549500px;}
.x13{left:99.045000px;}
.xc{left:100.542000px;}
.x22{left:104.358000px;}
.x35{left:105.483000px;}
.x1d{left:106.674023px;}
.x2{left:111.559500px;}
.x2f{left:116.886000px;}
.x32{left:134.629986px;}
.xb{left:140.953500px;}
.xa{left:154.423500px;}
.x1b{left:172.668000px;}
.x34{left:174.879468px;}
.x31{left:191.101718px;}
.x33{left:192.483522px;}
.x20{left:194.838000px;}
.x9{left:197.521500px;}
.x3{left:203.206582px;}
.x8{left:206.535810px;}
.x19{left:236.226000px;}
.x30{left:248.036453px;}
.x4{left:253.582500px;}
.x17{left:295.672500px;}
.x18{left:302.730000px;}
.x5{left:311.611260px;}
.x1e{left:340.940445px;}
.x1c{left:342.564870px;}
.x6{left:392.862300px;}
.x14{left:447.758625px;}
.xd{left:473.203020px;}
.x2e{left:478.450110px;}
.x25{left:479.503500px;}
.x10{left:483.696000px;}
.x2c{left:485.195139px;}
.xe{left:486.659550px;}
.x23{left:489.613500px;}
.x2a{left:491.391000px;}
.x27{left:492.820522px;}
.x24{left:497.215500px;}
.x26{left:521.780163px;}
.xf{left:560.273100px;}
.x29{left:577.248218px;}
.x2b{left:591.240000px;}
.x1a{left:611.042220px;}
.x2d{left:617.968500px;}
.x7{left:628.065990px;}
.x28{left:634.182952px;}
.x11{left:694.708500px;}
.x12{left:702.289500px;}
.x1f{left:827.511000px;}
.x15{left:889.500000px;}
@media print{
.v2{vertical-align:-37.923893pt;}
.v1{vertical-align:-9.578667pt;}
.v3{vertical-align:-8.514133pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-3.762587pt;}
.ls13{letter-spacing:-1.415254pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000245pt;}
.ls2{letter-spacing:6.417707pt;}
.ls10{letter-spacing:10.642667pt;}
.ls7{letter-spacing:12.330853pt;}
.lsa{letter-spacing:12.405360pt;}
.ls14{letter-spacing:14.175606pt;}
.ls1{letter-spacing:14.176032pt;}
.ls9{letter-spacing:14.566053pt;}
.ls6{letter-spacing:17.385280pt;}
.ls4{letter-spacing:21.456213pt;}
.ls5{letter-spacing:22.988800pt;}
.ls3{letter-spacing:26.149760pt;}
.lsf{letter-spacing:136.011920pt;}
.lsb{letter-spacing:160.785387pt;}
.lsc{letter-spacing:162.573547pt;}
.lsd{letter-spacing:173.228000pt;}
.lse{letter-spacing:183.882453pt;}
.ls11{letter-spacing:199.380213pt;}
.ws91{word-spacing:-209.811146pt;}
.wsd7{word-spacing:-49.636972pt;}
.ws5{word-spacing:-42.573333pt;}
.ws7{word-spacing:-39.895147pt;}
.ws0{word-spacing:-35.461365pt;}
.ws7b{word-spacing:-29.358613pt;}
.ws25{word-spacing:-29.214933pt;}
.ws9a{word-spacing:-29.119147pt;}
.ws8e{word-spacing:-28.831787pt;}
.ws1a{word-spacing:-28.736000pt;}
.ws89{word-spacing:-28.688107pt;}
.ws24{word-spacing:-28.640213pt;}
.ws20{word-spacing:-28.592320pt;}
.ws21{word-spacing:-28.544427pt;}
.ws14{word-spacing:-28.448640pt;}
.ws7c{word-spacing:-28.209173pt;}
.wsae{word-spacing:-28.113387pt;}
.ws79{word-spacing:-28.065493pt;}
.ws33{word-spacing:-27.969707pt;}
.ws8f{word-spacing:-27.634453pt;}
.ws9c{word-spacing:-27.538667pt;}
.ws2d{word-spacing:-27.442880pt;}
.ws80{word-spacing:-27.251307pt;}
.wsac{word-spacing:-27.203413pt;}
.wsb8{word-spacing:-27.059733pt;}
.wsb6{word-spacing:-27.011840pt;}
.ws2b{word-spacing:-26.963947pt;}
.ws2f{word-spacing:-26.868160pt;}
.wsb9{word-spacing:-26.772373pt;}
.ws7f{word-spacing:-26.676587pt;}
.ws3{word-spacing:-26.598245pt;}
.wsb7{word-spacing:-26.532907pt;}
.ws88{word-spacing:-26.293440pt;}
.wsf{word-spacing:-26.197653pt;}
.wse{word-spacing:-26.149760pt;}
.wsaf{word-spacing:-26.006080pt;}
.ws7a{word-spacing:-25.814507pt;}
.wsbe{word-spacing:-25.766613pt;}
.ws34{word-spacing:-25.527147pt;}
.ws1b{word-spacing:-25.191893pt;}
.ws16{word-spacing:-25.144000pt;}
.wsa1{word-spacing:-25.048213pt;}
.ws7e{word-spacing:-24.904533pt;}
.wsbb{word-spacing:-24.856640pt;}
.wsa3{word-spacing:-24.665067pt;}
.ws10{word-spacing:-24.617173pt;}
.ws78{word-spacing:-24.425600pt;}
.wsbf{word-spacing:-24.329813pt;}
.ws2e{word-spacing:-24.281920pt;}
.wsa8{word-spacing:-24.234027pt;}
.wsa9{word-spacing:-23.994560pt;}
.ws6{word-spacing:-23.946667pt;}
.wsb0{word-spacing:-23.850880pt;}
.ws9e{word-spacing:-23.755093pt;}
.ws27{word-spacing:-23.659307pt;}
.ws13{word-spacing:-23.611413pt;}
.wsb3{word-spacing:-23.563520pt;}
.ws7d{word-spacing:-23.515627pt;}
.wsaa{word-spacing:-23.371947pt;}
.wsb2{word-spacing:-23.324053pt;}
.ws17{word-spacing:-23.276160pt;}
.wsb{word-spacing:-23.228267pt;}
.wsa2{word-spacing:-23.084587pt;}
.wsa5{word-spacing:-23.036693pt;}
.ws84{word-spacing:-22.940907pt;}
.ws15{word-spacing:-22.893013pt;}
.ws11{word-spacing:-22.797227pt;}
.ws4f{word-spacing:-22.724533pt;}
.ws9{word-spacing:-22.605653pt;}
.ws31{word-spacing:-22.509867pt;}
.ws30{word-spacing:-22.414080pt;}
.ws5b{word-spacing:-22.202987pt;}
.ws82{word-spacing:-22.078827pt;}
.wscd{word-spacing:-22.053973pt;}
.ws65{word-spacing:-22.016720pt;}
.ws53{word-spacing:-21.718693pt;}
.ws26{word-spacing:-21.599893pt;}
.ws57{word-spacing:-21.540757pt;}
.ws90{word-spacing:-21.504107pt;}
.wsc1{word-spacing:-21.457920pt;}
.ws55{word-spacing:-21.346160pt;}
.ws8b{word-spacing:-21.312533pt;}
.ws75{word-spacing:-21.308907pt;}
.ws4{word-spacing:-21.285333pt;}
.wsc8{word-spacing:-21.234400pt;}
.ws63{word-spacing:-21.159893pt;}
.ws4b{word-spacing:-21.085387pt;}
.ws4d{word-spacing:-21.010880pt;}
.ws50{word-spacing:-20.973627pt;}
.ws8d{word-spacing:-20.881493pt;}
.ws6d{word-spacing:-20.861867pt;}
.wsbc{word-spacing:-20.785707pt;}
.wsa{word-spacing:-20.737813pt;}
.wsb4{word-spacing:-20.689920pt;}
.ws37{word-spacing:-20.675600pt;}
.wsba{word-spacing:-20.594133pt;}
.ws5d{word-spacing:-20.563840pt;}
.ws67{word-spacing:-20.452080pt;}
.wsad{word-spacing:-20.354667pt;}
.ws32{word-spacing:-20.306773pt;}
.wsdd{word-spacing:-20.265813pt;}
.ws3a{word-spacing:-20.228560pt;}
.ws38{word-spacing:-20.191307pt;}
.ws35{word-spacing:-20.163093pt;}
.ws66{word-spacing:-20.116800pt;}
.ws28{word-spacing:-19.971520pt;}
.wsd9{word-spacing:-19.967787pt;}
.ws60{word-spacing:-19.930533pt;}
.ws83{word-spacing:-19.875733pt;}
.ws12{word-spacing:-19.827840pt;}
.wsc3{word-spacing:-19.818773pt;}
.wsdb{word-spacing:-19.781520pt;}
.ws61{word-spacing:-19.744267pt;}
.ws8a{word-spacing:-19.732053pt;}
.wsda{word-spacing:-19.707013pt;}
.ws4e{word-spacing:-19.632507pt;}
.ws76{word-spacing:-19.595253pt;}
.wsbd{word-spacing:-19.540480pt;}
.ws5c{word-spacing:-19.446240pt;}
.ws23{word-spacing:-19.253120pt;}
.ws22{word-spacing:-19.205227pt;}
.wsc2{word-spacing:-19.185467pt;}
.ws9d{word-spacing:-19.109440pt;}
.wsd1{word-spacing:-19.073707pt;}
.ws18{word-spacing:-19.061547pt;}
.ws51{word-spacing:-18.999200pt;}
.wsc9{word-spacing:-18.962319pt;}
.ws5e{word-spacing:-18.924693pt;}
.ws72{word-spacing:-18.887440pt;}
.ws3f{word-spacing:-18.850187pt;}
.ws3e{word-spacing:-18.812933pt;}
.wsca{word-spacing:-18.776053pt;}
.ws39{word-spacing:-18.775680pt;}
.ws52{word-spacing:-18.701173pt;}
.ws47{word-spacing:-18.626667pt;}
.wsd{word-spacing:-18.582613pt;}
.ws64{word-spacing:-18.477653pt;}
.ws1e{word-spacing:-18.438933pt;}
.ws71{word-spacing:-18.365893pt;}
.ws70{word-spacing:-18.328640pt;}
.wsc{word-spacing:-18.247360pt;}
.ws44{word-spacing:-18.216880pt;}
.wsb1{word-spacing:-18.199467pt;}
.ws85{word-spacing:-18.151573pt;}
.ws59{word-spacing:-18.142373pt;}
.wsa4{word-spacing:-18.103680pt;}
.ws74{word-spacing:-18.030613pt;}
.wsce{word-spacing:-17.844347pt;}
.ws8c{word-spacing:-17.816320pt;}
.ws45{word-spacing:-17.769840pt;}
.ws69{word-spacing:-17.695333pt;}
.wscc{word-spacing:-17.583573pt;}
.wsde{word-spacing:-17.397307pt;}
.wsa7{word-spacing:-17.385280pt;}
.wsd0{word-spacing:-17.360053pt;}
.ws86{word-spacing:-17.337387pt;}
.ws77{word-spacing:-17.322800pt;}
.wsdc{word-spacing:-17.248293pt;}
.ws9f{word-spacing:-17.145813pt;}
.wscb{word-spacing:-17.136533pt;}
.ws3d{word-spacing:-17.099280pt;}
.wscf{word-spacing:-17.024773pt;}
.ws81{word-spacing:-16.954240pt;}
.ws68{word-spacing:-16.950267pt;}
.ws1f{word-spacing:-16.906347pt;}
.ws6f{word-spacing:-16.838507pt;}
.ws6a{word-spacing:-16.726747pt;}
.ws19{word-spacing:-16.666880pt;}
.ws6c{word-spacing:-16.652240pt;}
.wsa6{word-spacing:-16.475307pt;}
.ws6b{word-spacing:-16.465973pt;}
.ws3c{word-spacing:-16.279707pt;}
.ws3b{word-spacing:-16.242453pt;}
.ws6e{word-spacing:-16.167947pt;}
.ws1c{word-spacing:-16.044267pt;}
.ws2a{word-spacing:-15.996373pt;}
.ws87{word-spacing:-15.948480pt;}
.wsdf{word-spacing:-15.944427pt;}
.ws41{word-spacing:-15.683653pt;}
.wsb5{word-spacing:-15.661120pt;}
.ws42{word-spacing:-15.646400pt;}
.ws54{word-spacing:-15.609147pt;}
.wsa0{word-spacing:-15.565333pt;}
.ws36{word-spacing:-15.134293pt;}
.wsc4{word-spacing:-14.677813pt;}
.ws62{word-spacing:-14.528800pt;}
.ws43{word-spacing:-14.491547pt;}
.ws73{word-spacing:-14.417040pt;}
.ws99{word-spacing:-14.218603pt;}
.wsab{word-spacing:-14.128533pt;}
.ws46{word-spacing:-14.119013pt;}
.wsc5{word-spacing:-14.007253pt;}
.ws48{word-spacing:-13.970000pt;}
.ws49{word-spacing:-13.932747pt;}
.ws5a{word-spacing:-13.746480pt;}
.ws1d{word-spacing:-13.745387pt;}
.ws5f{word-spacing:-13.522960pt;}
.ws29{word-spacing:-12.979093pt;}
.ws8{word-spacing:-12.882709pt;}
.ws56{word-spacing:-12.515776pt;}
.ws1{word-spacing:-12.449504pt;}
.ws2{word-spacing:-12.434000pt;}
.wsc0{word-spacing:-12.405360pt;}
.wsd8{word-spacing:-12.070080pt;}
.ws4c{word-spacing:-11.287760pt;}
.ws40{word-spacing:-8.754533pt;}
.ws9b{word-spacing:-7.567147pt;}
.wsc7{word-spacing:-6.556587pt;}
.wsc6{word-spacing:-6.482080pt;}
.ws2c{word-spacing:-0.862080pt;}
.ws58{word-spacing:0.000000pt;}
.ws4a{word-spacing:4.023360pt;}
.wsd6{word-spacing:60.322635pt;}
.ws94{word-spacing:114.628507pt;}
.ws92{word-spacing:123.540075pt;}
.wsd4{word-spacing:128.648555pt;}
.ws96{word-spacing:139.291221pt;}
.ws93{word-spacing:144.825408pt;}
.wsd3{word-spacing:149.933888pt;}
.ws95{word-spacing:156.276917pt;}
.ws97{word-spacing:160.576555pt;}
.wsd2{word-spacing:166.919584pt;}
.wsd5{word-spacing:181.861888pt;}
.ws98{word-spacing:188.204917pt;}
._5{margin-left:-1926.905493pt;}
._6{margin-left:-958.552907pt;}
._9{margin-left:-199.380958pt;}
._34{margin-left:-19.930533pt;}
._37{margin-left:-17.850347pt;}
._31{margin-left:-14.789573pt;}
._32{margin-left:-13.864240pt;}
._1{margin-left:-7.578053pt;}
._3{margin-left:-4.262507pt;}
._2{margin-left:-2.873600pt;}
._35{width:1.229360pt;}
._33{width:3.762587pt;}
._36{width:9.266394pt;}
._4{width:10.642667pt;}
._20{width:12.405360pt;}
._1f{width:14.176032pt;}
._7{width:21.285333pt;}
._30{width:95.741429pt;}
._1d{width:140.398059pt;}
._e{width:156.362059pt;}
._14{width:159.001440pt;}
._d{width:161.683392pt;}
._b{width:172.751765pt;}
._c{width:180.286773pt;}
._17{width:188.290059pt;}
._12{width:190.929440pt;}
._26{width:196.037920pt;}
._3a{width:202.380949pt;}
._11{width:204.679765pt;}
._1b{width:212.214773pt;}
._38{width:217.323253pt;}
._2b{width:223.666283pt;}
._23{width:227.965920pt;}
._22{width:233.329824pt;}
._39{width:234.308949pt;}
._f{width:242.567659pt;}
._25{width:265.257824pt;}
._21{width:271.643424pt;}
._2e{width:272.750261pt;}
._27{width:276.794475pt;}
._a{width:277.816171pt;}
._28{width:279.518997pt;}
._13{width:282.967221pt;}
._15{width:285.691744pt;}
._2a{width:298.335232pt;}
._18{width:304.507979pt;}
._2c{width:306.168235pt;}
._24{width:307.530496pt;}
._1c{width:311.234144pt;}
._1a{width:312.340981pt;}
._10{width:313.703243pt;}
._19{width:318.896864pt;}
._2d{width:337.670528pt;}
._29{width:340.735616pt;}
._1e{width:343.843275pt;}
._16{width:346.908363pt;}
._8{width:677.494213pt;}
._2f{width:956.466123pt;}
._0{width:1217.709456pt;}
._3b{width:1427.032683pt;}
.fs6{font-size:23.946667pt;}
.fs1{font-size:31.930667pt;}
.fs4{font-size:34.592000pt;}
.fs5{font-size:37.253333pt;}
.fs0{font-size:42.570667pt;}
.fs3{font-size:47.893333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:85.146667pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:61.699000pt;}
.y13b{bottom:86.914800pt;}
.y61{bottom:86.968580pt;}
.y64{bottom:86.975333pt;}
.y9c{bottom:86.996107pt;}
.ydb{bottom:94.630333pt;}
.y13a{bottom:97.559940pt;}
.y60{bottom:97.613720pt;}
.y63{bottom:98.948333pt;}
.y9b{bottom:100.298480pt;}
.y139{bottom:108.205080pt;}
.y5f{bottom:108.258860pt;}
.y62{bottom:110.921333pt;}
.y9a{bottom:113.600853pt;}
.yda{bottom:118.576333pt;}
.y138{bottom:118.850220pt;}
.y5c{bottom:118.854167pt;}
.y5e{bottom:118.904000pt;}
.y5d{bottom:122.562667pt;}
.y99{bottom:126.903227pt;}
.y137{bottom:129.495360pt;}
.y5b{bottom:129.499307pt;}
.yd9{bottom:130.549333pt;}
.y136{bottom:140.140500pt;}
.y5a{bottom:140.144447pt;}
.y98{bottom:140.205600pt;}
.yd8{bottom:142.522333pt;}
.y135{bottom:150.785640pt;}
.y59{bottom:150.789587pt;}
.y97{bottom:153.507973pt;}
.yd7{bottom:154.495333pt;}
.y38{bottom:159.525840pt;}
.y134{bottom:161.430780pt;}
.y58{bottom:161.434727pt;}
.yd6{bottom:166.468333pt;}
.y96{bottom:166.810347pt;}
.y133{bottom:172.075920pt;}
.y57{bottom:172.079867pt;}
.y37{bottom:172.828213pt;}
.yd5{bottom:178.441333pt;}
.y95{bottom:180.112720pt;}
.y132{bottom:182.721060pt;}
.y56{bottom:182.725007pt;}
.y36{bottom:186.130587pt;}
.yd4{bottom:190.414333pt;}
.y131{bottom:193.366200pt;}
.y55{bottom:193.370147pt;}
.y94{bottom:193.415093pt;}
.y35{bottom:199.432960pt;}
.yd3{bottom:202.387333pt;}
.y130{bottom:204.011340pt;}
.y54{bottom:204.015287pt;}
.y93{bottom:206.717467pt;}
.y34{bottom:212.735333pt;}
.yd2{bottom:214.360333pt;}
.y12f{bottom:214.656480pt;}
.y53{bottom:214.660427pt;}
.y92{bottom:220.019840pt;}
.y12e{bottom:225.301620pt;}
.y52{bottom:225.305567pt;}
.y33{bottom:226.037707pt;}
.yd1{bottom:226.333333pt;}
.y12d{bottom:235.946760pt;}
.y51{bottom:235.950707pt;}
.y32{bottom:239.340080pt;}
.y91{bottom:243.296000pt;}
.y12c{bottom:246.591900pt;}
.y50{bottom:246.595847pt;}
.yd0{bottom:246.946467pt;}
.yce{bottom:251.109527pt;}
.y31{bottom:252.642453pt;}
.y12b{bottom:257.237040pt;}
.y4f{bottom:257.240987pt;}
.ycd{bottom:261.754667pt;}
.ycf{bottom:265.908413pt;}
.y30{bottom:265.944827pt;}
.y12a{bottom:267.882180pt;}
.y4e{bottom:267.886127pt;}
.y90{bottom:273.826573pt;}
.y129{bottom:278.527320pt;}
.y4d{bottom:278.531267pt;}
.y2f{bottom:279.247200pt;}
.y8f{bottom:284.471713pt;}
.ycc{bottom:286.201667pt;}
.y14e{bottom:286.202000pt;}
.y128{bottom:289.172460pt;}
.y4c{bottom:289.176407pt;}
.y2e{bottom:292.549573pt;}
.y8e{bottom:295.116853pt;}
.ycb{bottom:298.174667pt;}
.y14d{bottom:298.175000pt;}
.y127{bottom:299.817600pt;}
.y4b{bottom:299.821547pt;}
.y8d{bottom:305.761993pt;}
.y2d{bottom:305.851947pt;}
.y14c{bottom:310.148000pt;}
.y126{bottom:310.462740pt;}
.y4a{bottom:310.466687pt;}
.y8c{bottom:316.407133pt;}
.y2c{bottom:319.154320pt;}
.y125{bottom:321.107880pt;}
.y49{bottom:321.111827pt;}
.y8b{bottom:327.052273pt;}
.y124{bottom:331.753020pt;}
.y48{bottom:331.756967pt;}
.y2b{bottom:332.456693pt;}
.y8a{bottom:337.697413pt;}
.yb5{bottom:338.795307pt;}
.y123{bottom:342.398160pt;}
.y47{bottom:342.402107pt;}
.y2a{bottom:345.759067pt;}
.y89{bottom:348.342553pt;}
.yb4{bottom:352.097680pt;}
.y122{bottom:353.043300pt;}
.y46{bottom:353.047247pt;}
.yf6{bottom:353.092667pt;}
.y88{bottom:358.987693pt;}
.y29{bottom:359.061440pt;}
.y121{bottom:363.688440pt;}
.y45{bottom:363.692387pt;}
.yb3{bottom:365.400053pt;}
.yf5{bottom:366.395040pt;}
.y87{bottom:369.632833pt;}
.y28{bottom:372.363813pt;}
.y120{bottom:374.333580pt;}
.y44{bottom:374.337527pt;}
.yb2{bottom:378.702427pt;}
.yf4{bottom:379.697413pt;}
.y86{bottom:380.277973pt;}
.y11f{bottom:384.978720pt;}
.y43{bottom:384.982667pt;}
.y27{bottom:385.666187pt;}
.y85{bottom:390.923113pt;}
.yb1{bottom:392.004800pt;}
.yf3{bottom:392.999787pt;}
.y26{bottom:398.968560pt;}
.y11e{bottom:399.284000pt;}
.y84{bottom:401.568253pt;}
.yb0{bottom:405.307173pt;}
.yf2{bottom:406.302160pt;}
.y42{bottom:406.978720pt;}
.y83{bottom:412.213393pt;}
.y25{bottom:412.270933pt;}
.yf1{bottom:419.604533pt;}
.y82{bottom:422.858533pt;}
.y11d{bottom:423.562923pt;}
.y24{bottom:425.573307pt;}
.yaf{bottom:429.589093pt;}
.yf0{bottom:432.906907pt;}
.y81{bottom:433.503673pt;}
.y23{bottom:438.875680pt;}
.y41{bottom:438.911600pt;}
.y11c{bottom:443.188000pt;}
.y80{bottom:444.148813pt;}
.yef{bottom:446.209280pt;}
.y22{bottom:452.178053pt;}
.y40{bottom:452.213973pt;}
.y7f{bottom:454.793953pt;}
.yee{bottom:459.511653pt;}
.yae{bottom:461.521973pt;}
.y7e{bottom:465.439093pt;}
.y21{bottom:465.480427pt;}
.y3f{bottom:465.516347pt;}
.yed{bottom:472.814027pt;}
.y11b{bottom:472.873893pt;}
.yad{bottom:474.824347pt;}
.y7d{bottom:476.084233pt;}
.y20{bottom:478.782800pt;}
.y3e{bottom:478.818720pt;}
.yec{bottom:486.116400pt;}
.y11a{bottom:486.176267pt;}
.y7c{bottom:486.729373pt;}
.yac{bottom:488.126720pt;}
.y1f{bottom:492.085173pt;}
.y3d{bottom:492.121093pt;}
.y7b{bottom:497.374513pt;}
.yeb{bottom:499.418773pt;}
.y119{bottom:499.478640pt;}
.yab{bottom:501.429093pt;}
.y1e{bottom:505.387547pt;}
.y3c{bottom:505.423467pt;}
.y7a{bottom:508.019653pt;}
.yea{bottom:512.721147pt;}
.y118{bottom:512.781013pt;}
.yaa{bottom:514.731467pt;}
.y79{bottom:518.664793pt;}
.y1d{bottom:518.689920pt;}
.y3b{bottom:518.725840pt;}
.ye9{bottom:526.023520pt;}
.y117{bottom:526.083387pt;}
.ya9{bottom:528.033840pt;}
.y78{bottom:529.309933pt;}
.y1c{bottom:531.992293pt;}
.y3a{bottom:532.028213pt;}
.ye8{bottom:539.325893pt;}
.y116{bottom:539.385760pt;}
.y77{bottom:539.955073pt;}
.ya8{bottom:541.336213pt;}
.y1b{bottom:545.294667pt;}
.y39{bottom:545.330587pt;}
.y76{bottom:550.600213pt;}
.ye7{bottom:552.628267pt;}
.y115{bottom:552.688133pt;}
.ya7{bottom:554.638587pt;}
.y75{bottom:561.245353pt;}
.ye6{bottom:565.930640pt;}
.y114{bottom:565.990507pt;}
.ya6{bottom:567.940960pt;}
.y74{bottom:571.890493pt;}
.ye5{bottom:579.233013pt;}
.y113{bottom:579.292880pt;}
.ya5{bottom:581.243333pt;}
.y1a{bottom:581.906027pt;}
.y73{bottom:582.535633pt;}
.y66{bottom:588.728107pt;}
.ye4{bottom:592.535387pt;}
.y112{bottom:592.595253pt;}
.y72{bottom:593.180773pt;}
.ya4{bottom:594.545707pt;}
.y19{bottom:595.208400pt;}
.y71{bottom:603.825913pt;}
.ye3{bottom:605.837760pt;}
.y111{bottom:605.897627pt;}
.ya3{bottom:607.848080pt;}
.y18{bottom:608.510773pt;}
.y70{bottom:614.471053pt;}
.ye2{bottom:619.140133pt;}
.y110{bottom:619.200000pt;}
.ya2{bottom:621.150453pt;}
.y17{bottom:621.813147pt;}
.y6f{bottom:625.116193pt;}
.ye1{bottom:632.442507pt;}
.y10f{bottom:632.502373pt;}
.ya1{bottom:634.452827pt;}
.y16{bottom:635.115520pt;}
.y6c{bottom:635.751633pt;}
.y6e{bottom:635.761333pt;}
.y6d{bottom:639.420000pt;}
.ye0{bottom:645.744880pt;}
.y10e{bottom:645.804747pt;}
.y6b{bottom:646.396773pt;}
.ya0{bottom:647.755200pt;}
.y15{bottom:648.417893pt;}
.y6a{bottom:657.041913pt;}
.ydf{bottom:659.047253pt;}
.y10d{bottom:659.107120pt;}
.y9f{bottom:661.057573pt;}
.y14{bottom:661.720267pt;}
.y69{bottom:667.687053pt;}
.yde{bottom:672.349627pt;}
.y10c{bottom:672.409493pt;}
.y9e{bottom:674.359947pt;}
.y13{bottom:675.022640pt;}
.y68{bottom:678.332193pt;}
.ydd{bottom:685.652000pt;}
.y10b{bottom:685.711867pt;}
.y9d{bottom:687.662320pt;}
.y12{bottom:688.325013pt;}
.y67{bottom:688.977333pt;}
.y10a{bottom:699.014240pt;}
.y11{bottom:701.627387pt;}
.y109{bottom:712.316613pt;}
.y10{bottom:714.929760pt;}
.y108{bottom:725.618987pt;}
.yca{bottom:726.893333pt;}
.yf{bottom:728.232133pt;}
.yc9{bottom:728.889333pt;}
.yc8{bottom:732.548000pt;}
.y14b{bottom:736.878333pt;}
.y107{bottom:738.921360pt;}
.ye{bottom:741.534507pt;}
.yc7{bottom:748.851667pt;}
.y106{bottom:752.223733pt;}
.yd{bottom:754.836880pt;}
.y14a{bottom:760.824333pt;}
.y105{bottom:765.526107pt;}
.yc{bottom:768.139253pt;}
.y149{bottom:772.797333pt;}
.yc6{bottom:772.797667pt;}
.y104{bottom:778.828480pt;}
.yb{bottom:781.441627pt;}
.y148{bottom:784.770333pt;}
.yc5{bottom:784.770667pt;}
.y103{bottom:792.130853pt;}
.ya{bottom:794.744000pt;}
.y147{bottom:796.743333pt;}
.yc4{bottom:796.743667pt;}
.y102{bottom:805.433227pt;}
.y146{bottom:808.716333pt;}
.yc3{bottom:808.716667pt;}
.y101{bottom:818.735600pt;}
.y145{bottom:820.689333pt;}
.yc2{bottom:820.689667pt;}
.y9{bottom:824.012000pt;}
.y100{bottom:832.037973pt;}
.y144{bottom:832.662333pt;}
.yc1{bottom:832.662667pt;}
.y143{bottom:844.635333pt;}
.yc0{bottom:844.635667pt;}
.yff{bottom:845.340347pt;}
.y8{bottom:846.624160pt;}
.y142{bottom:856.608333pt;}
.ybf{bottom:856.608667pt;}
.yfe{bottom:858.642720pt;}
.y6{bottom:865.254667pt;}
.y7{bottom:867.649333pt;}
.y141{bottom:868.581333pt;}
.ybe{bottom:868.581667pt;}
.yfd{bottom:871.945093pt;}
.ybd{bottom:880.554667pt;}
.yfc{bottom:885.247467pt;}
.y15d{bottom:889.181180pt;}
.y156{bottom:889.190493pt;}
.y140{bottom:889.194467pt;}
.y5{bottom:889.201833pt;}
.y13e{bottom:893.357527pt;}
.yfb{bottom:898.549840pt;}
.y15c{bottom:899.826320pt;}
.y155{bottom:899.835633pt;}
.ybc{bottom:901.176000pt;}
.y13d{bottom:904.002667pt;}
.yb9{bottom:905.330860pt;}
.y13f{bottom:908.156413pt;}
.y15b{bottom:910.471460pt;}
.y154{bottom:910.480773pt;}
.yfa{bottom:911.852213pt;}
.y4{bottom:913.149333pt;}
.ybb{bottom:914.313333pt;}
.yb8{bottom:915.976000pt;}
.yba{bottom:920.129747pt;}
.y15a{bottom:921.116600pt;}
.y153{bottom:921.125913pt;}
.yf9{bottom:925.154587pt;}
.y13c{bottom:928.450000pt;}
.y159{bottom:931.761740pt;}
.y152{bottom:931.771053pt;}
.yf8{bottom:938.456960pt;}
.yb7{bottom:940.423000pt;}
.y158{bottom:942.406880pt;}
.y151{bottom:942.416193pt;}
.yf7{bottom:951.759333pt;}
.yb6{bottom:952.396000pt;}
.y157{bottom:953.052020pt;}
.y150{bottom:953.061333pt;}
.y3{bottom:961.044667pt;}
.y2{bottom:973.017667pt;}
.ydc{bottom:984.953256pt;}
.y1{bottom:984.990667pt;}
.y14f{bottom:987.081789pt;}
.h6{height:23.060640pt;}
.ha{height:35.278907pt;}
.h5{height:35.874960pt;}
.h9{height:40.314421pt;}
.h1{height:40.995552pt;}
.h8{height:41.145195pt;}
.h4{height:45.354987pt;}
.h3{height:46.121280pt;}
.h7{height:61.187500pt;}
.h2{height:81.996240pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:77.397333pt;}
.x21{left:82.469333pt;}
.x16{left:86.710667pt;}
.x13{left:88.040000pt;}
.xc{left:89.370667pt;}
.x22{left:92.762667pt;}
.x35{left:93.762667pt;}
.x1d{left:94.821353pt;}
.x2{left:99.164000pt;}
.x2f{left:103.898667pt;}
.x32{left:119.671099pt;}
.xb{left:125.292000pt;}
.xa{left:137.265333pt;}
.x1b{left:153.482667pt;}
.x34{left:155.448416pt;}
.x31{left:169.868193pt;}
.x33{left:171.096464pt;}
.x20{left:173.189333pt;}
.x9{left:175.574667pt;}
.x3{left:180.628073pt;}
.x8{left:183.587387pt;}
.x19{left:209.978667pt;}
.x30{left:220.476847pt;}
.x4{left:225.406667pt;}
.x17{left:262.820000pt;}
.x18{left:269.093333pt;}
.x5{left:276.987787pt;}
.x1e{left:303.058173pt;}
.x1c{left:304.502107pt;}
.x6{left:349.210933pt;}
.x14{left:398.007667pt;}
.xd{left:420.624907pt;}
.x2e{left:425.288987pt;}
.x25{left:426.225333pt;}
.x10{left:429.952000pt;}
.x2c{left:431.284568pt;}
.xe{left:432.586267pt;}
.x23{left:435.212000pt;}
.x2a{left:436.792000pt;}
.x27{left:438.062687pt;}
.x24{left:441.969333pt;}
.x26{left:463.804589pt;}
.xf{left:498.020533pt;}
.x29{left:513.109527pt;}
.x2b{left:525.546667pt;}
.x1a{left:543.148640pt;}
.x2d{left:549.305333pt;}
.x7{left:558.280880pt;}
.x28{left:563.718180pt;}
.x11{left:617.518667pt;}
.x12{left:624.257333pt;}
.x1f{left:735.565333pt;}
.x15{left:790.666667pt;}
}

