
    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_c87d4eb87e49264050fdc7fe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.179000;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_76f623818aebb096a583d7eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_630cfb3bcad94146f44f5c13.woff')format("woff");}.ff3{font-family:ff3;line-height:1.144000;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_77f33005a94f28b3ff4ddcec.woff')format("woff");}.ff4{font-family:ff4;line-height:1.071000;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_1fd4a8da528cacb266349988.woff')format("woff");}.ff5{font-family:ff5;line-height:1.147000;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_e1c91a2c92535ad97e1bf420.woff')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_daf63b9b456a76884784ebc2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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;}
.m4{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.187476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187476,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224984,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.875000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.981100px;}
.v1{vertical-align:34.684800px;}
.v2{vertical-align:41.725200px;}
.ls28{letter-spacing:-1.543500px;}
.ls37{letter-spacing:-1.423800px;}
.ls2a{letter-spacing:-1.348200px;}
.ls29{letter-spacing:-1.341900px;}
.ls1{letter-spacing:-1.142400px;}
.ls21{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-1.001700px;}
.ls2c{letter-spacing:-0.680400px;}
.lsd{letter-spacing:-0.676200px;}
.ls2b{letter-spacing:-0.674100px;}
.lse{letter-spacing:-0.667800px;}
.lsb{letter-spacing:-0.420000px;}
.ls3f{letter-spacing:-0.359100px;}
.ls40{letter-spacing:-0.346500px;}
.ls3d{letter-spacing:-0.340200px;}
.lsc{letter-spacing:-0.338100px;}
.ls3e{letter-spacing:-0.333900px;}
.ls1f{letter-spacing:-0.031500px;}
.ls42{letter-spacing:-0.025200px;}
.ls14{letter-spacing:-0.018900px;}
.ls6{letter-spacing:-0.017100px;}
.ls18{letter-spacing:-0.016800px;}
.ls1c{letter-spacing:-0.013800px;}
.ls1d{letter-spacing:-0.013200px;}
.ls13{letter-spacing:-0.012600px;}
.ls5{letter-spacing:-0.012000px;}
.ls7{letter-spacing:-0.011400px;}
.ls27{letter-spacing:-0.009600px;}
.ls32{letter-spacing:-0.009450px;}
.lsa{letter-spacing:-0.008400px;}
.ls3{letter-spacing:-0.007200px;}
.ls20{letter-spacing:-0.006900px;}
.ls12{letter-spacing:-0.006300px;}
.ls4{letter-spacing:-0.006000px;}
.ls8{letter-spacing:-0.005700px;}
.ls25{letter-spacing:-0.004800px;}
.ls33{letter-spacing:-0.004725px;}
.ls9{letter-spacing:-0.004200px;}
.ls2{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.006300px;}
.ls3a{letter-spacing:0.012600px;}
.ls22{letter-spacing:0.014400px;}
.ls24{letter-spacing:0.024000px;}
.ls2f{letter-spacing:0.025200px;}
.ls23{letter-spacing:0.028800px;}
.ls1e{letter-spacing:0.493667px;}
.ls3c{letter-spacing:0.573300px;}
.ls1b{letter-spacing:0.661500px;}
.ls0{letter-spacing:0.666900px;}
.ls1a{letter-spacing:0.693000px;}
.ls10{letter-spacing:0.900600px;}
.ls11{letter-spacing:0.946200px;}
.ls16{letter-spacing:0.989100px;}
.ls19{letter-spacing:0.995400px;}
.ls17{letter-spacing:1.001700px;}
.ls38{letter-spacing:8.127000px;}
.ls36{letter-spacing:9.569700px;}
.ls31{letter-spacing:10.483200px;}
.ls34{letter-spacing:10.502100px;}
.ls2e{letter-spacing:11.283300px;}
.ls30{letter-spacing:13.734000px;}
.ls41{letter-spacing:13.815900px;}
.ls3b{letter-spacing:14.017500px;}
.ls35{letter-spacing:17.123400px;}
.ls2d{letter-spacing:17.129700px;}
.lsf{letter-spacing:26.379600px;}
.ls39{letter-spacing:27.959400px;}
.ls15{letter-spacing:33.402600px;}
.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;}
}
.ws1d0{word-spacing:-33.824700px;}
.ws1d1{word-spacing:-33.818400px;}
.ws1f5{word-spacing:-30.510900px;}
.ws1d5{word-spacing:-30.429000px;}
.ws1d3{word-spacing:-27.978300px;}
.ws1d6{word-spacing:-27.178200px;}
.ws1f1{word-spacing:-24.822000px;}
.ws1d{word-spacing:-23.343600px;}
.ws63{word-spacing:-23.335200px;}
.wsad{word-spacing:-19.175100px;}
.ws78{word-spacing:-19.168200px;}
.ws79{word-spacing:-18.334800px;}
.wsae{word-spacing:-17.690400px;}
.ws1f2{word-spacing:-17.268300px;}
.ws1d8{word-spacing:-16.695000px;}
.ws1cc{word-spacing:-16.688700px;}
.ws1b1{word-spacing:-16.682400px;}
.ws0{word-spacing:-16.674000px;}
.ws1{word-spacing:-16.668000px;}
.ws1c{word-spacing:-15.834600px;}
.ws1d4{word-spacing:-15.346800px;}
.ws1ca{word-spacing:-12.521250px;}
.ws1d2{word-spacing:-12.516525px;}
.ws1c9{word-spacing:-12.511800px;}
.ws1e7{word-spacing:-9.147600px;}
.ws1e0{word-spacing:-9.141300px;}
.ws1fc{word-spacing:-9.135000px;}
.wsbd{word-spacing:-8.347500px;}
.ws1d7{word-spacing:-6.192900px;}
.ws1cb{word-spacing:-6.167700px;}
.ws1ce{word-spacing:-5.877900px;}
.ws87{word-spacing:-5.871600px;}
.ws3e{word-spacing:-5.865300px;}
.ws1cf{word-spacing:-5.600700px;}
.ws8{word-spacing:-5.184000px;}
.ws1f4{word-spacing:-4.176900px;}
.ws18f{word-spacing:-3.080700px;}
.ws1f7{word-spacing:-2.860200px;}
.ws1f6{word-spacing:-2.853900px;}
.ws1fa{word-spacing:-2.652300px;}
.ws1f3{word-spacing:-2.513700px;}
.ws136{word-spacing:-2.463300px;}
.wsde{word-spacing:-2.368800px;}
.wsb3{word-spacing:-2.312100px;}
.wsd0{word-spacing:-2.280600px;}
.ws1b0{word-spacing:-2.274300px;}
.ws99{word-spacing:-2.268000px;}
.ws185{word-spacing:-2.255400px;}
.ws10d{word-spacing:-2.236500px;}
.ws208{word-spacing:-2.186100px;}
.ws2{word-spacing:-2.175600px;}
.ws8b{word-spacing:-2.160900px;}
.ws162{word-spacing:-2.116800px;}
.ws1bf{word-spacing:-2.104200px;}
.ws209{word-spacing:-2.072700px;}
.ws1f8{word-spacing:-2.053800px;}
.ws1e3{word-spacing:-2.047500px;}
.ws54{word-spacing:-1.984500px;}
.ws1dd{word-spacing:-1.902600px;}
.ws13b{word-spacing:-1.896300px;}
.ws141{word-spacing:-1.827000px;}
.ws16a{word-spacing:-1.782900px;}
.ws188{word-spacing:-1.738800px;}
.ws12e{word-spacing:-1.732500px;}
.ws1de{word-spacing:-1.713600px;}
.ws1f9{word-spacing:-1.707300px;}
.wsdd{word-spacing:-1.656900px;}
.ws1e4{word-spacing:-1.587600px;}
.ws126{word-spacing:-1.524600px;}
.ws1f{word-spacing:-1.442100px;}
.ws1b6{word-spacing:-1.392300px;}
.ws14c{word-spacing:-1.373400px;}
.ws3{word-spacing:-1.365000px;}
.ws1a{word-spacing:-1.360800px;}
.ws16f{word-spacing:-1.354500px;}
.ws17f{word-spacing:-1.348200px;}
.ws147{word-spacing:-1.278900px;}
.wse7{word-spacing:-1.266300px;}
.ws114{word-spacing:-1.260000px;}
.ws161{word-spacing:-1.241100px;}
.ws45{word-spacing:-1.203300px;}
.ws1e6{word-spacing:-1.197000px;}
.wsc1{word-spacing:-1.152900px;}
.ws172{word-spacing:-1.146600px;}
.ws9e{word-spacing:-1.127700px;}
.wsef{word-spacing:-1.108800px;}
.ws151{word-spacing:-1.102500px;}
.ws9c{word-spacing:-1.089900px;}
.wsed{word-spacing:-1.071000px;}
.wsd9{word-spacing:-1.039500px;}
.ws144{word-spacing:-1.026900px;}
.ws21{word-spacing:-1.026000px;}
.ws16e{word-spacing:-1.014300px;}
.ws1fd{word-spacing:-1.001700px;}
.ws9a{word-spacing:-0.989100px;}
.ws198{word-spacing:-0.970200px;}
.ws157{word-spacing:-0.945000px;}
.ws1c3{word-spacing:-0.894600px;}
.ws130{word-spacing:-0.869400px;}
.ws106{word-spacing:-0.837900px;}
.ws122{word-spacing:-0.831600px;}
.ws140{word-spacing:-0.825300px;}
.ws173{word-spacing:-0.793800px;}
.ws202{word-spacing:-0.730800px;}
.ws13d{word-spacing:-0.724500px;}
.ws19b{word-spacing:-0.718200px;}
.wsce{word-spacing:-0.693000px;}
.ws155{word-spacing:-0.686700px;}
.ws4c{word-spacing:-0.674100px;}
.ws17a{word-spacing:-0.548100px;}
.ws179{word-spacing:-0.516600px;}
.ws10a{word-spacing:-0.504000px;}
.wse{word-spacing:-0.484500px;}
.wsb1{word-spacing:-0.428400px;}
.ws18{word-spacing:-0.399000px;}
.wsa0{word-spacing:-0.396900px;}
.ws159{word-spacing:-0.390600px;}
.ws1cd{word-spacing:-0.352800px;}
.ws119{word-spacing:-0.346500px;}
.ws124{word-spacing:-0.340200px;}
.ws7a{word-spacing:-0.327600px;}
.ws12f{word-spacing:-0.321300px;}
.ws1a7{word-spacing:-0.315000px;}
.ws102{word-spacing:-0.308700px;}
.ws3d{word-spacing:-0.270900px;}
.ws3c{word-spacing:-0.258300px;}
.ws8a{word-spacing:-0.245700px;}
.wsb{word-spacing:-0.176700px;}
.ws164{word-spacing:-0.176400px;}
.ws16d{word-spacing:-0.170100px;}
.wsfd{word-spacing:-0.163800px;}
.ws4e{word-spacing:-0.157500px;}
.ws103{word-spacing:-0.138600px;}
.wse8{word-spacing:-0.132300px;}
.ws134{word-spacing:-0.107100px;}
.ws1eb{word-spacing:-0.100800px;}
.ws59{word-spacing:-0.081900px;}
.ws158{word-spacing:-0.069300px;}
.ws8f{word-spacing:-0.063000px;}
.wse4{word-spacing:-0.050400px;}
.wsec{word-spacing:-0.037800px;}
.ws1c8{word-spacing:-0.031500px;}
.ws6{word-spacing:0.000000px;}
.ws35{word-spacing:0.005700px;}
.ws12a{word-spacing:0.018900px;}
.ws70{word-spacing:0.025200px;}
.wsf0{word-spacing:0.063000px;}
.ws56{word-spacing:0.100800px;}
.ws73{word-spacing:0.107100px;}
.wsaf{word-spacing:0.113400px;}
.ws17e{word-spacing:0.126000px;}
.ws120{word-spacing:0.144900px;}
.ws131{word-spacing:0.201600px;}
.ws171{word-spacing:0.226800px;}
.ws14e{word-spacing:0.245700px;}
.ws154{word-spacing:0.258300px;}
.wsd5{word-spacing:0.270900px;}
.ws195{word-spacing:0.296100px;}
.ws98{word-spacing:0.308700px;}
.ws112{word-spacing:0.321300px;}
.wsd1{word-spacing:0.333900px;}
.wsc3{word-spacing:0.365400px;}
.wsc8{word-spacing:0.384300px;}
.ws1ff{word-spacing:0.390600px;}
.ws14d{word-spacing:0.403200px;}
.ws1dc{word-spacing:0.409500px;}
.ws170{word-spacing:0.415800px;}
.wsa4{word-spacing:0.428400px;}
.ws169{word-spacing:0.441000px;}
.ws19a{word-spacing:0.447300px;}
.ws1c4{word-spacing:0.472500px;}
.ws5b{word-spacing:0.491400px;}
.ws1a3{word-spacing:0.554400px;}
.wsa8{word-spacing:0.567000px;}
.ws1bb{word-spacing:0.579600px;}
.ws19f{word-spacing:0.667800px;}
.wsba{word-spacing:0.674100px;}
.ws142{word-spacing:0.699300px;}
.ws24{word-spacing:0.706800px;}
.ws1fb{word-spacing:0.724500px;}
.ws150{word-spacing:0.730800px;}
.wsda{word-spacing:0.800100px;}
.ws7e{word-spacing:0.812700px;}
.ws49{word-spacing:0.825300px;}
.wsa1{word-spacing:0.831600px;}
.ws7c{word-spacing:0.844200px;}
.wsb2{word-spacing:0.850500px;}
.ws12c{word-spacing:0.863100px;}
.wsb7{word-spacing:0.869400px;}
.ws11{word-spacing:0.877800px;}
.ws1a0{word-spacing:0.888300px;}
.ws36{word-spacing:0.889200px;}
.ws1bd{word-spacing:0.951300px;}
.ws5c{word-spacing:0.963900px;}
.ws1df{word-spacing:0.982800px;}
.ws86{word-spacing:1.039500px;}
.ws81{word-spacing:1.058400px;}
.ws14b{word-spacing:1.071000px;}
.ws11f{word-spacing:1.077300px;}
.ws55{word-spacing:1.089900px;}
.ws85{word-spacing:1.102500px;}
.ws19{word-spacing:1.113000px;}
.ws76{word-spacing:1.115100px;}
.ws8e{word-spacing:1.146600px;}
.ws14{word-spacing:1.163400px;}
.ws123{word-spacing:1.165500px;}
.ws40{word-spacing:1.167600px;}
.ws1c6{word-spacing:1.178100px;}
.wsff{word-spacing:1.197000px;}
.ws145{word-spacing:1.222200px;}
.ws6a{word-spacing:1.253700px;}
.ws64{word-spacing:1.272600px;}
.ws23{word-spacing:1.276800px;}
.ws1fe{word-spacing:1.297800px;}
.ws17b{word-spacing:1.310400px;}
.wscc{word-spacing:1.315200px;}
.wscd{word-spacing:1.320000px;}
.ws15d{word-spacing:1.329300px;}
.wscb{word-spacing:1.329600px;}
.wsca{word-spacing:1.334400px;}
.ws148{word-spacing:1.348200px;}
.ws1ef{word-spacing:1.354500px;}
.ws165{word-spacing:1.360800px;}
.wsd8{word-spacing:1.404900px;}
.ws109{word-spacing:1.411200px;}
.ws13f{word-spacing:1.417500px;}
.ws1e1{word-spacing:1.449000px;}
.wsf4{word-spacing:1.455300px;}
.ws177{word-spacing:1.461600px;}
.ws25{word-spacing:1.504800px;}
.ws28{word-spacing:1.510500px;}
.wscf{word-spacing:1.524600px;}
.ws1c2{word-spacing:1.543500px;}
.wsc5{word-spacing:1.581300px;}
.ws29{word-spacing:1.590300px;}
.ws15c{word-spacing:1.600200px;}
.ws1b7{word-spacing:1.625400px;}
.ws1a5{word-spacing:1.644300px;}
.ws181{word-spacing:1.650600px;}
.wsd2{word-spacing:1.656900px;}
.ws6c{word-spacing:1.663200px;}
.ws9{word-spacing:1.668000px;}
.ws44{word-spacing:1.669500px;}
.ws52{word-spacing:1.675800px;}
.ws13a{word-spacing:1.682100px;}
.ws2e{word-spacing:1.710000px;}
.ws96{word-spacing:1.726200px;}
.ws1b9{word-spacing:1.732500px;}
.wsc9{word-spacing:1.751400px;}
.ws7b{word-spacing:1.764000px;}
.ws200{word-spacing:1.770300px;}
.ws206{word-spacing:1.776600px;}
.ws8d{word-spacing:1.808100px;}
.ws143{word-spacing:1.820700px;}
.ws9d{word-spacing:1.839600px;}
.ws1ba{word-spacing:1.864800px;}
.wsc6{word-spacing:1.871100px;}
.ws88{word-spacing:1.877400px;}
.ws149{word-spacing:1.890000px;}
.wsb6{word-spacing:1.911300px;}
.wsd6{word-spacing:1.918200px;}
.ws113{word-spacing:1.921500px;}
.ws4a{word-spacing:1.953000px;}
.wsd{word-spacing:1.955100px;}
.ws1ac{word-spacing:1.978200px;}
.ws166{word-spacing:1.984500px;}
.ws7{word-spacing:2.001600px;}
.ws189{word-spacing:2.009700px;}
.wsd3{word-spacing:2.022300px;}
.ws89{word-spacing:2.034900px;}
.ws19d{word-spacing:2.110500px;}
.ws3f{word-spacing:2.129400px;}
.ws1e8{word-spacing:2.142000px;}
.ws30{word-spacing:2.148900px;}
.wsbc{word-spacing:2.154600px;}
.wsf{word-spacing:2.171700px;}
.ws107{word-spacing:2.179800px;}
.ws2c{word-spacing:2.205900px;}
.ws1a8{word-spacing:2.211300px;}
.ws127{word-spacing:2.217600px;}
.wsb0{word-spacing:2.255400px;}
.wsf9{word-spacing:2.280600px;}
.ws27{word-spacing:2.291400px;}
.ws207{word-spacing:2.305800px;}
.ws1a1{word-spacing:2.335200px;}
.ws67{word-spacing:2.349900px;}
.ws2f{word-spacing:2.394000px;}
.ws11b{word-spacing:2.412900px;}
.ws17{word-spacing:2.419200px;}
.ws26{word-spacing:2.422500px;}
.ws42{word-spacing:2.438100px;}
.wsee{word-spacing:2.450700px;}
.ws6d{word-spacing:2.457000px;}
.ws15f{word-spacing:2.463300px;}
.wsa2{word-spacing:2.469600px;}
.ws1a9{word-spacing:2.482200px;}
.ws133{word-spacing:2.488500px;}
.ws156{word-spacing:2.538900px;}
.ws1b3{word-spacing:2.551500px;}
.ws132{word-spacing:2.557800px;}
.ws41{word-spacing:2.576700px;}
.ws183{word-spacing:2.589300px;}
.ws60{word-spacing:2.614500px;}
.ws194{word-spacing:2.652300px;}
.wsaa{word-spacing:2.683800px;}
.ws74{word-spacing:2.696400px;}
.ws16b{word-spacing:2.702700px;}
.ws62{word-spacing:2.721600px;}
.ws20{word-spacing:2.724600px;}
.wsc4{word-spacing:2.740500px;}
.wsf2{word-spacing:2.746800px;}
.ws50{word-spacing:2.778300px;}
.ws14f{word-spacing:2.797200px;}
.ws22{word-spacing:2.832900px;}
.ws5{word-spacing:2.835600px;}
.wsc2{word-spacing:2.860200px;}
.ws104{word-spacing:2.872800px;}
.ws94{word-spacing:2.879100px;}
.wsb9{word-spacing:2.891700px;}
.ws9b{word-spacing:2.904300px;}
.ws69{word-spacing:2.910600px;}
.ws121{word-spacing:2.923200px;}
.ws51{word-spacing:2.929500px;}
.ws10{word-spacing:2.935500px;}
.ws4f{word-spacing:2.961000px;}
.ws1c1{word-spacing:2.967300px;}
.ws1a2{word-spacing:2.979900px;}
.ws182{word-spacing:2.998800px;}
.ws72{word-spacing:3.036600px;}
.ws1ed{word-spacing:3.042900px;}
.ws176{word-spacing:3.074400px;}
.ws65{word-spacing:3.087000px;}
.wsd4{word-spacing:3.093300px;}
.ws2a{word-spacing:3.095100px;}
.ws19c{word-spacing:3.124800px;}
.ws80{word-spacing:3.187800px;}
.ws115{word-spacing:3.200400px;}
.ws1b8{word-spacing:3.206700px;}
.ws1ee{word-spacing:3.219300px;}
.ws14a{word-spacing:3.250800px;}
.wsb4{word-spacing:3.263400px;}
.wse6{word-spacing:3.288600px;}
.ws146{word-spacing:3.332700px;}
.ws174{word-spacing:3.357900px;}
.wse1{word-spacing:3.370500px;}
.ws17d{word-spacing:3.395700px;}
.ws12{word-spacing:3.425700px;}
.ws82{word-spacing:3.427200px;}
.ws1a6{word-spacing:3.477600px;}
.wsb5{word-spacing:3.515400px;}
.ws1b5{word-spacing:3.534300px;}
.ws10f{word-spacing:3.540600px;}
.ws2b{word-spacing:3.585300px;}
.ws75{word-spacing:3.609900px;}
.wsf8{word-spacing:3.616200px;}
.wsa7{word-spacing:3.622500px;}
.ws137{word-spacing:3.635100px;}
.wseb{word-spacing:3.691800px;}
.ws3b{word-spacing:3.748500px;}
.ws53{word-spacing:3.792600px;}
.ws175{word-spacing:3.798900px;}
.ws17c{word-spacing:3.849300px;}
.ws105{word-spacing:3.861900px;}
.ws6f{word-spacing:3.880800px;}
.ws16c{word-spacing:3.887100px;}
.ws32{word-spacing:3.961500px;}
.ws13e{word-spacing:3.975300px;}
.ws19e{word-spacing:3.994200px;}
.ws13c{word-spacing:4.006800px;}
.ws197{word-spacing:4.044600px;}
.ws168{word-spacing:4.069800px;}
.ws58{word-spacing:4.076100px;}
.ws1b{word-spacing:4.082400px;}
.wsab{word-spacing:4.101300px;}
.ws160{word-spacing:4.113900px;}
.ws47{word-spacing:4.120200px;}
.wsea{word-spacing:4.126500px;}
.ws184{word-spacing:4.132800px;}
.ws18e{word-spacing:4.170600px;}
.ws6b{word-spacing:4.183200px;}
.wsbb{word-spacing:4.233600px;}
.ws1ab{word-spacing:4.239900px;}
.ws3a{word-spacing:4.252500px;}
.ws135{word-spacing:4.258800px;}
.ws192{word-spacing:4.296600px;}
.ws5f{word-spacing:4.328100px;}
.ws68{word-spacing:4.353300px;}
.ws10b{word-spacing:4.391100px;}
.ws1e{word-spacing:4.400400px;}
.ws11a{word-spacing:4.441500px;}
.ws11e{word-spacing:4.454100px;}
.ws7f{word-spacing:4.485600px;}
.ws18a{word-spacing:4.491900px;}
.ws116{word-spacing:4.498200px;}
.ws15e{word-spacing:4.567500px;}
.ws95{word-spacing:4.573800px;}
.ws1ec{word-spacing:4.599000px;}
.wsf3{word-spacing:4.617900px;}
.ws90{word-spacing:4.636800px;}
.wsb8{word-spacing:4.693500px;}
.ws12d{word-spacing:4.712400px;}
.ws1b4{word-spacing:4.737600px;}
.ws11d{word-spacing:4.750200px;}
.ws199{word-spacing:4.769100px;}
.ws1d9{word-spacing:4.775400px;}
.ws43{word-spacing:4.851000px;}
.ws5a{word-spacing:4.869900px;}
.wse2{word-spacing:4.989600px;}
.ws13{word-spacing:5.027400px;}
.ws201{word-spacing:5.033700px;}
.ws1be{word-spacing:5.046300px;}
.ws180{word-spacing:5.084100px;}
.ws20b{word-spacing:5.159700px;}
.ws190{word-spacing:5.172300px;}
.ws111{word-spacing:5.229000px;}
.ws117{word-spacing:5.260500px;}
.ws1b2{word-spacing:5.310900px;}
.ws16{word-spacing:5.334000px;}
.wsdb{word-spacing:5.361300px;}
.wsac{word-spacing:5.367600px;}
.ws1aa{word-spacing:5.399100px;}
.ws1af{word-spacing:5.418000px;}
.ws46{word-spacing:5.462100px;}
.wsfe{word-spacing:5.468400px;}
.ws84{word-spacing:5.512500px;}
.ws4b{word-spacing:5.537700px;}
.ws4d{word-spacing:5.701500px;}
.ws61{word-spacing:5.720400px;}
.wsa{word-spacing:5.739900px;}
.wsa6{word-spacing:5.770800px;}
.wsc0{word-spacing:5.896800px;}
.ws10e{word-spacing:5.909400px;}
.ws2d{word-spacing:5.933700px;}
.wsa3{word-spacing:5.972400px;}
.ws18c{word-spacing:6.111000px;}
.ws20a{word-spacing:6.155100px;}
.ws18b{word-spacing:6.318900px;}
.ws1bc{word-spacing:6.400800px;}
.wsf1{word-spacing:6.432300px;}
.wsa5{word-spacing:6.507900px;}
.ws31{word-spacing:6.617700px;}
.ws11c{word-spacing:6.640200px;}
.ws10c{word-spacing:6.709500px;}
.ws153{word-spacing:6.816600px;}
.ws66{word-spacing:6.848100px;}
.wsdc{word-spacing:6.885900px;}
.wsa9{word-spacing:6.999300px;}
.wsc7{word-spacing:7.030800px;}
.wsdf{word-spacing:7.062300px;}
.ws138{word-spacing:7.112700px;}
.ws57{word-spacing:7.194600px;}
.ws100{word-spacing:7.200900px;}
.ws1ad{word-spacing:7.213500px;}
.ws167{word-spacing:7.282800px;}
.ws18d{word-spacing:7.503300px;}
.ws12b{word-spacing:7.534800px;}
.ws1e2{word-spacing:7.578900px;}
.ws152{word-spacing:7.654500px;}
.ws163{word-spacing:7.679700px;}
.ws139{word-spacing:7.686000px;}
.ws1ae{word-spacing:7.812000px;}
.ws20c{word-spacing:7.900200px;}
.ws1e5{word-spacing:7.988400px;}
.ws9f{word-spacing:8.013600px;}
.ws1a4{word-spacing:8.026200px;}
.wsfa{word-spacing:8.101800px;}
.wse3{word-spacing:8.158500px;}
.ws118{word-spacing:8.202600px;}
.wsfb{word-spacing:8.215200px;}
.wsd7{word-spacing:8.227800px;}
.ws6e{word-spacing:8.416800px;}
.ws91{word-spacing:8.467200px;}
.ws1c5{word-spacing:8.498700px;}
.ws83{word-spacing:8.511300px;}
.ws1c7{word-spacing:8.712900px;}
.ws71{word-spacing:8.952300px;}
.ws15a{word-spacing:8.977500px;}
.ws15b{word-spacing:9.046800px;}
.ws33{word-spacing:9.068700px;}
.ws187{word-spacing:9.267300px;}
.ws77{word-spacing:9.387000px;}
.ws8c{word-spacing:9.475200px;}
.ws39{word-spacing:9.506700px;}
.ws5d{word-spacing:9.683100px;}
.ws1c0{word-spacing:9.714600px;}
.ws193{word-spacing:9.727200px;}
.ws97{word-spacing:9.765000px;}
.ws7d{word-spacing:9.809100px;}
.ws128{word-spacing:9.846900px;}
.ws196{word-spacing:10.111500px;}
.ws5e{word-spacing:10.231200px;}
.ws178{word-spacing:10.294200px;}
.ws15{word-spacing:10.428600px;}
.ws92{word-spacing:10.476900px;}
.ws48{word-spacing:10.659600px;}
.ws110{word-spacing:10.823400px;}
.ws34{word-spacing:11.132100px;}
.ws191{word-spacing:11.157300px;}
.ws1f0{word-spacing:11.270700px;}
.ws101{word-spacing:11.862900px;}
.ws186{word-spacing:11.907000px;}
.ws129{word-spacing:12.026700px;}
.ws125{word-spacing:12.077100px;}
.ws37{word-spacing:12.665400px;}
.wse0{word-spacing:12.990600px;}
.ws1da{word-spacing:14.559300px;}
.ws93{word-spacing:14.628600px;}
.wsfc{word-spacing:15.063300px;}
.ws1db{word-spacing:15.384600px;}
.wse9{word-spacing:15.548400px;}
.ws1e9{word-spacing:17.677800px;}
.ws38{word-spacing:18.445200px;}
.ws1ea{word-spacing:18.635400px;}
.ws203{word-spacing:18.824400px;}
.ws204{word-spacing:21.331800px;}
.wsc{word-spacing:21.973500px;}
.ws205{word-spacing:22.516200px;}
.wse5{word-spacing:23.442300px;}
.ws4{word-spacing:35.454733px;}
.wsbf{word-spacing:164.116800px;}
.ws108{word-spacing:205.598400px;}
.wsf7{word-spacing:251.976000px;}
.wsf5{word-spacing:284.030400px;}
.wsf6{word-spacing:338.808000px;}
.wsbe{word-spacing:340.171200px;}
._38{margin-left:-204.168900px;}
._57{margin-left:-28.148400px;}
._58{margin-left:-27.054900px;}
._5c{margin-left:-21.495600px;}
._5d{margin-left:-18.786600px;}
._56{margin-left:-17.142300px;}
._5e{margin-left:-15.907500px;}
._59{margin-left:-14.395500px;}
._5b{margin-left:-13.374900px;}
._55{margin-left:-11.333700px;}
._3{margin-left:-10.080000px;}
._5a{margin-left:-8.833200px;}
._7{margin-left:-7.689600px;}
._6{margin-left:-6.429600px;}
._d{margin-left:-4.964400px;}
._9{margin-left:-3.695100px;}
._0{margin-left:-2.529600px;}
._1{margin-left:-1.065600px;}
._2{width:1.080000px;}
._f{width:2.164200px;}
._17{width:3.390300px;}
._e{width:5.316300px;}
._5{width:7.185600px;}
._10{width:8.695500px;}
._8{width:9.729900px;}
._c{width:10.760400px;}
._11{width:11.884500px;}
._a{width:13.298100px;}
._4{width:14.803200px;}
._19{width:15.810667px;}
._12{width:17.122200px;}
._18{width:18.277200px;}
._13{width:19.402800px;}
._34{width:20.960100px;}
._53{width:21.994500px;}
._33{width:25.212600px;}
._15{width:26.898300px;}
._14{width:28.053000px;}
._54{width:30.627300px;}
._1a{width:69.436800px;}
._b{width:93.950467px;}
._16{width:94.984867px;}
._32{width:108.240000px;}
._23{width:110.284800px;}
._43{width:119.054400px;}
._22{width:132.249600px;}
._25{width:134.256000px;}
._37{width:144.806400px;}
._39{width:167.400000px;}
._2a{width:173.400000px;}
._35{width:179.059200px;}
._1b{width:180.432000px;}
._2e{width:188.908800px;}
._3c{width:194.601600px;}
._27{width:197.400000px;}
._1e{width:199.411200px;}
._1f{width:201.451200px;}
._36{width:203.918400px;}
._3f{width:265.320000px;}
._3e{width:269.635200px;}
._42{width:271.243200px;}
._40{width:273.960000px;}
._52{width:277.905600px;}
._3d{width:282.604800px;}
._41{width:284.352000px;}
._4f{width:291.182400px;}
._46{width:293.635200px;}
._49{width:299.827200px;}
._4a{width:308.472000px;}
._45{width:310.891200px;}
._44{width:323.860800px;}
._50{width:325.608000px;}
._48{width:328.147200px;}
._4c{width:341.755200px;}
._4b{width:342.864000px;}
._4d{width:352.147200px;}
._47{width:365.116800px;}
._51{width:383.788800px;}
._21{width:395.510400px;}
._4e{width:401.428800px;}
._2b{width:445.176000px;}
._31{width:447.324000px;}
._28{width:469.176000px;}
._24{width:471.314400px;}
._1c{width:493.176000px;}
._2f{width:495.314400px;}
._3b{width:503.395200px;}
._2d{width:514.862400px;}
._29{width:530.366400px;}
._3a{width:539.760000px;}
._26{width:554.366400px;}
._1d{width:751.334400px;}
._2c{width:775.334400px;}
._20{width:955.848000px;}
._30{width:1057.036800px;}
.fc1{color:rgb(189,188,188);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:21.000000px;}
.fs7{font-size:31.500000px;}
.fs5{font-size:42.000000px;}
.fsd{font-size:47.250000px;}
.fsc{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fsa{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:57.570000px;}
.y1e{bottom:57.571650px;}
.y20{bottom:68.002950px;}
.y16{bottom:71.069850px;}
.y1d{bottom:71.071500px;}
.y11a{bottom:146.496150px;}
.yb4{bottom:147.131025px;}
.y144{bottom:147.131550px;}
.y7d{bottom:147.135225px;}
.y1b6{bottom:147.141000px;}
.y164{bottom:147.148875px;}
.y98{bottom:147.207750px;}
.y17e{bottom:147.208800px;}
.y155{bottom:147.214050px;}
.y64{bottom:147.225075px;}
.y1a0{bottom:147.431925px;}
.y40{bottom:147.463725px;}
.yf5{bottom:148.430250px;}
.y1c{bottom:148.491000px;}
.y1d2{bottom:148.631550px;}
.yca{bottom:148.917750px;}
.y1b{bottom:160.491450px;}
.y119{bottom:167.495625px;}
.y143{bottom:168.131025px;}
.y7c{bottom:168.134700px;}
.yb3{bottom:168.135225px;}
.y1b5{bottom:168.140475px;}
.y163{bottom:168.148350px;}
.y97{bottom:168.207225px;}
.y17d{bottom:168.208275px;}
.y154{bottom:168.213525px;}
.y63{bottom:168.224550px;}
.y19f{bottom:168.431400px;}
.y3f{bottom:168.463200px;}
.yf4{bottom:169.429725px;}
.y1d1{bottom:169.631025px;}
.yc9{bottom:169.917225px;}
.y1a{bottom:172.491900px;}
.y19{bottom:184.492350px;}
.y118{bottom:188.495100px;}
.y142{bottom:189.130500px;}
.y7b{bottom:189.134175px;}
.yb2{bottom:189.134700px;}
.y1b4{bottom:189.139950px;}
.y162{bottom:189.147825px;}
.y96{bottom:189.206700px;}
.y17c{bottom:189.207750px;}
.y153{bottom:189.213000px;}
.y62{bottom:189.224025px;}
.y19e{bottom:189.430875px;}
.y3e{bottom:189.462675px;}
.yf3{bottom:190.429200px;}
.y1d0{bottom:190.630500px;}
.y1cf{bottom:190.632075px;}
.yc8{bottom:190.916700px;}
.y18{bottom:199.961550px;}
.y117{bottom:209.494575px;}
.ycf{bottom:210.132600px;}
.y7a{bottom:210.133650px;}
.yb1{bottom:210.134175px;}
.y1b3{bottom:210.139425px;}
.y161{bottom:210.147300px;}
.y17b{bottom:210.207225px;}
.y152{bottom:210.212475px;}
.y61{bottom:210.223500px;}
.y19d{bottom:210.430350px;}
.y3d{bottom:210.462150px;}
.y1ce{bottom:211.631550px;}
.yc7{bottom:211.916175px;}
.y141{bottom:228.130500px;}
.y116{bottom:230.494050px;}
.yce{bottom:231.132075px;}
.y79{bottom:231.133125px;}
.yb0{bottom:231.133650px;}
.y1b2{bottom:231.138900px;}
.y160{bottom:231.146775px;}
.y95{bottom:231.206700px;}
.y151{bottom:231.211950px;}
.y60{bottom:231.222975px;}
.y19c{bottom:231.429825px;}
.yf2{bottom:232.429200px;}
.y1cd{bottom:232.631025px;}
.yc6{bottom:232.915650px;}
.y15{bottom:238.060050px;}
.y3c{bottom:246.462150px;}
.y115{bottom:251.493525px;}
.ycd{bottom:252.131550px;}
.y78{bottom:252.132600px;}
.yaf{bottom:252.133125px;}
.y1b1{bottom:252.138375px;}
.y15f{bottom:252.146250px;}
.y150{bottom:252.211425px;}
.y5f{bottom:252.222450px;}
.y19b{bottom:252.429300px;}
.y1cc{bottom:253.630500px;}
.y1cb{bottom:253.631550px;}
.yc5{bottom:253.915125px;}
.y14{bottom:257.559750px;}
.y114{bottom:272.493000px;}
.ycc{bottom:273.131025px;}
.y77{bottom:273.132075px;}
.yae{bottom:273.132600px;}
.y1b0{bottom:273.137850px;}
.y15e{bottom:273.145725px;}
.y94{bottom:273.206700px;}
.y14f{bottom:273.210900px;}
.y5e{bottom:273.221925px;}
.y19a{bottom:273.428775px;}
.y1ca{bottom:274.631025px;}
.yc4{bottom:274.914600px;}
.y13{bottom:277.059450px;}
.y12e{bottom:286.468650px;}
.y140{bottom:288.133650px;}
.y113{bottom:293.492475px;}
.y76{bottom:294.131550px;}
.yad{bottom:294.132075px;}
.ycb{bottom:294.134175px;}
.y1af{bottom:294.137325px;}
.y15d{bottom:294.145200px;}
.y14e{bottom:294.210375px;}
.y5d{bottom:294.221400px;}
.y199{bottom:294.428250px;}
.yf1{bottom:295.434450px;}
.y1c9{bottom:295.630500px;}
.y1c8{bottom:295.631025px;}
.y12{bottom:296.559150px;}
.y12d{bottom:301.468650px;}
.y13f{bottom:309.133125px;}
.y112{bottom:314.491950px;}
.y75{bottom:315.131025px;}
.yac{bottom:315.131550px;}
.y1ae{bottom:315.136800px;}
.y15c{bottom:315.144675px;}
.y14d{bottom:315.209850px;}
.y5c{bottom:315.220875px;}
.y198{bottom:315.427725px;}
.y11{bottom:316.058850px;}
.yf0{bottom:316.433925px;}
.y12c{bottom:316.468650px;}
.y1c7{bottom:316.630500px;}
.y1c6{bottom:316.632075px;}
.yc3{bottom:316.914600px;}
.y13e{bottom:330.132600px;}
.y12b{bottom:331.468650px;}
.y111{bottom:335.491425px;}
.y10{bottom:335.558550px;}
.y74{bottom:336.130500px;}
.yab{bottom:336.131025px;}
.y1ad{bottom:336.136275px;}
.y15b{bottom:336.144150px;}
.y14c{bottom:336.209325px;}
.y17a{bottom:336.217200px;}
.y5b{bottom:336.220350px;}
.y197{bottom:336.427200px;}
.yef{bottom:337.433400px;}
.y1c5{bottom:337.631550px;}
.y3b{bottom:338.635200px;}
.y12a{bottom:346.468650px;}
.y13d{bottom:351.132075px;}
.yf{bottom:355.058250px;}
.y110{bottom:356.490900px;}
.yaa{bottom:357.130500px;}
.y1ac{bottom:357.135750px;}
.y15a{bottom:357.143625px;}
.y14b{bottom:357.208800px;}
.y179{bottom:357.216675px;}
.y5a{bottom:357.219825px;}
.y196{bottom:357.426675px;}
.y3a{bottom:358.134900px;}
.yee{bottom:358.432875px;}
.y1c4{bottom:358.631025px;}
.y129{bottom:361.468650px;}
.ye6{bottom:362.745000px;}
.y93{bottom:363.219000px;}
.y13c{bottom:372.131550px;}
.ye{bottom:374.557950px;}
.y128{bottom:376.468650px;}
.yc2{bottom:376.914600px;}
.y10f{bottom:377.490375px;}
.ye5{bottom:377.745000px;}
.y73{bottom:378.130500px;}
.y1ab{bottom:378.135225px;}
.y159{bottom:378.143100px;}
.y14a{bottom:378.208275px;}
.y178{bottom:378.216150px;}
.y59{bottom:378.219300px;}
.y195{bottom:378.426150px;}
.yed{bottom:379.432350px;}
.y1c3{bottom:379.630500px;}
.y1c2{bottom:379.632075px;}
.y92{bottom:384.218475px;}
.y39{bottom:386.634900px;}
.ye4{bottom:392.745000px;}
.y13b{bottom:393.131025px;}
.yd{bottom:394.057650px;}
.y10e{bottom:398.489850px;}
.ya9{bottom:399.130500px;}
.y1aa{bottom:399.134700px;}
.y158{bottom:399.142575px;}
.y149{bottom:399.207750px;}
.y177{bottom:399.215625px;}
.y58{bottom:399.218775px;}
.y194{bottom:399.425625px;}
.yec{bottom:400.431825px;}
.y1c1{bottom:400.631550px;}
.y127{bottom:403.142400px;}
.y91{bottom:405.217950px;}
.y38{bottom:406.134600px;}
.ye3{bottom:407.745000px;}
.yc{bottom:413.557350px;}
.y13a{bottom:414.130500px;}
.y10d{bottom:419.489325px;}
.y1a9{bottom:420.134175px;}
.y157{bottom:420.142050px;}
.y148{bottom:420.207225px;}
.y176{bottom:420.215100px;}
.y57{bottom:420.218250px;}
.y193{bottom:420.425100px;}
.yeb{bottom:421.431300px;}
.y1c0{bottom:421.631025px;}
.ye2{bottom:422.745000px;}
.y37{bottom:425.634300px;}
.y90{bottom:426.217425px;}
.yb{bottom:433.057050px;}
.ye1{bottom:437.745000px;}
.y10c{bottom:440.488800px;}
.y1a8{bottom:441.133650px;}
.y156{bottom:441.141525px;}
.y147{bottom:441.206700px;}
.y1e0{bottom:441.207750px;}
.y126{bottom:441.211950px;}
.y175{bottom:441.214575px;}
.y56{bottom:441.217725px;}
.y192{bottom:441.424575px;}
.yea{bottom:442.430775px;}
.y1bf{bottom:442.630500px;}
.y1be{bottom:442.631025px;}
.y36{bottom:445.134000px;}
.y8f{bottom:447.216900px;}
.ye0{bottom:452.745000px;}
.y139{bottom:453.130500px;}
.y10b{bottom:461.488275px;}
.y1a7{bottom:462.133125px;}
.ya8{bottom:462.141000px;}
.y1df{bottom:462.207225px;}
.y125{bottom:462.211425px;}
.y174{bottom:462.214050px;}
.y55{bottom:462.217200px;}
.y191{bottom:462.424050px;}
.ye9{bottom:463.430250px;}
.y1bd{bottom:463.630500px;}
.y1bc{bottom:463.631550px;}
.y35{bottom:464.633700px;}
.ydf{bottom:467.745000px;}
.y8e{bottom:468.216375px;}
.yc1{bottom:481.916700px;}
.y10a{bottom:482.487750px;}
.yde{bottom:482.745000px;}
.y1a6{bottom:483.132600px;}
.y72{bottom:483.133125px;}
.ya7{bottom:483.140475px;}
.y146{bottom:483.206700px;}
.y1de{bottom:483.207750px;}
.y124{bottom:483.210900px;}
.y173{bottom:483.213525px;}
.y54{bottom:483.216675px;}
.y190{bottom:483.423525px;}
.y34{bottom:484.133400px;}
.ye8{bottom:484.429725px;}
.y1bb{bottom:484.631025px;}
.y8d{bottom:489.215850px;}
.ydd{bottom:497.745000px;}
.yc0{bottom:502.916175px;}
.y109{bottom:503.487225px;}
.y33{bottom:503.633100px;}
.y1a5{bottom:504.132075px;}
.y71{bottom:504.132600px;}
.ya6{bottom:504.139950px;}
.y1dd{bottom:504.207225px;}
.y123{bottom:504.210375px;}
.y172{bottom:504.213000px;}
.y53{bottom:504.216150px;}
.y18f{bottom:504.423000px;}
.ye7{bottom:505.429200px;}
.y1ba{bottom:505.630500px;}
.y1b9{bottom:505.631025px;}
.y138{bottom:510.134700px;}
.y8c{bottom:510.215325px;}
.ydc{bottom:512.745000px;}
.y32{bottom:523.132800px;}
.ybf{bottom:523.915650px;}
.y108{bottom:524.486700px;}
.y1a4{bottom:525.131550px;}
.y70{bottom:525.132075px;}
.ya5{bottom:525.139425px;}
.y1dc{bottom:525.206700px;}
.y1db{bottom:525.207750px;}
.y122{bottom:525.209850px;}
.y171{bottom:525.212475px;}
.y52{bottom:525.215625px;}
.y18e{bottom:525.422475px;}
.y1b8{bottom:526.630500px;}
.ydb{bottom:527.745000px;}
.y137{bottom:531.134175px;}
.y8b{bottom:531.214800px;}
.y31{bottom:542.632500px;}
.yda{bottom:542.745000px;}
.ybe{bottom:544.915125px;}
.y107{bottom:545.486175px;}
.y1a3{bottom:546.131025px;}
.y6f{bottom:546.131550px;}
.ya4{bottom:546.138900px;}
.y145{bottom:546.206700px;}
.y1da{bottom:546.207225px;}
.y121{bottom:546.209325px;}
.y170{bottom:546.211950px;}
.y51{bottom:546.215100px;}
.y18d{bottom:546.421950px;}
.y136{bottom:552.133650px;}
.y8a{bottom:552.214275px;}
.yd9{bottom:557.745000px;}
.y30{bottom:562.132200px;}
.y1b7{bottom:565.630500px;}
.ybd{bottom:565.914600px;}
.y106{bottom:566.485650px;}
.y1a2{bottom:567.130500px;}
.ya3{bottom:567.138375px;}
.y1d9{bottom:567.206700px;}
.y120{bottom:567.208800px;}
.y16f{bottom:567.211425px;}
.y50{bottom:567.214575px;}
.y18c{bottom:567.421425px;}
.yd8{bottom:572.745000px;}
.y135{bottom:573.133125px;}
.y89{bottom:573.213750px;}
.y2f{bottom:581.631900px;}
.ybc{bottom:586.914075px;}
.y105{bottom:587.485125px;}
.yd7{bottom:587.745000px;}
.y6e{bottom:588.132075px;}
.ya2{bottom:588.137850px;}
.y11f{bottom:588.208275px;}
.y16e{bottom:588.210900px;}
.y4f{bottom:588.214050px;}
.y18b{bottom:588.420900px;}
.y134{bottom:594.132600px;}
.y88{bottom:594.213225px;}
.y2e{bottom:601.131600px;}
.yd6{bottom:602.745000px;}
.y104{bottom:608.491425px;}
.y1a1{bottom:609.130500px;}
.y6d{bottom:609.131550px;}
.ya1{bottom:609.137325px;}
.y11e{bottom:609.207750px;}
.y16d{bottom:609.210375px;}
.y4e{bottom:609.213525px;}
.y18a{bottom:609.420375px;}
.ya{bottom:611.289150px;}
.y133{bottom:615.132075px;}
.y87{bottom:615.212700px;}
.yd5{bottom:617.745000px;}
.y2d{bottom:620.631300px;}
.ybb{bottom:628.914600px;}
.y103{bottom:629.490900px;}
.y6c{bottom:630.131025px;}
.ya0{bottom:630.136800px;}
.y11d{bottom:630.207225px;}
.y16c{bottom:630.209850px;}
.y4d{bottom:630.213000px;}
.y189{bottom:630.419850px;}
.y9{bottom:632.289150px;}
.yd4{bottom:632.745000px;}
.y132{bottom:636.131550px;}
.y86{bottom:636.212175px;}
.y2c{bottom:640.131000px;}
.yd3{bottom:647.745000px;}
.y102{bottom:650.490375px;}
.y6b{bottom:651.130500px;}
.y9f{bottom:651.136275px;}
.y11c{bottom:651.206700px;}
.y1d8{bottom:651.208275px;}
.y16b{bottom:651.209325px;}
.y4c{bottom:651.212475px;}
.y188{bottom:651.419325px;}
.y8{bottom:653.289150px;}
.y131{bottom:657.131025px;}
.y85{bottom:657.211650px;}
.y2b{bottom:659.630700px;}
.yd2{bottom:662.745000px;}
.yba{bottom:670.914600px;}
.y101{bottom:671.489850px;}
.y9e{bottom:672.135750px;}
.y1d7{bottom:672.207750px;}
.y16a{bottom:672.208800px;}
.y4b{bottom:672.211950px;}
.y187{bottom:672.418800px;}
.y7{bottom:674.289150px;}
.yd1{bottom:677.745000px;}
.y130{bottom:678.130500px;}
.y84{bottom:678.211125px;}
.y100{bottom:692.489325px;}
.y6a{bottom:693.130500px;}
.y9d{bottom:693.135225px;}
.y11b{bottom:693.206700px;}
.y1d6{bottom:693.207225px;}
.y169{bottom:693.208275px;}
.y4a{bottom:693.211425px;}
.y186{bottom:693.418275px;}
.y2a{bottom:698.630100px;}
.y83{bottom:699.210600px;}
.yd0{bottom:705.628950px;}
.yff{bottom:713.488800px;}
.y9c{bottom:714.134700px;}
.y1d5{bottom:714.206700px;}
.y168{bottom:714.207750px;}
.y49{bottom:714.210900px;}
.y185{bottom:714.417750px;}
.y6{bottom:716.289150px;}
.y12f{bottom:717.130500px;}
.y29{bottom:718.129800px;}
.y82{bottom:720.210075px;}
.yfe{bottom:734.488275px;}
.y9b{bottom:735.134175px;}
.y167{bottom:735.207225px;}
.y48{bottom:735.210375px;}
.y184{bottom:735.417225px;}
.y5{bottom:737.289150px;}
.y81{bottom:741.209550px;}
.y28{bottom:746.629800px;}
.yfd{bottom:755.487750px;}
.y9a{bottom:756.133650px;}
.y166{bottom:756.206700px;}
.y1d4{bottom:756.207750px;}
.y47{bottom:756.209850px;}
.y183{bottom:756.416700px;}
.y80{bottom:762.209025px;}
.y27{bottom:766.129500px;}
.yb9{bottom:775.916175px;}
.yfc{bottom:776.487225px;}
.y99{bottom:777.133125px;}
.y1d3{bottom:777.207225px;}
.y46{bottom:777.209325px;}
.y182{bottom:777.416175px;}
.y4{bottom:779.289150px;}
.y7f{bottom:783.208500px;}
.y26{bottom:785.629200px;}
.yb8{bottom:796.915650px;}
.yfb{bottom:797.486700px;}
.y69{bottom:798.132600px;}
.y165{bottom:798.206700px;}
.y45{bottom:798.208800px;}
.y181{bottom:798.415650px;}
.y3{bottom:800.289150px;}
.y7e{bottom:804.207975px;}
.y25{bottom:805.128900px;}
.yb7{bottom:817.915125px;}
.yfa{bottom:818.486175px;}
.y68{bottom:819.132075px;}
.y44{bottom:819.208275px;}
.y180{bottom:819.415125px;}
.y24{bottom:824.628600px;}
.yb6{bottom:838.914600px;}
.yf9{bottom:839.485650px;}
.y67{bottom:840.131550px;}
.y43{bottom:840.207750px;}
.y17f{bottom:840.414600px;}
.y23{bottom:844.128300px;}
.y2{bottom:848.289750px;}
.yf8{bottom:860.485125px;}
.y66{bottom:861.131025px;}
.y42{bottom:861.207225px;}
.y22{bottom:863.628000px;}
.yf6{bottom:872.669250px;}
.y1{bottom:875.289150px;}
.yb5{bottom:880.914600px;}
.yf7{bottom:881.484600px;}
.y65{bottom:882.130500px;}
.y41{bottom:882.206700px;}
.y21{bottom:883.127700px;}
.y1f{bottom:938.775750px;}
.h8{height:21.195000px;}
.ha{height:28.255500px;}
.h9{height:35.070000px;}
.h6{height:37.674000px;}
.h14{height:39.453750px;}
.h12{height:44.062500px;}
.h13{height:44.592000px;}
.h5{height:47.595000px;}
.h15{height:52.164000px;}
.hd{height:52.605000px;}
.h4{height:52.953000px;}
.h3{height:53.640000px;}
.hb{height:53.820000px;}
.h11{height:57.832031px;}
.h10{height:61.314000px;}
.hf{height:64.101000px;}
.h2{height:66.093750px;}
.he{height:67.221000px;}
.hc{height:78.036000px;}
.h1{height:94.758000px;}
.h7{height:95.545200px;}
.h0{height:1020.000000px;}
.w1{width:722.145000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:64.344450px;}
.xc{left:105.609248px;}
.x1c{left:109.500450px;}
.x45{left:112.129200px;}
.x17{left:113.391450px;}
.x25{left:115.872750px;}
.x33{left:117.291750px;}
.xf{left:120.421800px;}
.xb{left:126.869250px;}
.x24{left:136.500150px;}
.x3b{left:139.718550px;}
.x1e{left:142.272600px;}
.x4f{left:143.763300px;}
.x12{left:145.342350px;}
.x2c{left:148.191150px;}
.x51{left:150.067650px;}
.x30{left:151.656300px;}
.x1f{left:154.499100px;}
.x31{left:159.793200px;}
.x23{left:165.567150px;}
.x26{left:167.370150px;}
.x1{left:170.825100px;}
.x1a{left:172.822800px;}
.x59{left:173.968050px;}
.x19{left:176.298750px;}
.x50{left:177.451200px;}
.x20{left:182.912100px;}
.x46{left:187.627800px;}
.x34{left:189.205650px;}
.x32{left:191.095050px;}
.x2d{left:194.734950px;}
.x52{left:198.937350px;}
.x42{left:209.129400px;}
.x27{left:217.508850px;}
.x53{left:218.940900px;}
.x21{left:221.468400px;}
.x47{left:222.576300px;}
.x5a{left:223.588950px;}
.x3c{left:225.027150px;}
.x1b{left:231.359550px;}
.x54{left:232.418400px;}
.x35{left:236.109000px;}
.x55{left:243.664800px;}
.x1d{left:249.765300px;}
.x22{left:255.308550px;}
.x28{left:258.380100px;}
.x37{left:261.817350px;}
.x5b{left:268.881900px;}
.x3d{left:270.197850px;}
.x43{left:272.425950px;}
.x2e{left:280.781250px;}
.x56{left:290.368050px;}
.x48{left:297.463200px;}
.x38{left:301.572600px;}
.x10{left:304.287900px;}
.x5c{left:306.820350px;}
.x29{left:308.023950px;}
.x36{left:309.995400px;}
.x2f{left:313.201650px;}
.x3e{left:315.619200px;}
.x39{left:322.042050px;}
.x18{left:329.350050px;}
.x57{left:330.593100px;}
.x3a{left:333.021300px;}
.x2{left:342.198488px;}
.x13{left:343.776000px;}
.x3f{left:345.511500px;}
.x58{left:353.264850px;}
.x44{left:356.587650px;}
.xd{left:363.848550px;}
.x49{left:368.910300px;}
.xe{left:376.142055px;}
.x9{left:378.374700px;}
.x40{left:390.221700px;}
.x2a{left:405.558000px;}
.x4a{left:409.270050px;}
.x3{left:418.866150px;}
.xa{left:430.940325px;}
.x41{left:444.368850px;}
.x2b{left:462.812100px;}
.x4b{left:467.863350px;}
.x7{left:477.046800px;}
.x4c{left:479.592150px;}
.x16{left:482.365350px;}
.x15{left:486.023850px;}
.x4d{left:487.861500px;}
.x5{left:493.826850px;}
.x14{left:499.263750px;}
.x4e{left:539.698800px;}
.x6{left:549.383850px;}
.x8{left:556.912200px;}
.x4{left:563.333700px;}
@media print{
.v3{vertical-align:-12.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.649867pt;}
.v1{vertical-align:30.830933pt;}
.v2{vertical-align:37.089067pt;}
.ls28{letter-spacing:-1.372000pt;}
.ls37{letter-spacing:-1.265600pt;}
.ls2a{letter-spacing:-1.198400pt;}
.ls29{letter-spacing:-1.192800pt;}
.ls1{letter-spacing:-1.015467pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.890400pt;}
.ls2c{letter-spacing:-0.604800pt;}
.lsd{letter-spacing:-0.601067pt;}
.ls2b{letter-spacing:-0.599200pt;}
.lse{letter-spacing:-0.593600pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls3f{letter-spacing:-0.319200pt;}
.ls40{letter-spacing:-0.308000pt;}
.ls3d{letter-spacing:-0.302400pt;}
.lsc{letter-spacing:-0.300533pt;}
.ls3e{letter-spacing:-0.296800pt;}
.ls1f{letter-spacing:-0.028000pt;}
.ls42{letter-spacing:-0.022400pt;}
.ls14{letter-spacing:-0.016800pt;}
.ls6{letter-spacing:-0.015200pt;}
.ls18{letter-spacing:-0.014933pt;}
.ls1c{letter-spacing:-0.012267pt;}
.ls1d{letter-spacing:-0.011733pt;}
.ls13{letter-spacing:-0.011200pt;}
.ls5{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:-0.010133pt;}
.ls27{letter-spacing:-0.008533pt;}
.ls32{letter-spacing:-0.008400pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:-0.006400pt;}
.ls20{letter-spacing:-0.006133pt;}
.ls12{letter-spacing:-0.005600pt;}
.ls4{letter-spacing:-0.005333pt;}
.ls8{letter-spacing:-0.005067pt;}
.ls25{letter-spacing:-0.004267pt;}
.ls33{letter-spacing:-0.004200pt;}
.ls9{letter-spacing:-0.003733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.005600pt;}
.ls3a{letter-spacing:0.011200pt;}
.ls22{letter-spacing:0.012800pt;}
.ls24{letter-spacing:0.021333pt;}
.ls2f{letter-spacing:0.022400pt;}
.ls23{letter-spacing:0.025600pt;}
.ls1e{letter-spacing:0.438815pt;}
.ls3c{letter-spacing:0.509600pt;}
.ls1b{letter-spacing:0.588000pt;}
.ls0{letter-spacing:0.592800pt;}
.ls1a{letter-spacing:0.616000pt;}
.ls10{letter-spacing:0.800533pt;}
.ls11{letter-spacing:0.841067pt;}
.ls16{letter-spacing:0.879200pt;}
.ls19{letter-spacing:0.884800pt;}
.ls17{letter-spacing:0.890400pt;}
.ls38{letter-spacing:7.224000pt;}
.ls36{letter-spacing:8.506400pt;}
.ls31{letter-spacing:9.318400pt;}
.ls34{letter-spacing:9.335200pt;}
.ls2e{letter-spacing:10.029600pt;}
.ls30{letter-spacing:12.208000pt;}
.ls41{letter-spacing:12.280800pt;}
.ls3b{letter-spacing:12.460000pt;}
.ls35{letter-spacing:15.220800pt;}
.ls2d{letter-spacing:15.226400pt;}
.lsf{letter-spacing:23.448533pt;}
.ls39{letter-spacing:24.852800pt;}
.ls15{letter-spacing:29.691200pt;}
.ws1d0{word-spacing:-30.066400pt;}
.ws1d1{word-spacing:-30.060800pt;}
.ws1f5{word-spacing:-27.120800pt;}
.ws1d5{word-spacing:-27.048000pt;}
.ws1d3{word-spacing:-24.869600pt;}
.ws1d6{word-spacing:-24.158400pt;}
.ws1f1{word-spacing:-22.064000pt;}
.ws1d{word-spacing:-20.749867pt;}
.ws63{word-spacing:-20.742400pt;}
.wsad{word-spacing:-17.044533pt;}
.ws78{word-spacing:-17.038400pt;}
.ws79{word-spacing:-16.297600pt;}
.wsae{word-spacing:-15.724800pt;}
.ws1f2{word-spacing:-15.349600pt;}
.ws1d8{word-spacing:-14.840000pt;}
.ws1cc{word-spacing:-14.834400pt;}
.ws1b1{word-spacing:-14.828800pt;}
.ws0{word-spacing:-14.821333pt;}
.ws1{word-spacing:-14.816000pt;}
.ws1c{word-spacing:-14.075200pt;}
.ws1d4{word-spacing:-13.641600pt;}
.ws1ca{word-spacing:-11.130000pt;}
.ws1d2{word-spacing:-11.125800pt;}
.ws1c9{word-spacing:-11.121600pt;}
.ws1e7{word-spacing:-8.131200pt;}
.ws1e0{word-spacing:-8.125600pt;}
.ws1fc{word-spacing:-8.120000pt;}
.wsbd{word-spacing:-7.420000pt;}
.ws1d7{word-spacing:-5.504800pt;}
.ws1cb{word-spacing:-5.482400pt;}
.ws1ce{word-spacing:-5.224800pt;}
.ws87{word-spacing:-5.219200pt;}
.ws3e{word-spacing:-5.213600pt;}
.ws1cf{word-spacing:-4.978400pt;}
.ws8{word-spacing:-4.608000pt;}
.ws1f4{word-spacing:-3.712800pt;}
.ws18f{word-spacing:-2.738400pt;}
.ws1f7{word-spacing:-2.542400pt;}
.ws1f6{word-spacing:-2.536800pt;}
.ws1fa{word-spacing:-2.357600pt;}
.ws1f3{word-spacing:-2.234400pt;}
.ws136{word-spacing:-2.189600pt;}
.wsde{word-spacing:-2.105600pt;}
.wsb3{word-spacing:-2.055200pt;}
.wsd0{word-spacing:-2.027200pt;}
.ws1b0{word-spacing:-2.021600pt;}
.ws99{word-spacing:-2.016000pt;}
.ws185{word-spacing:-2.004800pt;}
.ws10d{word-spacing:-1.988000pt;}
.ws208{word-spacing:-1.943200pt;}
.ws2{word-spacing:-1.933867pt;}
.ws8b{word-spacing:-1.920800pt;}
.ws162{word-spacing:-1.881600pt;}
.ws1bf{word-spacing:-1.870400pt;}
.ws209{word-spacing:-1.842400pt;}
.ws1f8{word-spacing:-1.825600pt;}
.ws1e3{word-spacing:-1.820000pt;}
.ws54{word-spacing:-1.764000pt;}
.ws1dd{word-spacing:-1.691200pt;}
.ws13b{word-spacing:-1.685600pt;}
.ws141{word-spacing:-1.624000pt;}
.ws16a{word-spacing:-1.584800pt;}
.ws188{word-spacing:-1.545600pt;}
.ws12e{word-spacing:-1.540000pt;}
.ws1de{word-spacing:-1.523200pt;}
.ws1f9{word-spacing:-1.517600pt;}
.wsdd{word-spacing:-1.472800pt;}
.ws1e4{word-spacing:-1.411200pt;}
.ws126{word-spacing:-1.355200pt;}
.ws1f{word-spacing:-1.281867pt;}
.ws1b6{word-spacing:-1.237600pt;}
.ws14c{word-spacing:-1.220800pt;}
.ws3{word-spacing:-1.213333pt;}
.ws1a{word-spacing:-1.209600pt;}
.ws16f{word-spacing:-1.204000pt;}
.ws17f{word-spacing:-1.198400pt;}
.ws147{word-spacing:-1.136800pt;}
.wse7{word-spacing:-1.125600pt;}
.ws114{word-spacing:-1.120000pt;}
.ws161{word-spacing:-1.103200pt;}
.ws45{word-spacing:-1.069600pt;}
.ws1e6{word-spacing:-1.064000pt;}
.wsc1{word-spacing:-1.024800pt;}
.ws172{word-spacing:-1.019200pt;}
.ws9e{word-spacing:-1.002400pt;}
.wsef{word-spacing:-0.985600pt;}
.ws151{word-spacing:-0.980000pt;}
.ws9c{word-spacing:-0.968800pt;}
.wsed{word-spacing:-0.952000pt;}
.wsd9{word-spacing:-0.924000pt;}
.ws144{word-spacing:-0.912800pt;}
.ws21{word-spacing:-0.912000pt;}
.ws16e{word-spacing:-0.901600pt;}
.ws1fd{word-spacing:-0.890400pt;}
.ws9a{word-spacing:-0.879200pt;}
.ws198{word-spacing:-0.862400pt;}
.ws157{word-spacing:-0.840000pt;}
.ws1c3{word-spacing:-0.795200pt;}
.ws130{word-spacing:-0.772800pt;}
.ws106{word-spacing:-0.744800pt;}
.ws122{word-spacing:-0.739200pt;}
.ws140{word-spacing:-0.733600pt;}
.ws173{word-spacing:-0.705600pt;}
.ws202{word-spacing:-0.649600pt;}
.ws13d{word-spacing:-0.644000pt;}
.ws19b{word-spacing:-0.638400pt;}
.wsce{word-spacing:-0.616000pt;}
.ws155{word-spacing:-0.610400pt;}
.ws4c{word-spacing:-0.599200pt;}
.ws17a{word-spacing:-0.487200pt;}
.ws179{word-spacing:-0.459200pt;}
.ws10a{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.430667pt;}
.wsb1{word-spacing:-0.380800pt;}
.ws18{word-spacing:-0.354667pt;}
.wsa0{word-spacing:-0.352800pt;}
.ws159{word-spacing:-0.347200pt;}
.ws1cd{word-spacing:-0.313600pt;}
.ws119{word-spacing:-0.308000pt;}
.ws124{word-spacing:-0.302400pt;}
.ws7a{word-spacing:-0.291200pt;}
.ws12f{word-spacing:-0.285600pt;}
.ws1a7{word-spacing:-0.280000pt;}
.ws102{word-spacing:-0.274400pt;}
.ws3d{word-spacing:-0.240800pt;}
.ws3c{word-spacing:-0.229600pt;}
.ws8a{word-spacing:-0.218400pt;}
.wsb{word-spacing:-0.157067pt;}
.ws164{word-spacing:-0.156800pt;}
.ws16d{word-spacing:-0.151200pt;}
.wsfd{word-spacing:-0.145600pt;}
.ws4e{word-spacing:-0.140000pt;}
.ws103{word-spacing:-0.123200pt;}
.wse8{word-spacing:-0.117600pt;}
.ws134{word-spacing:-0.095200pt;}
.ws1eb{word-spacing:-0.089600pt;}
.ws59{word-spacing:-0.072800pt;}
.ws158{word-spacing:-0.061600pt;}
.ws8f{word-spacing:-0.056000pt;}
.wse4{word-spacing:-0.044800pt;}
.wsec{word-spacing:-0.033600pt;}
.ws1c8{word-spacing:-0.028000pt;}
.ws6{word-spacing:0.000000pt;}
.ws35{word-spacing:0.005067pt;}
.ws12a{word-spacing:0.016800pt;}
.ws70{word-spacing:0.022400pt;}
.wsf0{word-spacing:0.056000pt;}
.ws56{word-spacing:0.089600pt;}
.ws73{word-spacing:0.095200pt;}
.wsaf{word-spacing:0.100800pt;}
.ws17e{word-spacing:0.112000pt;}
.ws120{word-spacing:0.128800pt;}
.ws131{word-spacing:0.179200pt;}
.ws171{word-spacing:0.201600pt;}
.ws14e{word-spacing:0.218400pt;}
.ws154{word-spacing:0.229600pt;}
.wsd5{word-spacing:0.240800pt;}
.ws195{word-spacing:0.263200pt;}
.ws98{word-spacing:0.274400pt;}
.ws112{word-spacing:0.285600pt;}
.wsd1{word-spacing:0.296800pt;}
.wsc3{word-spacing:0.324800pt;}
.wsc8{word-spacing:0.341600pt;}
.ws1ff{word-spacing:0.347200pt;}
.ws14d{word-spacing:0.358400pt;}
.ws1dc{word-spacing:0.364000pt;}
.ws170{word-spacing:0.369600pt;}
.wsa4{word-spacing:0.380800pt;}
.ws169{word-spacing:0.392000pt;}
.ws19a{word-spacing:0.397600pt;}
.ws1c4{word-spacing:0.420000pt;}
.ws5b{word-spacing:0.436800pt;}
.ws1a3{word-spacing:0.492800pt;}
.wsa8{word-spacing:0.504000pt;}
.ws1bb{word-spacing:0.515200pt;}
.ws19f{word-spacing:0.593600pt;}
.wsba{word-spacing:0.599200pt;}
.ws142{word-spacing:0.621600pt;}
.ws24{word-spacing:0.628267pt;}
.ws1fb{word-spacing:0.644000pt;}
.ws150{word-spacing:0.649600pt;}
.wsda{word-spacing:0.711200pt;}
.ws7e{word-spacing:0.722400pt;}
.ws49{word-spacing:0.733600pt;}
.wsa1{word-spacing:0.739200pt;}
.ws7c{word-spacing:0.750400pt;}
.wsb2{word-spacing:0.756000pt;}
.ws12c{word-spacing:0.767200pt;}
.wsb7{word-spacing:0.772800pt;}
.ws11{word-spacing:0.780267pt;}
.ws1a0{word-spacing:0.789600pt;}
.ws36{word-spacing:0.790400pt;}
.ws1bd{word-spacing:0.845600pt;}
.ws5c{word-spacing:0.856800pt;}
.ws1df{word-spacing:0.873600pt;}
.ws86{word-spacing:0.924000pt;}
.ws81{word-spacing:0.940800pt;}
.ws14b{word-spacing:0.952000pt;}
.ws11f{word-spacing:0.957600pt;}
.ws55{word-spacing:0.968800pt;}
.ws85{word-spacing:0.980000pt;}
.ws19{word-spacing:0.989333pt;}
.ws76{word-spacing:0.991200pt;}
.ws8e{word-spacing:1.019200pt;}
.ws14{word-spacing:1.034133pt;}
.ws123{word-spacing:1.036000pt;}
.ws40{word-spacing:1.037867pt;}
.ws1c6{word-spacing:1.047200pt;}
.wsff{word-spacing:1.064000pt;}
.ws145{word-spacing:1.086400pt;}
.ws6a{word-spacing:1.114400pt;}
.ws64{word-spacing:1.131200pt;}
.ws23{word-spacing:1.134933pt;}
.ws1fe{word-spacing:1.153600pt;}
.ws17b{word-spacing:1.164800pt;}
.wscc{word-spacing:1.169067pt;}
.wscd{word-spacing:1.173333pt;}
.ws15d{word-spacing:1.181600pt;}
.wscb{word-spacing:1.181867pt;}
.wsca{word-spacing:1.186133pt;}
.ws148{word-spacing:1.198400pt;}
.ws1ef{word-spacing:1.204000pt;}
.ws165{word-spacing:1.209600pt;}
.wsd8{word-spacing:1.248800pt;}
.ws109{word-spacing:1.254400pt;}
.ws13f{word-spacing:1.260000pt;}
.ws1e1{word-spacing:1.288000pt;}
.wsf4{word-spacing:1.293600pt;}
.ws177{word-spacing:1.299200pt;}
.ws25{word-spacing:1.337600pt;}
.ws28{word-spacing:1.342667pt;}
.wscf{word-spacing:1.355200pt;}
.ws1c2{word-spacing:1.372000pt;}
.wsc5{word-spacing:1.405600pt;}
.ws29{word-spacing:1.413600pt;}
.ws15c{word-spacing:1.422400pt;}
.ws1b7{word-spacing:1.444800pt;}
.ws1a5{word-spacing:1.461600pt;}
.ws181{word-spacing:1.467200pt;}
.wsd2{word-spacing:1.472800pt;}
.ws6c{word-spacing:1.478400pt;}
.ws9{word-spacing:1.482667pt;}
.ws44{word-spacing:1.484000pt;}
.ws52{word-spacing:1.489600pt;}
.ws13a{word-spacing:1.495200pt;}
.ws2e{word-spacing:1.520000pt;}
.ws96{word-spacing:1.534400pt;}
.ws1b9{word-spacing:1.540000pt;}
.wsc9{word-spacing:1.556800pt;}
.ws7b{word-spacing:1.568000pt;}
.ws200{word-spacing:1.573600pt;}
.ws206{word-spacing:1.579200pt;}
.ws8d{word-spacing:1.607200pt;}
.ws143{word-spacing:1.618400pt;}
.ws9d{word-spacing:1.635200pt;}
.ws1ba{word-spacing:1.657600pt;}
.wsc6{word-spacing:1.663200pt;}
.ws88{word-spacing:1.668800pt;}
.ws149{word-spacing:1.680000pt;}
.wsb6{word-spacing:1.698933pt;}
.wsd6{word-spacing:1.705067pt;}
.ws113{word-spacing:1.708000pt;}
.ws4a{word-spacing:1.736000pt;}
.wsd{word-spacing:1.737867pt;}
.ws1ac{word-spacing:1.758400pt;}
.ws166{word-spacing:1.764000pt;}
.ws7{word-spacing:1.779200pt;}
.ws189{word-spacing:1.786400pt;}
.wsd3{word-spacing:1.797600pt;}
.ws89{word-spacing:1.808800pt;}
.ws19d{word-spacing:1.876000pt;}
.ws3f{word-spacing:1.892800pt;}
.ws1e8{word-spacing:1.904000pt;}
.ws30{word-spacing:1.910133pt;}
.wsbc{word-spacing:1.915200pt;}
.wsf{word-spacing:1.930400pt;}
.ws107{word-spacing:1.937600pt;}
.ws2c{word-spacing:1.960800pt;}
.ws1a8{word-spacing:1.965600pt;}
.ws127{word-spacing:1.971200pt;}
.wsb0{word-spacing:2.004800pt;}
.wsf9{word-spacing:2.027200pt;}
.ws27{word-spacing:2.036800pt;}
.ws207{word-spacing:2.049600pt;}
.ws1a1{word-spacing:2.075733pt;}
.ws67{word-spacing:2.088800pt;}
.ws2f{word-spacing:2.128000pt;}
.ws11b{word-spacing:2.144800pt;}
.ws17{word-spacing:2.150400pt;}
.ws26{word-spacing:2.153333pt;}
.ws42{word-spacing:2.167200pt;}
.wsee{word-spacing:2.178400pt;}
.ws6d{word-spacing:2.184000pt;}
.ws15f{word-spacing:2.189600pt;}
.wsa2{word-spacing:2.195200pt;}
.ws1a9{word-spacing:2.206400pt;}
.ws133{word-spacing:2.212000pt;}
.ws156{word-spacing:2.256800pt;}
.ws1b3{word-spacing:2.268000pt;}
.ws132{word-spacing:2.273600pt;}
.ws41{word-spacing:2.290400pt;}
.ws183{word-spacing:2.301600pt;}
.ws60{word-spacing:2.324000pt;}
.ws194{word-spacing:2.357600pt;}
.wsaa{word-spacing:2.385600pt;}
.ws74{word-spacing:2.396800pt;}
.ws16b{word-spacing:2.402400pt;}
.ws62{word-spacing:2.419200pt;}
.ws20{word-spacing:2.421867pt;}
.wsc4{word-spacing:2.436000pt;}
.wsf2{word-spacing:2.441600pt;}
.ws50{word-spacing:2.469600pt;}
.ws14f{word-spacing:2.486400pt;}
.ws22{word-spacing:2.518133pt;}
.ws5{word-spacing:2.520533pt;}
.wsc2{word-spacing:2.542400pt;}
.ws104{word-spacing:2.553600pt;}
.ws94{word-spacing:2.559200pt;}
.wsb9{word-spacing:2.570400pt;}
.ws9b{word-spacing:2.581600pt;}
.ws69{word-spacing:2.587200pt;}
.ws121{word-spacing:2.598400pt;}
.ws51{word-spacing:2.604000pt;}
.ws10{word-spacing:2.609333pt;}
.ws4f{word-spacing:2.632000pt;}
.ws1c1{word-spacing:2.637600pt;}
.ws1a2{word-spacing:2.648800pt;}
.ws182{word-spacing:2.665600pt;}
.ws72{word-spacing:2.699200pt;}
.ws1ed{word-spacing:2.704800pt;}
.ws176{word-spacing:2.732800pt;}
.ws65{word-spacing:2.744000pt;}
.wsd4{word-spacing:2.749600pt;}
.ws2a{word-spacing:2.751200pt;}
.ws19c{word-spacing:2.777600pt;}
.ws80{word-spacing:2.833600pt;}
.ws115{word-spacing:2.844800pt;}
.ws1b8{word-spacing:2.850400pt;}
.ws1ee{word-spacing:2.861600pt;}
.ws14a{word-spacing:2.889600pt;}
.wsb4{word-spacing:2.900800pt;}
.wse6{word-spacing:2.923200pt;}
.ws146{word-spacing:2.962400pt;}
.ws174{word-spacing:2.984800pt;}
.wse1{word-spacing:2.996000pt;}
.ws17d{word-spacing:3.018400pt;}
.ws12{word-spacing:3.045067pt;}
.ws82{word-spacing:3.046400pt;}
.ws1a6{word-spacing:3.091200pt;}
.wsb5{word-spacing:3.124800pt;}
.ws1b5{word-spacing:3.141600pt;}
.ws10f{word-spacing:3.147200pt;}
.ws2b{word-spacing:3.186933pt;}
.ws75{word-spacing:3.208800pt;}
.wsf8{word-spacing:3.214400pt;}
.wsa7{word-spacing:3.220000pt;}
.ws137{word-spacing:3.231200pt;}
.wseb{word-spacing:3.281600pt;}
.ws3b{word-spacing:3.332000pt;}
.ws53{word-spacing:3.371200pt;}
.ws175{word-spacing:3.376800pt;}
.ws17c{word-spacing:3.421600pt;}
.ws105{word-spacing:3.432800pt;}
.ws6f{word-spacing:3.449600pt;}
.ws16c{word-spacing:3.455200pt;}
.ws32{word-spacing:3.521333pt;}
.ws13e{word-spacing:3.533600pt;}
.ws19e{word-spacing:3.550400pt;}
.ws13c{word-spacing:3.561600pt;}
.ws197{word-spacing:3.595200pt;}
.ws168{word-spacing:3.617600pt;}
.ws58{word-spacing:3.623200pt;}
.ws1b{word-spacing:3.628800pt;}
.wsab{word-spacing:3.645600pt;}
.ws160{word-spacing:3.656800pt;}
.ws47{word-spacing:3.662400pt;}
.wsea{word-spacing:3.668000pt;}
.ws184{word-spacing:3.673600pt;}
.ws18e{word-spacing:3.707200pt;}
.ws6b{word-spacing:3.718400pt;}
.wsbb{word-spacing:3.763200pt;}
.ws1ab{word-spacing:3.768800pt;}
.ws3a{word-spacing:3.780000pt;}
.ws135{word-spacing:3.785600pt;}
.ws192{word-spacing:3.819200pt;}
.ws5f{word-spacing:3.847200pt;}
.ws68{word-spacing:3.869600pt;}
.ws10b{word-spacing:3.903200pt;}
.ws1e{word-spacing:3.911467pt;}
.ws11a{word-spacing:3.948000pt;}
.ws11e{word-spacing:3.959200pt;}
.ws7f{word-spacing:3.987200pt;}
.ws18a{word-spacing:3.992800pt;}
.ws116{word-spacing:3.998400pt;}
.ws15e{word-spacing:4.060000pt;}
.ws95{word-spacing:4.065600pt;}
.ws1ec{word-spacing:4.088000pt;}
.wsf3{word-spacing:4.104800pt;}
.ws90{word-spacing:4.121600pt;}
.wsb8{word-spacing:4.172000pt;}
.ws12d{word-spacing:4.188800pt;}
.ws1b4{word-spacing:4.211200pt;}
.ws11d{word-spacing:4.222400pt;}
.ws199{word-spacing:4.239200pt;}
.ws1d9{word-spacing:4.244800pt;}
.ws43{word-spacing:4.312000pt;}
.ws5a{word-spacing:4.328800pt;}
.wse2{word-spacing:4.435200pt;}
.ws13{word-spacing:4.468800pt;}
.ws201{word-spacing:4.474400pt;}
.ws1be{word-spacing:4.485600pt;}
.ws180{word-spacing:4.519200pt;}
.ws20b{word-spacing:4.586400pt;}
.ws190{word-spacing:4.597600pt;}
.ws111{word-spacing:4.648000pt;}
.ws117{word-spacing:4.676000pt;}
.ws1b2{word-spacing:4.720800pt;}
.ws16{word-spacing:4.741333pt;}
.wsdb{word-spacing:4.765600pt;}
.wsac{word-spacing:4.771200pt;}
.ws1aa{word-spacing:4.799200pt;}
.ws1af{word-spacing:4.816000pt;}
.ws46{word-spacing:4.855200pt;}
.wsfe{word-spacing:4.860800pt;}
.ws84{word-spacing:4.900000pt;}
.ws4b{word-spacing:4.922400pt;}
.ws4d{word-spacing:5.068000pt;}
.ws61{word-spacing:5.084800pt;}
.wsa{word-spacing:5.102133pt;}
.wsa6{word-spacing:5.129600pt;}
.wsc0{word-spacing:5.241600pt;}
.ws10e{word-spacing:5.252800pt;}
.ws2d{word-spacing:5.274400pt;}
.wsa3{word-spacing:5.308800pt;}
.ws18c{word-spacing:5.432000pt;}
.ws20a{word-spacing:5.471200pt;}
.ws18b{word-spacing:5.616800pt;}
.ws1bc{word-spacing:5.689600pt;}
.wsf1{word-spacing:5.717600pt;}
.wsa5{word-spacing:5.784800pt;}
.ws31{word-spacing:5.882400pt;}
.ws11c{word-spacing:5.902400pt;}
.ws10c{word-spacing:5.964000pt;}
.ws153{word-spacing:6.059200pt;}
.ws66{word-spacing:6.087200pt;}
.wsdc{word-spacing:6.120800pt;}
.wsa9{word-spacing:6.221600pt;}
.wsc7{word-spacing:6.249600pt;}
.wsdf{word-spacing:6.277600pt;}
.ws138{word-spacing:6.322400pt;}
.ws57{word-spacing:6.395200pt;}
.ws100{word-spacing:6.400800pt;}
.ws1ad{word-spacing:6.412000pt;}
.ws167{word-spacing:6.473600pt;}
.ws18d{word-spacing:6.669600pt;}
.ws12b{word-spacing:6.697600pt;}
.ws1e2{word-spacing:6.736800pt;}
.ws152{word-spacing:6.804000pt;}
.ws163{word-spacing:6.826400pt;}
.ws139{word-spacing:6.832000pt;}
.ws1ae{word-spacing:6.944000pt;}
.ws20c{word-spacing:7.022400pt;}
.ws1e5{word-spacing:7.100800pt;}
.ws9f{word-spacing:7.123200pt;}
.ws1a4{word-spacing:7.134400pt;}
.wsfa{word-spacing:7.201600pt;}
.wse3{word-spacing:7.252000pt;}
.ws118{word-spacing:7.291200pt;}
.wsfb{word-spacing:7.302400pt;}
.wsd7{word-spacing:7.313600pt;}
.ws6e{word-spacing:7.481600pt;}
.ws91{word-spacing:7.526400pt;}
.ws1c5{word-spacing:7.554400pt;}
.ws83{word-spacing:7.565600pt;}
.ws1c7{word-spacing:7.744800pt;}
.ws71{word-spacing:7.957600pt;}
.ws15a{word-spacing:7.980000pt;}
.ws15b{word-spacing:8.041600pt;}
.ws33{word-spacing:8.061067pt;}
.ws187{word-spacing:8.237600pt;}
.ws77{word-spacing:8.344000pt;}
.ws8c{word-spacing:8.422400pt;}
.ws39{word-spacing:8.450400pt;}
.ws5d{word-spacing:8.607200pt;}
.ws1c0{word-spacing:8.635200pt;}
.ws193{word-spacing:8.646400pt;}
.ws97{word-spacing:8.680000pt;}
.ws7d{word-spacing:8.719200pt;}
.ws128{word-spacing:8.752800pt;}
.ws196{word-spacing:8.988000pt;}
.ws5e{word-spacing:9.094400pt;}
.ws178{word-spacing:9.150400pt;}
.ws15{word-spacing:9.269867pt;}
.ws92{word-spacing:9.312800pt;}
.ws48{word-spacing:9.475200pt;}
.ws110{word-spacing:9.620800pt;}
.ws34{word-spacing:9.895200pt;}
.ws191{word-spacing:9.917600pt;}
.ws1f0{word-spacing:10.018400pt;}
.ws101{word-spacing:10.544800pt;}
.ws186{word-spacing:10.584000pt;}
.ws129{word-spacing:10.690400pt;}
.ws125{word-spacing:10.735200pt;}
.ws37{word-spacing:11.258133pt;}
.wse0{word-spacing:11.547200pt;}
.ws1da{word-spacing:12.941600pt;}
.ws93{word-spacing:13.003200pt;}
.wsfc{word-spacing:13.389600pt;}
.ws1db{word-spacing:13.675200pt;}
.wse9{word-spacing:13.820800pt;}
.ws1e9{word-spacing:15.713600pt;}
.ws38{word-spacing:16.395733pt;}
.ws1ea{word-spacing:16.564800pt;}
.ws203{word-spacing:16.732800pt;}
.ws204{word-spacing:18.961600pt;}
.wsc{word-spacing:19.532000pt;}
.ws205{word-spacing:20.014400pt;}
.wse5{word-spacing:20.837600pt;}
.ws4{word-spacing:31.515319pt;}
.wsbf{word-spacing:145.881600pt;}
.ws108{word-spacing:182.754133pt;}
.wsf7{word-spacing:223.978667pt;}
.wsf5{word-spacing:252.471467pt;}
.wsf6{word-spacing:301.162667pt;}
.wsbe{word-spacing:302.374400pt;}
._38{margin-left:-181.483467pt;}
._57{margin-left:-25.020800pt;}
._58{margin-left:-24.048800pt;}
._5c{margin-left:-19.107200pt;}
._5d{margin-left:-16.699200pt;}
._56{margin-left:-15.237600pt;}
._5e{margin-left:-14.140000pt;}
._59{margin-left:-12.796000pt;}
._5b{margin-left:-11.888800pt;}
._55{margin-left:-10.074400pt;}
._3{margin-left:-8.960000pt;}
._5a{margin-left:-7.851733pt;}
._7{margin-left:-6.835200pt;}
._6{margin-left:-5.715200pt;}
._d{margin-left:-4.412800pt;}
._9{margin-left:-3.284533pt;}
._0{margin-left:-2.248533pt;}
._1{margin-left:-0.947200pt;}
._2{width:0.960000pt;}
._f{width:1.923733pt;}
._17{width:3.013600pt;}
._e{width:4.725600pt;}
._5{width:6.387200pt;}
._10{width:7.729333pt;}
._8{width:8.648800pt;}
._c{width:9.564800pt;}
._11{width:10.564000pt;}
._a{width:11.820533pt;}
._4{width:13.158400pt;}
._19{width:14.053926pt;}
._12{width:15.219733pt;}
._18{width:16.246400pt;}
._13{width:17.246933pt;}
._34{width:18.631200pt;}
._53{width:19.550667pt;}
._33{width:22.411200pt;}
._15{width:23.909600pt;}
._14{width:24.936000pt;}
._54{width:27.224267pt;}
._1a{width:61.721600pt;}
._b{width:83.511526pt;}
._16{width:84.430993pt;}
._32{width:96.213333pt;}
._23{width:98.030933pt;}
._43{width:105.826133pt;}
._22{width:117.555200pt;}
._25{width:119.338667pt;}
._37{width:128.716800pt;}
._39{width:148.800000pt;}
._2a{width:154.133333pt;}
._35{width:159.163733pt;}
._1b{width:160.384000pt;}
._2e{width:167.918933pt;}
._3c{width:172.979200pt;}
._27{width:175.466667pt;}
._1e{width:177.254400pt;}
._1f{width:179.067733pt;}
._36{width:181.260800pt;}
._3f{width:235.840000pt;}
._3e{width:239.675733pt;}
._42{width:241.105067pt;}
._40{width:243.520000pt;}
._52{width:247.027200pt;}
._3d{width:251.204267pt;}
._41{width:252.757333pt;}
._4f{width:258.828800pt;}
._46{width:261.009067pt;}
._49{width:266.513067pt;}
._4a{width:274.197333pt;}
._45{width:276.347733pt;}
._44{width:287.876267pt;}
._50{width:289.429333pt;}
._48{width:291.686400pt;}
._4c{width:303.782400pt;}
._4b{width:304.768000pt;}
._4d{width:313.019733pt;}
._47{width:324.548267pt;}
._51{width:341.145600pt;}
._21{width:351.564800pt;}
._4e{width:356.825600pt;}
._2b{width:395.712000pt;}
._31{width:397.621333pt;}
._28{width:417.045333pt;}
._24{width:418.946133pt;}
._1c{width:438.378667pt;}
._2f{width:440.279467pt;}
._3b{width:447.462400pt;}
._2d{width:457.655467pt;}
._29{width:471.436800pt;}
._3a{width:479.786667pt;}
._26{width:492.770133pt;}
._1d{width:667.852800pt;}
._2c{width:689.186133pt;}
._20{width:849.642667pt;}
._30{width:939.588267pt;}
.fs6{font-size:18.666667pt;}
.fs7{font-size:28.000000pt;}
.fs5{font-size:37.333333pt;}
.fsd{font-size:42.000000pt;}
.fsc{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fsa{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:51.173333pt;}
.y1e{bottom:51.174800pt;}
.y20{bottom:60.447067pt;}
.y16{bottom:63.173200pt;}
.y1d{bottom:63.174667pt;}
.y11a{bottom:130.218800pt;}
.yb4{bottom:130.783133pt;}
.y144{bottom:130.783600pt;}
.y7d{bottom:130.786867pt;}
.y1b6{bottom:130.792000pt;}
.y164{bottom:130.799000pt;}
.y98{bottom:130.851333pt;}
.y17e{bottom:130.852267pt;}
.y155{bottom:130.856933pt;}
.y64{bottom:130.866733pt;}
.y1a0{bottom:131.050600pt;}
.y40{bottom:131.078867pt;}
.yf5{bottom:131.938000pt;}
.y1c{bottom:131.992000pt;}
.y1d2{bottom:132.116933pt;}
.yca{bottom:132.371333pt;}
.y1b{bottom:142.659067pt;}
.y119{bottom:148.885000pt;}
.y143{bottom:149.449800pt;}
.y7c{bottom:149.453067pt;}
.yb3{bottom:149.453533pt;}
.y1b5{bottom:149.458200pt;}
.y163{bottom:149.465200pt;}
.y97{bottom:149.517533pt;}
.y17d{bottom:149.518467pt;}
.y154{bottom:149.523133pt;}
.y63{bottom:149.532933pt;}
.y19f{bottom:149.716800pt;}
.y3f{bottom:149.745067pt;}
.yf4{bottom:150.604200pt;}
.y1d1{bottom:150.783133pt;}
.yc9{bottom:151.037533pt;}
.y1a{bottom:153.326133pt;}
.y19{bottom:163.993200pt;}
.y118{bottom:167.551200pt;}
.y142{bottom:168.116000pt;}
.y7b{bottom:168.119267pt;}
.yb2{bottom:168.119733pt;}
.y1b4{bottom:168.124400pt;}
.y162{bottom:168.131400pt;}
.y96{bottom:168.183733pt;}
.y17c{bottom:168.184667pt;}
.y153{bottom:168.189333pt;}
.y62{bottom:168.199133pt;}
.y19e{bottom:168.383000pt;}
.y3e{bottom:168.411267pt;}
.yf3{bottom:169.270400pt;}
.y1d0{bottom:169.449333pt;}
.y1cf{bottom:169.450733pt;}
.yc8{bottom:169.703733pt;}
.y18{bottom:177.743600pt;}
.y117{bottom:186.217400pt;}
.ycf{bottom:186.784533pt;}
.y7a{bottom:186.785467pt;}
.yb1{bottom:186.785933pt;}
.y1b3{bottom:186.790600pt;}
.y161{bottom:186.797600pt;}
.y17b{bottom:186.850867pt;}
.y152{bottom:186.855533pt;}
.y61{bottom:186.865333pt;}
.y19d{bottom:187.049200pt;}
.y3d{bottom:187.077467pt;}
.y1ce{bottom:188.116933pt;}
.yc7{bottom:188.369933pt;}
.y141{bottom:202.782667pt;}
.y116{bottom:204.883600pt;}
.yce{bottom:205.450733pt;}
.y79{bottom:205.451667pt;}
.yb0{bottom:205.452133pt;}
.y1b2{bottom:205.456800pt;}
.y160{bottom:205.463800pt;}
.y95{bottom:205.517067pt;}
.y151{bottom:205.521733pt;}
.y60{bottom:205.531533pt;}
.y19c{bottom:205.715400pt;}
.yf2{bottom:206.603733pt;}
.y1cd{bottom:206.783133pt;}
.yc6{bottom:207.036133pt;}
.y15{bottom:211.608933pt;}
.y3c{bottom:219.077467pt;}
.y115{bottom:223.549800pt;}
.ycd{bottom:224.116933pt;}
.y78{bottom:224.117867pt;}
.yaf{bottom:224.118333pt;}
.y1b1{bottom:224.123000pt;}
.y15f{bottom:224.130000pt;}
.y150{bottom:224.187933pt;}
.y5f{bottom:224.197733pt;}
.y19b{bottom:224.381600pt;}
.y1cc{bottom:225.449333pt;}
.y1cb{bottom:225.450267pt;}
.yc5{bottom:225.702333pt;}
.y14{bottom:228.942000pt;}
.y114{bottom:242.216000pt;}
.ycc{bottom:242.783133pt;}
.y77{bottom:242.784067pt;}
.yae{bottom:242.784533pt;}
.y1b0{bottom:242.789200pt;}
.y15e{bottom:242.796200pt;}
.y94{bottom:242.850400pt;}
.y14f{bottom:242.854133pt;}
.y5e{bottom:242.863933pt;}
.y19a{bottom:243.047800pt;}
.y1ca{bottom:244.116467pt;}
.yc4{bottom:244.368533pt;}
.y13{bottom:246.275067pt;}
.y12e{bottom:254.638800pt;}
.y140{bottom:256.118800pt;}
.y113{bottom:260.882200pt;}
.y76{bottom:261.450267pt;}
.yad{bottom:261.450733pt;}
.ycb{bottom:261.452600pt;}
.y1af{bottom:261.455400pt;}
.y15d{bottom:261.462400pt;}
.y14e{bottom:261.520333pt;}
.y5d{bottom:261.530133pt;}
.y199{bottom:261.714000pt;}
.yf1{bottom:262.608400pt;}
.y1c9{bottom:262.782667pt;}
.y1c8{bottom:262.783133pt;}
.y12{bottom:263.608133pt;}
.y12d{bottom:267.972133pt;}
.y13f{bottom:274.785000pt;}
.y112{bottom:279.548400pt;}
.y75{bottom:280.116467pt;}
.yac{bottom:280.116933pt;}
.y1ae{bottom:280.121600pt;}
.y15c{bottom:280.128600pt;}
.y14d{bottom:280.186533pt;}
.y5c{bottom:280.196333pt;}
.y198{bottom:280.380200pt;}
.y11{bottom:280.941200pt;}
.yf0{bottom:281.274600pt;}
.y12c{bottom:281.305467pt;}
.y1c7{bottom:281.449333pt;}
.y1c6{bottom:281.450733pt;}
.yc3{bottom:281.701867pt;}
.y13e{bottom:293.451200pt;}
.y12b{bottom:294.638800pt;}
.y111{bottom:298.214600pt;}
.y10{bottom:298.274267pt;}
.y74{bottom:298.782667pt;}
.yab{bottom:298.783133pt;}
.y1ad{bottom:298.787800pt;}
.y15b{bottom:298.794800pt;}
.y14c{bottom:298.852733pt;}
.y17a{bottom:298.859733pt;}
.y5b{bottom:298.862533pt;}
.y197{bottom:299.046400pt;}
.yef{bottom:299.940800pt;}
.y1c5{bottom:300.116933pt;}
.y3b{bottom:301.009067pt;}
.y12a{bottom:307.972133pt;}
.y13d{bottom:312.117400pt;}
.yf{bottom:315.607333pt;}
.y110{bottom:316.880800pt;}
.yaa{bottom:317.449333pt;}
.y1ac{bottom:317.454000pt;}
.y15a{bottom:317.461000pt;}
.y14b{bottom:317.518933pt;}
.y179{bottom:317.525933pt;}
.y5a{bottom:317.528733pt;}
.y196{bottom:317.712600pt;}
.y3a{bottom:318.342133pt;}
.yee{bottom:318.607000pt;}
.y1c4{bottom:318.783133pt;}
.y129{bottom:321.305467pt;}
.ye6{bottom:322.440000pt;}
.y93{bottom:322.861333pt;}
.y13c{bottom:330.783600pt;}
.ye{bottom:332.940400pt;}
.y128{bottom:334.638800pt;}
.yc2{bottom:335.035200pt;}
.y10f{bottom:335.547000pt;}
.ye5{bottom:335.773333pt;}
.y73{bottom:336.116000pt;}
.y1ab{bottom:336.120200pt;}
.y159{bottom:336.127200pt;}
.y14a{bottom:336.185133pt;}
.y178{bottom:336.192133pt;}
.y59{bottom:336.194933pt;}
.y195{bottom:336.378800pt;}
.yed{bottom:337.273200pt;}
.y1c3{bottom:337.449333pt;}
.y1c2{bottom:337.450733pt;}
.y92{bottom:341.527533pt;}
.y39{bottom:343.675467pt;}
.ye4{bottom:349.106667pt;}
.y13b{bottom:349.449800pt;}
.yd{bottom:350.273467pt;}
.y10e{bottom:354.213200pt;}
.ya9{bottom:354.782667pt;}
.y1aa{bottom:354.786400pt;}
.y158{bottom:354.793400pt;}
.y149{bottom:354.851333pt;}
.y177{bottom:354.858333pt;}
.y58{bottom:354.861133pt;}
.y194{bottom:355.045000pt;}
.yec{bottom:355.939400pt;}
.y1c1{bottom:356.116933pt;}
.y127{bottom:358.348800pt;}
.y91{bottom:360.193733pt;}
.y38{bottom:361.008533pt;}
.ye3{bottom:362.440000pt;}
.yc{bottom:367.606533pt;}
.y13a{bottom:368.116000pt;}
.y10d{bottom:372.879400pt;}
.y1a9{bottom:373.452600pt;}
.y157{bottom:373.459600pt;}
.y148{bottom:373.517533pt;}
.y176{bottom:373.524533pt;}
.y57{bottom:373.527333pt;}
.y193{bottom:373.711200pt;}
.yeb{bottom:374.605600pt;}
.y1c0{bottom:374.783133pt;}
.ye2{bottom:375.773333pt;}
.y37{bottom:378.341600pt;}
.y90{bottom:378.859933pt;}
.yb{bottom:384.939600pt;}
.ye1{bottom:389.106667pt;}
.y10c{bottom:391.545600pt;}
.y1a8{bottom:392.118800pt;}
.y156{bottom:392.125800pt;}
.y147{bottom:392.183733pt;}
.y1e0{bottom:392.184667pt;}
.y126{bottom:392.188400pt;}
.y175{bottom:392.190733pt;}
.y56{bottom:392.193533pt;}
.y192{bottom:392.377400pt;}
.yea{bottom:393.271800pt;}
.y1bf{bottom:393.449333pt;}
.y1be{bottom:393.449800pt;}
.y36{bottom:395.674667pt;}
.y8f{bottom:397.526133pt;}
.ye0{bottom:402.440000pt;}
.y139{bottom:402.782667pt;}
.y10b{bottom:410.211800pt;}
.y1a7{bottom:410.785000pt;}
.ya8{bottom:410.792000pt;}
.y1df{bottom:410.850867pt;}
.y125{bottom:410.854600pt;}
.y174{bottom:410.856933pt;}
.y55{bottom:410.859733pt;}
.y191{bottom:411.043600pt;}
.ye9{bottom:411.938000pt;}
.y1bd{bottom:412.116000pt;}
.y1bc{bottom:412.116933pt;}
.y35{bottom:413.007733pt;}
.ydf{bottom:415.773333pt;}
.y8e{bottom:416.192333pt;}
.yc1{bottom:428.370400pt;}
.y10a{bottom:428.878000pt;}
.yde{bottom:429.106667pt;}
.y1a6{bottom:429.451200pt;}
.y72{bottom:429.451667pt;}
.ya7{bottom:429.458200pt;}
.y146{bottom:429.517067pt;}
.y1de{bottom:429.518000pt;}
.y124{bottom:429.520800pt;}
.y173{bottom:429.523133pt;}
.y54{bottom:429.525933pt;}
.y190{bottom:429.709800pt;}
.y34{bottom:430.340800pt;}
.ye8{bottom:430.604200pt;}
.y1bb{bottom:430.783133pt;}
.y8d{bottom:434.858533pt;}
.ydd{bottom:442.440000pt;}
.yc0{bottom:447.036600pt;}
.y109{bottom:447.544200pt;}
.y33{bottom:447.673867pt;}
.y1a5{bottom:448.117400pt;}
.y71{bottom:448.117867pt;}
.ya6{bottom:448.124400pt;}
.y1dd{bottom:448.184200pt;}
.y123{bottom:448.187000pt;}
.y172{bottom:448.189333pt;}
.y53{bottom:448.192133pt;}
.y18f{bottom:448.376000pt;}
.ye7{bottom:449.270400pt;}
.y1ba{bottom:449.449333pt;}
.y1b9{bottom:449.449800pt;}
.y138{bottom:453.453067pt;}
.y8c{bottom:453.524733pt;}
.ydc{bottom:455.773333pt;}
.y32{bottom:465.006933pt;}
.ybf{bottom:465.702800pt;}
.y108{bottom:466.210400pt;}
.y1a4{bottom:466.783600pt;}
.y70{bottom:466.784067pt;}
.ya5{bottom:466.790600pt;}
.y1dc{bottom:466.850400pt;}
.y1db{bottom:466.851333pt;}
.y122{bottom:466.853200pt;}
.y171{bottom:466.855533pt;}
.y52{bottom:466.858333pt;}
.y18e{bottom:467.042200pt;}
.y1b8{bottom:468.116000pt;}
.ydb{bottom:469.106667pt;}
.y137{bottom:472.119267pt;}
.y8b{bottom:472.190933pt;}
.y31{bottom:482.340000pt;}
.yda{bottom:482.440000pt;}
.ybe{bottom:484.369000pt;}
.y107{bottom:484.876600pt;}
.y1a3{bottom:485.449800pt;}
.y6f{bottom:485.450267pt;}
.ya4{bottom:485.456800pt;}
.y145{bottom:485.517067pt;}
.y1da{bottom:485.517533pt;}
.y121{bottom:485.519400pt;}
.y170{bottom:485.521733pt;}
.y51{bottom:485.524533pt;}
.y18d{bottom:485.708400pt;}
.y136{bottom:490.785467pt;}
.y8a{bottom:490.857133pt;}
.yd9{bottom:495.773333pt;}
.y30{bottom:499.673067pt;}
.y1b7{bottom:502.782667pt;}
.ybd{bottom:503.035200pt;}
.y106{bottom:503.542800pt;}
.y1a2{bottom:504.116000pt;}
.ya3{bottom:504.123000pt;}
.y1d9{bottom:504.183733pt;}
.y120{bottom:504.185600pt;}
.y16f{bottom:504.187933pt;}
.y50{bottom:504.190733pt;}
.y18c{bottom:504.374600pt;}
.yd8{bottom:509.106667pt;}
.y135{bottom:509.451667pt;}
.y89{bottom:509.523333pt;}
.y2f{bottom:517.006133pt;}
.ybc{bottom:521.701400pt;}
.y105{bottom:522.209000pt;}
.yd7{bottom:522.440000pt;}
.y6e{bottom:522.784067pt;}
.ya2{bottom:522.789200pt;}
.y11f{bottom:522.851800pt;}
.y16e{bottom:522.854133pt;}
.y4f{bottom:522.856933pt;}
.y18b{bottom:523.040800pt;}
.y134{bottom:528.117867pt;}
.y88{bottom:528.189533pt;}
.y2e{bottom:534.339200pt;}
.yd6{bottom:535.773333pt;}
.y104{bottom:540.881267pt;}
.y1a1{bottom:541.449333pt;}
.y6d{bottom:541.450267pt;}
.ya1{bottom:541.455400pt;}
.y11e{bottom:541.518000pt;}
.y16d{bottom:541.520333pt;}
.y4e{bottom:541.523133pt;}
.y18a{bottom:541.707000pt;}
.ya{bottom:543.368133pt;}
.y133{bottom:546.784067pt;}
.y87{bottom:546.855733pt;}
.yd5{bottom:549.106667pt;}
.y2d{bottom:551.672267pt;}
.ybb{bottom:559.035200pt;}
.y103{bottom:559.547467pt;}
.y6c{bottom:560.116467pt;}
.ya0{bottom:560.121600pt;}
.y11d{bottom:560.184200pt;}
.y16c{bottom:560.186533pt;}
.y4d{bottom:560.189333pt;}
.y189{bottom:560.373200pt;}
.y9{bottom:562.034800pt;}
.yd4{bottom:562.440000pt;}
.y132{bottom:565.450267pt;}
.y86{bottom:565.521933pt;}
.y2c{bottom:569.005333pt;}
.yd3{bottom:575.773333pt;}
.y102{bottom:578.213667pt;}
.y6b{bottom:578.782667pt;}
.y9f{bottom:578.787800pt;}
.y11c{bottom:578.850400pt;}
.y1d8{bottom:578.851800pt;}
.y16b{bottom:578.852733pt;}
.y4c{bottom:578.855533pt;}
.y188{bottom:579.039400pt;}
.y8{bottom:580.701467pt;}
.y131{bottom:584.116467pt;}
.y85{bottom:584.188133pt;}
.y2b{bottom:586.338400pt;}
.yd2{bottom:589.106667pt;}
.yba{bottom:596.368533pt;}
.y101{bottom:596.879867pt;}
.y9e{bottom:597.454000pt;}
.y1d7{bottom:597.518000pt;}
.y16a{bottom:597.518933pt;}
.y4b{bottom:597.521733pt;}
.y187{bottom:597.705600pt;}
.y7{bottom:599.368133pt;}
.yd1{bottom:602.440000pt;}
.y130{bottom:602.782667pt;}
.y84{bottom:602.854333pt;}
.y100{bottom:615.546067pt;}
.y6a{bottom:616.116000pt;}
.y9d{bottom:616.120200pt;}
.y11b{bottom:616.183733pt;}
.y1d6{bottom:616.184200pt;}
.y169{bottom:616.185133pt;}
.y4a{bottom:616.187933pt;}
.y186{bottom:616.371800pt;}
.y2a{bottom:621.004533pt;}
.y83{bottom:621.520533pt;}
.yd0{bottom:627.225733pt;}
.yff{bottom:634.212267pt;}
.y9c{bottom:634.786400pt;}
.y1d5{bottom:634.850400pt;}
.y168{bottom:634.851333pt;}
.y49{bottom:634.854133pt;}
.y185{bottom:635.038000pt;}
.y6{bottom:636.701467pt;}
.y12f{bottom:637.449333pt;}
.y29{bottom:638.337600pt;}
.y82{bottom:640.186733pt;}
.yfe{bottom:652.878467pt;}
.y9b{bottom:653.452600pt;}
.y167{bottom:653.517533pt;}
.y48{bottom:653.520333pt;}
.y184{bottom:653.704200pt;}
.y5{bottom:655.368133pt;}
.y81{bottom:658.852933pt;}
.y28{bottom:663.670933pt;}
.yfd{bottom:671.544667pt;}
.y9a{bottom:672.118800pt;}
.y166{bottom:672.183733pt;}
.y1d4{bottom:672.184667pt;}
.y47{bottom:672.186533pt;}
.y183{bottom:672.370400pt;}
.y80{bottom:677.519133pt;}
.y27{bottom:681.004000pt;}
.yb9{bottom:689.703267pt;}
.yfc{bottom:690.210867pt;}
.y99{bottom:690.785000pt;}
.y1d3{bottom:690.850867pt;}
.y46{bottom:690.852733pt;}
.y182{bottom:691.036600pt;}
.y4{bottom:692.701467pt;}
.y7f{bottom:696.185333pt;}
.y26{bottom:698.337067pt;}
.yb8{bottom:708.369467pt;}
.yfb{bottom:708.877067pt;}
.y69{bottom:709.451200pt;}
.y165{bottom:709.517067pt;}
.y45{bottom:709.518933pt;}
.y181{bottom:709.702800pt;}
.y3{bottom:711.368133pt;}
.y7e{bottom:714.851533pt;}
.y25{bottom:715.670133pt;}
.yb7{bottom:727.035667pt;}
.yfa{bottom:727.543267pt;}
.y68{bottom:728.117400pt;}
.y44{bottom:728.185133pt;}
.y180{bottom:728.369000pt;}
.y24{bottom:733.003200pt;}
.yb6{bottom:745.701867pt;}
.yf9{bottom:746.209467pt;}
.y67{bottom:746.783600pt;}
.y43{bottom:746.851333pt;}
.y17f{bottom:747.035200pt;}
.y23{bottom:750.336267pt;}
.y2{bottom:754.035333pt;}
.yf8{bottom:764.875667pt;}
.y66{bottom:765.449800pt;}
.y42{bottom:765.517533pt;}
.y22{bottom:767.669333pt;}
.yf6{bottom:775.706000pt;}
.y1{bottom:778.034800pt;}
.yb5{bottom:783.035200pt;}
.yf7{bottom:783.541867pt;}
.y65{bottom:784.116000pt;}
.y41{bottom:784.183733pt;}
.y21{bottom:785.002400pt;}
.y1f{bottom:834.467333pt;}
.h8{height:18.840000pt;}
.ha{height:25.116000pt;}
.h9{height:31.173333pt;}
.h6{height:33.488000pt;}
.h14{height:35.070000pt;}
.h12{height:39.166667pt;}
.h13{height:39.637333pt;}
.h5{height:42.306667pt;}
.h15{height:46.368000pt;}
.hd{height:46.760000pt;}
.h4{height:47.069333pt;}
.h3{height:47.680000pt;}
.hb{height:47.840000pt;}
.h11{height:51.406250pt;}
.h10{height:54.501333pt;}
.hf{height:56.978667pt;}
.h2{height:58.750000pt;}
.he{height:59.752000pt;}
.hc{height:69.365333pt;}
.h1{height:84.229333pt;}
.h7{height:84.929067pt;}
.h0{height:906.666667pt;}
.w1{width:641.906667pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:57.195067pt;}
.xc{left:93.874887pt;}
.x1c{left:97.333733pt;}
.x45{left:99.670400pt;}
.x17{left:100.792400pt;}
.x25{left:102.998000pt;}
.x33{left:104.259333pt;}
.xf{left:107.041600pt;}
.xb{left:112.772667pt;}
.x24{left:121.333467pt;}
.x3b{left:124.194267pt;}
.x1e{left:126.464533pt;}
.x4f{left:127.789600pt;}
.x12{left:129.193200pt;}
.x2c{left:131.725467pt;}
.x51{left:133.393467pt;}
.x30{left:134.805600pt;}
.x1f{left:137.332533pt;}
.x31{left:142.038400pt;}
.x23{left:147.170800pt;}
.x26{left:148.773467pt;}
.x1{left:151.844533pt;}
.x1a{left:153.620267pt;}
.x59{left:154.638267pt;}
.x19{left:156.710000pt;}
.x50{left:157.734400pt;}
.x20{left:162.588533pt;}
.x46{left:166.780267pt;}
.x34{left:168.182800pt;}
.x32{left:169.862267pt;}
.x2d{left:173.097733pt;}
.x52{left:176.833200pt;}
.x42{left:185.892800pt;}
.x27{left:193.341200pt;}
.x53{left:194.614133pt;}
.x21{left:196.860800pt;}
.x47{left:197.845600pt;}
.x5a{left:198.745733pt;}
.x3c{left:200.024133pt;}
.x1b{left:205.652933pt;}
.x54{left:206.594133pt;}
.x35{left:209.874667pt;}
.x55{left:216.590933pt;}
.x1d{left:222.013600pt;}
.x22{left:226.940933pt;}
.x28{left:229.671200pt;}
.x37{left:232.726533pt;}
.x5b{left:239.006133pt;}
.x3d{left:240.175867pt;}
.x43{left:242.156400pt;}
.x2e{left:249.583333pt;}
.x56{left:258.104933pt;}
.x48{left:264.411733pt;}
.x38{left:268.064533pt;}
.x10{left:270.478133pt;}
.x5c{left:272.729200pt;}
.x29{left:273.799067pt;}
.x36{left:275.551467pt;}
.x2f{left:278.401467pt;}
.x3e{left:280.550400pt;}
.x39{left:286.259600pt;}
.x18{left:292.755600pt;}
.x57{left:293.860533pt;}
.x3a{left:296.018933pt;}
.x2{left:304.176433pt;}
.x13{left:305.578667pt;}
.x3f{left:307.121333pt;}
.x58{left:314.013200pt;}
.x44{left:316.966800pt;}
.xd{left:323.420933pt;}
.x49{left:327.920267pt;}
.xe{left:334.348493pt;}
.x9{left:336.333067pt;}
.x40{left:346.863733pt;}
.x2a{left:360.496000pt;}
.x4a{left:363.795600pt;}
.x3{left:372.325467pt;}
.xa{left:383.058067pt;}
.x41{left:394.994533pt;}
.x2b{left:411.388533pt;}
.x4b{left:415.878533pt;}
.x7{left:424.041600pt;}
.x4c{left:426.304133pt;}
.x16{left:428.769200pt;}
.x15{left:432.021200pt;}
.x4d{left:433.654667pt;}
.x5{left:438.957200pt;}
.x14{left:443.790000pt;}
.x4e{left:479.732267pt;}
.x6{left:488.341200pt;}
.x8{left:495.033067pt;}
.x4{left:500.741067pt;}
}

