
    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_803d84bd6274d2e3b1aca1ef.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0082cb418eeac1a5628ab50f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d17ff9749751b8a96706431.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_49b67e84e7afa3c4678fb5f6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0c6d2f826a348aff26a72d29.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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;}
.m1{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);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-23.940600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.939106px;}
.ls34{letter-spacing:-6.162670px;}
.ls35{letter-spacing:-4.485560px;}
.ls37{letter-spacing:-4.036435px;}
.ls3c{letter-spacing:-3.967021px;}
.ls36{letter-spacing:-3.945473px;}
.ls3d{letter-spacing:-3.919153px;}
.ls3f{letter-spacing:-2.930205px;}
.ls3e{letter-spacing:-2.271788px;}
.ls33{letter-spacing:-1.415595px;}
.ls2e{letter-spacing:-0.907200px;}
.ls2f{letter-spacing:-0.896400px;}
.ls18{letter-spacing:-0.889110px;}
.ls44{letter-spacing:-0.885204px;}
.ls1b{letter-spacing:-0.879498px;}
.ls40{letter-spacing:-0.878598px;}
.ls1c{letter-spacing:-0.874692px;}
.ls42{letter-spacing:-0.871992px;}
.ls13{letter-spacing:-0.869886px;}
.ls2c{letter-spacing:-0.865386px;}
.ls1a{letter-spacing:-0.865080px;}
.ls14{letter-spacing:-0.860274px;}
.ls41{letter-spacing:-0.858780px;}
.ls1e{letter-spacing:-0.855468px;}
.ls43{letter-spacing:-0.852174px;}
.ls16{letter-spacing:-0.850662px;}
.ls19{letter-spacing:-0.845856px;}
.ls49{letter-spacing:-0.845568px;}
.ls2d{letter-spacing:-0.842400px;}
.ls15{letter-spacing:-0.841050px;}
.ls45{letter-spacing:-0.838962px;}
.ls48{letter-spacing:-0.832356px;}
.ls1d{letter-spacing:-0.831438px;}
.ls17{letter-spacing:-0.826632px;}
.ls3b{letter-spacing:-0.577999px;}
.ls23{letter-spacing:-0.426920px;}
.ls25{letter-spacing:-0.079692px;}
.ls32{letter-spacing:-0.071928px;}
.ls31{letter-spacing:-0.059940px;}
.ls24{letter-spacing:-0.045538px;}
.ls26{letter-spacing:-0.034154px;}
.ls8{letter-spacing:-0.026424px;}
.ls12{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.016200px;}
.lsf{letter-spacing:-0.010800px;}
.ls4d{letter-spacing:-0.006606px;}
.lsd{letter-spacing:-0.005400px;}
.ls6{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.005400px;}
.ls7{letter-spacing:0.006606px;}
.ls2a{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.011385px;}
.ls5{letter-spacing:0.011988px;}
.ls4e{letter-spacing:0.013212px;}
.lsc{letter-spacing:0.019818px;}
.lsa{letter-spacing:0.026424px;}
.ls29{letter-spacing:0.027000px;}
.ls10{letter-spacing:0.029970px;}
.lsb{letter-spacing:0.033030px;}
.ls3{letter-spacing:0.039636px;}
.ls2{letter-spacing:0.046242px;}
.ls9{letter-spacing:0.052848px;}
.ls4b{letter-spacing:0.059454px;}
.ls1{letter-spacing:0.059940px;}
.ls2b{letter-spacing:0.064800px;}
.ls22{letter-spacing:0.066060px;}
.ls4f{letter-spacing:0.072666px;}
.ls4c{letter-spacing:0.079272px;}
.ls47{letter-spacing:0.089838px;}
.ls4{letter-spacing:0.090000px;}
.ls46{letter-spacing:0.091314px;}
.ls27{letter-spacing:1.668652px;}
.ls20{letter-spacing:1.775985px;}
.ls1f{letter-spacing:2.237058px;}
.ls4a{letter-spacing:4.366566px;}
.ls3a{letter-spacing:184.633049px;}
.ls11{letter-spacing:195.887718px;}
.ls39{letter-spacing:200.455149px;}
.ls38{letter-spacing:262.453565px;}
.ls30{letter-spacing:286.933692px;}
.ls0{letter-spacing:1973.338200px;}
.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;}
}
.wsc0{word-spacing:-301.146492px;}
.wsc1{word-spacing:-263.886215px;}
.wscd{word-spacing:-213.020349px;}
.ws96{word-spacing:-16.581060px;}
.ws0{word-spacing:-16.554636px;}
.ws109{word-spacing:-16.541424px;}
.wsdd{word-spacing:-15.656220px;}
.ws95{word-spacing:-14.544052px;}
.ws92{word-spacing:-14.242035px;}
.ws94{word-spacing:-14.196496px;}
.ws93{word-spacing:-14.150958px;}
.ws91{word-spacing:-13.803731px;}
.wsdc{word-spacing:-12.106314px;}
.wsde{word-spacing:-9.854838px;}
.ws3b{word-spacing:-9.000000px;}
.ws9a{word-spacing:-0.836762px;}
.ws85{word-spacing:-0.370062px;}
.ws84{word-spacing:-0.346032px;}
.ws35{word-spacing:-0.145332px;}
.wse0{word-spacing:-0.132120px;}
.ws104{word-spacing:-0.112302px;}
.ws4{word-spacing:-0.107892px;}
.ws3c{word-spacing:-0.099090px;}
.wsb4{word-spacing:-0.092484px;}
.ws1f{word-spacing:-0.077922px;}
.ws1{word-spacing:-0.059940px;}
.ws3d{word-spacing:-0.059454px;}
.ws134{word-spacing:-0.026424px;}
.ws121{word-spacing:-0.019818px;}
.ws10e{word-spacing:-0.013212px;}
.ws76{word-spacing:-0.006606px;}
.wsc7{word-spacing:-0.005685px;}
.wsbf{word-spacing:-0.005400px;}
.ws8a{word-spacing:-0.004806px;}
.ws2{word-spacing:0.000000px;}
.wsd1{word-spacing:0.005026px;}
.ws1b{word-spacing:0.005400px;}
.wsc6{word-spacing:0.005685px;}
.ws60{word-spacing:0.006606px;}
.ws8d{word-spacing:0.009612px;}
.wsd0{word-spacing:0.010052px;}
.ws1e{word-spacing:0.010800px;}
.ws1a{word-spacing:0.013212px;}
.ws5d{word-spacing:0.016200px;}
.wsd{word-spacing:0.019818px;}
.ws57{word-spacing:0.021600px;}
.ws115{word-spacing:0.026424px;}
.ws12c{word-spacing:0.033030px;}
.ws3{word-spacing:0.046242px;}
.ws29{word-spacing:0.052848px;}
.ws102{word-spacing:0.085878px;}
.ws101{word-spacing:0.158544px;}
.wse8{word-spacing:0.204786px;}
.ws5b{word-spacing:0.324000px;}
.wsa0{word-spacing:0.330300px;}
.wse7{word-spacing:0.343512px;}
.ws89{word-spacing:0.350838px;}
.ws88{word-spacing:0.427734px;}
.ws19{word-spacing:0.429390px;}
.ws2a{word-spacing:0.488844px;}
.ws18{word-spacing:0.541692px;}
.wsa1{word-spacing:0.561510px;}
.wscc{word-spacing:0.567000px;}
.ws34{word-spacing:0.581328px;}
.ws11a{word-spacing:0.587934px;}
.wsbb{word-spacing:0.607752px;}
.wsf5{word-spacing:0.706842px;}
.ws9f{word-spacing:0.819144px;}
.ws7c{word-spacing:0.845568px;}
.wsfe{word-spacing:0.891810px;}
.wsa3{word-spacing:0.931446px;}
.wsb6{word-spacing:0.971082px;}
.wsd8{word-spacing:0.990900px;}
.ws61{word-spacing:0.997506px;}
.ws127{word-spacing:1.043748px;}
.wsbd{word-spacing:1.085400px;}
.ws9c{word-spacing:1.109808px;}
.wsbc{word-spacing:1.139400px;}
.ws55{word-spacing:1.193400px;}
.ws5e{word-spacing:1.294776px;}
.wsdb{word-spacing:1.413684px;}
.ws4a{word-spacing:1.512774px;}
.wse{word-spacing:1.525986px;}
.ws116{word-spacing:1.605258px;}
.ws33{word-spacing:1.691136px;}
.ws100{word-spacing:1.862892px;}
.ws11e{word-spacing:1.869498px;}
.wse3{word-spacing:1.895922px;}
.wsb2{word-spacing:1.922400px;}
.ws4c{word-spacing:2.001618px;}
.wsd6{word-spacing:2.008224px;}
.wsb9{word-spacing:2.133738px;}
.ws6a{word-spacing:2.206404px;}
.wsd5{word-spacing:2.285676px;}
.ws58{word-spacing:2.311200px;}
.wsc{word-spacing:2.364948px;}
.ws38{word-spacing:2.378160px;}
.ws126{word-spacing:2.497068px;}
.wsd3{word-spacing:2.507061px;}
.ws67{word-spacing:2.516886px;}
.ws56{word-spacing:2.538000px;}
.ws5c{word-spacing:2.543400px;}
.wsd2{word-spacing:2.608780px;}
.ws6b{word-spacing:2.688642px;}
.ws66{word-spacing:2.708460px;}
.ws107{word-spacing:2.721672px;}
.wsbe{word-spacing:2.732400px;}
.ws36{word-spacing:2.860398px;}
.ws2c{word-spacing:2.867004px;}
.ws11{word-spacing:2.893428px;}
.wsc9{word-spacing:3.052909px;}
.wscb{word-spacing:3.071790px;}
.ws42{word-spacing:3.078396px;}
.ws62{word-spacing:3.085002px;}
.ws12b{word-spacing:3.118032px;}
.ws4e{word-spacing:3.355848px;}
.wsfd{word-spacing:3.408696px;}
.wsa7{word-spacing:3.534210px;}
.wse4{word-spacing:3.573846px;}
.ws6f{word-spacing:3.626694px;}
.wsad{word-spacing:3.731400px;}
.ws12a{word-spacing:3.857904px;}
.ws77{word-spacing:3.923964px;}
.ws5a{word-spacing:3.942000px;}
.ws49{word-spacing:3.963600px;}
.ws117{word-spacing:4.016448px;}
.ws48{word-spacing:4.062690px;}
.ws9e{word-spacing:4.102326px;}
.ws10c{word-spacing:4.194810px;}
.ws10b{word-spacing:4.326930px;}
.ws111{word-spacing:4.373172px;}
.ws110{word-spacing:4.498686px;}
.ws10f{word-spacing:4.511898px;}
.ws125{word-spacing:4.630806px;}
.ws123{word-spacing:4.677048px;}
.ws124{word-spacing:4.690260px;}
.ws10{word-spacing:4.723290px;}
.wsc8{word-spacing:4.730020px;}
.wsf8{word-spacing:4.749714px;}
.ws4b{word-spacing:4.815774px;}
.ws32{word-spacing:4.828986px;}
.ws27{word-spacing:4.862016px;}
.ws103{word-spacing:4.994136px;}
.ws26{word-spacing:5.033772px;}
.ws6e{word-spacing:5.126256px;}
.ws40{word-spacing:5.522616px;}
.ws70{word-spacing:5.555646px;}
.wse6{word-spacing:5.628312px;}
.wsd7{word-spacing:5.681160px;}
.ws3e{word-spacing:5.720796px;}
.wsb3{word-spacing:5.767038px;}
.wsfc{word-spacing:5.859522px;}
.ws7b{word-spacing:5.866128px;}
.wsc4{word-spacing:5.952006px;}
.ws5f{word-spacing:6.011460px;}
.ws17{word-spacing:6.183216px;}
.ws98{word-spacing:6.229458px;}
.ws69{word-spacing:6.500304px;}
.wsc2{word-spacing:6.658848px;}
.ws9d{word-spacing:6.672060px;}
.ws65{word-spacing:6.936300px;}
.wsfa{word-spacing:7.041996px;}
.ws59{word-spacing:7.171200px;}
.wsc5{word-spacing:7.396596px;}
.ws1d{word-spacing:7.759800px;}
.ws1c{word-spacing:7.878600px;}
.wsb7{word-spacing:7.894170px;}
.wsf{word-spacing:7.966836px;}
.wsb5{word-spacing:8.079138px;}
.wsf3{word-spacing:8.125380px;}
.wsf2{word-spacing:8.290530px;}
.wsa{word-spacing:8.435862px;}
.ws44{word-spacing:8.442468px;}
.ws3a{word-spacing:8.468892px;}
.ws39{word-spacing:8.521740px;}
.wsa6{word-spacing:8.548164px;}
.ws105{word-spacing:8.554770px;}
.ws4d{word-spacing:8.587800px;}
.ws68{word-spacing:8.660466px;}
.ws72{word-spacing:8.713314px;}
.ws82{word-spacing:9.439974px;}
.ws7f{word-spacing:9.644760px;}
.ws2e{word-spacing:9.710820px;}
.wsab{word-spacing:9.783486px;}
.ws99{word-spacing:9.895788px;}
.ws6c{word-spacing:10.014696px;}
.ws122{word-spacing:10.450692px;}
.ws25{word-spacing:10.602630px;}
.ws54{word-spacing:10.638000px;}
.wsf7{word-spacing:10.648872px;}
.wsa2{word-spacing:10.654200px;}
.wsaf{word-spacing:10.655478px;}
.ws130{word-spacing:10.827234px;}
.wsb{word-spacing:10.965960px;}
.wsee{word-spacing:10.985778px;}
.wsda{word-spacing:11.230200px;}
.wse5{word-spacing:11.263230px;}
.ws106{word-spacing:11.355714px;}
.wsff{word-spacing:11.580318px;}
.ws108{word-spacing:11.844558px;}
.ws97{word-spacing:11.870982px;}
.ws31{word-spacing:11.996496px;}
.ws37{word-spacing:12.049344px;}
.wsba{word-spacing:12.333402px;}
.ws2f{word-spacing:12.373038px;}
.ws4f{word-spacing:12.994002px;}
.ws45{word-spacing:13.000608px;}
.wsed{word-spacing:13.040244px;}
.ws87{word-spacing:13.129992px;}
.wsa5{word-spacing:13.264848px;}
.ws86{word-spacing:13.274172px;}
.wsec{word-spacing:13.390362px;}
.ws7a{word-spacing:13.410180px;}
.wseb{word-spacing:13.522482px;}
.ws9b{word-spacing:13.614966px;}
.wsac{word-spacing:13.826358px;}
.ws2b{word-spacing:13.885812px;}
.wsa4{word-spacing:13.991508px;}
.ws128{word-spacing:14.077386px;}
.wsb8{word-spacing:14.235930px;}
.ws2d{word-spacing:14.255748px;}
.ws9{word-spacing:14.731380px;}
.ws50{word-spacing:14.929560px;}
.wsaa{word-spacing:15.094710px;}
.ws75{word-spacing:15.101316px;}
.ws8{word-spacing:15.134346px;}
.ws133{word-spacing:15.405192px;}
.wsb1{word-spacing:15.425010px;}
.ws6d{word-spacing:15.451434px;}
.ws132{word-spacing:15.477858px;}
.ws30{word-spacing:15.491070px;}
.ws12f{word-spacing:15.861006px;}
.ws12e{word-spacing:15.966702px;}
.ws12d{word-spacing:16.006338px;}
.wsc3{word-spacing:16.125246px;}
.ws81{word-spacing:16.211124px;}
.ws28{word-spacing:16.349850px;}
.wsf6{word-spacing:17.050086px;}
.ws24{word-spacing:17.056692px;}
.wsa8{word-spacing:17.717292px;}
.wsdf{word-spacing:18.192924px;}
.ws5{word-spacing:18.285408px;}
.ws22{word-spacing:18.397710px;}
.wsf9{word-spacing:18.463770px;}
.ws79{word-spacing:18.543042px;}
.wsa9{word-spacing:18.582678px;}
.ws78{word-spacing:18.628920px;}
.ws6{word-spacing:18.840312px;}
.ws63{word-spacing:18.893160px;}
.ws14{word-spacing:19.362186px;}
.wsf4{word-spacing:19.421640px;}
.wsf1{word-spacing:19.633032px;}
.wsca{word-spacing:20.108664px;}
.wsd4{word-spacing:20.161512px;}
.ws64{word-spacing:20.372904px;}
.ws74{word-spacing:20.445570px;}
.ws131{word-spacing:20.544660px;}
.ws7e{word-spacing:20.604114px;}
.ws11d{word-spacing:20.894778px;}
.ws11c{word-spacing:20.974050px;}
.wse2{word-spacing:21.066534px;}
.ws11b{word-spacing:21.086352px;}
.wsf0{word-spacing:21.139200px;}
.wse1{word-spacing:21.198654px;}
.ws52{word-spacing:22.031010px;}
.wsea{word-spacing:22.506642px;}
.wse9{word-spacing:22.632156px;}
.ws71{word-spacing:22.903002px;}
.ws53{word-spacing:23.200272px;}
.ws114{word-spacing:23.292756px;}
.ws113{word-spacing:23.418270px;}
.ws73{word-spacing:23.986386px;}
.ws119{word-spacing:24.660198px;}
.ws43{word-spacing:24.719652px;}
.ws118{word-spacing:24.739470px;}
.ws20{word-spacing:25.030134px;}
.ws13{word-spacing:25.347222px;}
.ws23{word-spacing:25.373646px;}
.ws10a{word-spacing:25.532190px;}
.wsb0{word-spacing:25.657704px;}
.ws10d{word-spacing:25.902126px;}
.ws112{word-spacing:25.954974px;}
.ws3f{word-spacing:25.994610px;}
.ws12{word-spacing:26.893026px;}
.ws129{word-spacing:27.441324px;}
.ws7{word-spacing:27.725382px;}
.wsef{word-spacing:27.936774px;}
.wsd9{word-spacing:28.907856px;}
.ws41{word-spacing:32.290128px;}
.ws11f{word-spacing:33.961446px;}
.ws83{word-spacing:34.932528px;}
.ws47{word-spacing:35.652582px;}
.ws46{word-spacing:35.784702px;}
.ws16{word-spacing:36.181062px;}
.ws51{word-spacing:37.112508px;}
.ws7d{word-spacing:37.773108px;}
.ws120{word-spacing:38.347830px;}
.ws15{word-spacing:38.790432px;}
.ws80{word-spacing:39.768120px;}
.wsfb{word-spacing:39.873816px;}
.ws21{word-spacing:41.214834px;}
.ws90{word-spacing:47.353911px;}
.wsce{word-spacing:151.822799px;}
.ws8c{word-spacing:153.892926px;}
.ws8e{word-spacing:153.897732px;}
.wscf{word-spacing:181.587244px;}
.ws8f{word-spacing:182.512656px;}
.ws8b{word-spacing:223.853868px;}
.wsae{word-spacing:388.810800px;}
._22{margin-left:-388.800000px;}
._3f{margin-left:-268.843640px;}
._3e{margin-left:-267.791892px;}
._41{margin-left:-266.399038px;}
._1{margin-left:-223.882704px;}
._6{margin-left:-153.902538px;}
._23{margin-left:-80.821800px;}
._40{margin-left:-70.688782px;}
._2{margin-left:-63.501678px;}
._8{margin-left:-28.619730px;}
._9{margin-left:-22.323870px;}
._a{margin-left:-6.122844px;}
._3b{margin-left:-4.844405px;}
._1c{margin-left:-3.720600px;}
._3a{margin-left:-2.632296px;}
._10{margin-left:-1.235220px;}
._0{width:1.347624px;}
._3d{width:2.379348px;}
._3c{width:4.208538px;}
._4{width:6.295860px;}
._7{width:19.440270px;}
._48{width:20.590902px;}
._5{width:22.496886px;}
._3{width:28.619730px;}
._11{width:33.123261px;}
._12{width:34.563403px;}
._47{width:38.288376px;}
._14{width:46.084537px;}
._13{width:50.404962px;}
._18{width:64.800688px;}
._15{width:67.504511px;}
._17{width:76.321822px;}
._19{width:80.642247px;}
._16{width:93.603523px;}
._2c{width:101.158200px;}
._b{width:142.199928px;}
._d{width:153.902538px;}
._e{width:160.198398px;}
._45{width:168.822936px;}
._f{width:176.399424px;}
._44{width:178.560180px;}
._46{width:179.709624px;}
._42{width:181.158832px;}
._c{width:182.522268px;}
._2e{width:188.673966px;}
._2d{width:190.986066px;}
._43{width:193.380819px;}
._29{width:196.738200px;}
._25{width:221.761800px;}
._1f{width:236.698200px;}
._2b{width:244.981800px;}
._1e{width:249.480000px;}
._1a{width:275.038200px;}
._26{width:309.598200px;}
._24{width:318.421800px;}
._27{width:321.300000px;}
._1d{width:331.381800px;}
._28{width:334.800000px;}
._2a{width:348.300000px;}
._21{width:375.300000px;}
._1b{width:380.700000px;}
._20{width:385.381800px;}
._36{width:747.543600px;}
._39{width:788.583600px;}
._2f{width:838.441800px;}
._34{width:840.423600px;}
._35{width:877.861800px;}
._37{width:881.463600px;}
._38{width:918.901800px;}
._33{width:926.283600px;}
._30{width:936.721800px;}
._31{width:942.661800px;}
._32{width:977.761800px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.060000px;}
.fs4{font-size:48.060000px;}
.fsa{font-size:50.260800px;}
.fs8{font-size:51.501600px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.851200px;}
.fs7{font-size:56.922600px;}
.fsb{font-size:59.834400px;}
.fs0{font-size:59.940000px;}
.fs2{font-size:66.060000px;}
.fs3{font-size:72.000000px;}
.yca{bottom:-8.819550px;}
.ycb{bottom:-7.604550px;}
.y0{bottom:0.000000px;}
.y25{bottom:238.305000px;}
.y2{bottom:238.395450px;}
.y6e{bottom:258.105450px;}
.y23{bottom:258.105900px;}
.y8c{bottom:259.231418px;}
.yb1{bottom:259.905450px;}
.y1a4{bottom:263.050023px;}
.y47{bottom:265.170450px;}
.y11d{bottom:271.965450px;}
.yf9{bottom:273.945857px;}
.y46{bottom:277.860450px;}
.y45{bottom:277.860985px;}
.yb0{bottom:279.300450px;}
.y6d{bottom:279.615450px;}
.y8b{bottom:280.111332px;}
.y22{bottom:280.695450px;}
.y1a3{bottom:281.994379px;}
.y174{bottom:282.405450px;}
.y6c{bottom:289.155450px;}
.y139{bottom:291.675450px;}
.y138{bottom:291.676395px;}
.yd7{bottom:293.385234px;}
.yd8{bottom:293.385450px;}
.yf8{bottom:294.825771px;}
.y11c{bottom:295.230450px;}
.y152{bottom:296.804284px;}
.yaf{bottom:297.885117px;}
.y21{bottom:297.930450px;}
.y173{bottom:299.640450px;}
.y1a2{bottom:300.984978px;}
.y8a{bottom:300.991247px;}
.y6b{bottom:304.680450px;}
.y1f{bottom:310.665203px;}
.y20{bottom:310.665450px;}
.yae{bottom:313.050450px;}
.y11b{bottom:313.410450px;}
.y44{bottom:314.760272px;}
.yf7{bottom:315.705686px;}
.y172{bottom:316.920450px;}
.y151{bottom:317.684199px;}
.y1a1{bottom:319.975576px;}
.y6a{bottom:320.205450px;}
.y89{bottom:321.871161px;}
.y137{bottom:322.590824px;}
.y170{bottom:329.609770px;}
.y171{bottom:329.610450px;}
.y11a{bottom:331.635450px;}
.yd6{bottom:332.400270px;}
.y69{bottom:335.730450px;}
.yf6{bottom:336.585600px;}
.y1e{bottom:336.810099px;}
.y43{bottom:337.035704px;}
.y150{bottom:338.564113px;}
.y1a0{bottom:338.919933px;}
.y88{bottom:342.751076px;}
.y136{bottom:343.470738px;}
.yad{bottom:344.550450px;}
.y119{bottom:349.815450px;}
.y16f{bottom:350.985135px;}
.yd5{bottom:353.280184px;}
.yf5{bottom:356.430450px;}
.y68{bottom:357.240450px;}
.y19f{bottom:357.910532px;}
.y42{bottom:357.915618px;}
.y1d{bottom:358.004667px;}
.y14f{bottom:359.399437px;}
.yac{bottom:360.885117px;}
.y87{bottom:363.586400px;}
.y135{bottom:364.350653px;}
.y67{bottom:366.780450px;}
.y118{bottom:368.040600px;}
.y16e{bottom:371.820459px;}
.yd4{bottom:374.160099px;}
.yab{bottom:376.050450px;}
.yf4{bottom:376.860450px;}
.y19e{bottom:376.901130px;}
.y41{bottom:378.795533px;}
.y14e{bottom:380.279352px;}
.y1c{bottom:380.280099px;}
.y66{bottom:382.305450px;}
.y86{bottom:384.466314px;}
.y134{bottom:385.230567px;}
.y117{bottom:386.220450px;}
.yaa{bottom:392.385117px;}
.y16d{bottom:392.700373px;}
.yf3{bottom:395.085600px;}
.yd3{bottom:395.355391px;}
.y19d{bottom:395.845487px;}
.y65{bottom:397.830450px;}
.y40{bottom:399.675447px;}
.y14d{bottom:401.159266px;}
.y1b{bottom:401.475823px;}
.y116{bottom:404.445450px;}
.y85{bottom:405.346229px;}
.y133{bottom:406.065891px;}
.ya9{bottom:407.550450px;}
.yf2{bottom:413.265450px;}
.y16c{bottom:413.580288px;}
.y19c{bottom:414.836085px;}
.yd2{bottom:417.630824px;}
.y64{bottom:419.340600px;}
.y3f{bottom:420.510771px;}
.y14c{bottom:422.039181px;}
.y115{bottom:422.625600px;}
.y1a{bottom:423.751255px;}
.ya8{bottom:423.885117px;}
.y84{bottom:426.226143px;}
.y132{bottom:426.945806px;}
.y62{bottom:431.399547px;}
.y63{bottom:431.400450px;}
.yf1{bottom:433.740900px;}
.y19b{bottom:433.780442px;}
.y16b{bottom:434.460202px;}
.yd1{bottom:438.466147px;}
.ya7{bottom:439.050450px;}
.y114{bottom:440.850450px;}
.y3e{bottom:441.390686px;}
.y14b{bottom:442.919096px;}
.y131{bottom:444.225450px;}
.y19{bottom:444.631170px;}
.y83{bottom:447.106058px;}
.y124{bottom:447.825721px;}
.yf0{bottom:450.795450px;}
.y19a{bottom:452.771040px;}
.y61{bottom:453.270361px;}
.y16a{bottom:455.295526px;}
.y113{bottom:459.030600px;}
.yd0{bottom:459.346062px;}
.y3d{bottom:462.270600px;}
.y14a{bottom:463.754420px;}
.y18{bottom:465.511084px;}
.y82{bottom:467.941382px;}
.ya6{bottom:470.550450px;}
.y199{bottom:471.761639px;}
.yef{bottom:472.260400px;}
.y130{bottom:473.880450px;}
.y60{bottom:474.105685px;}
.y169{bottom:476.175441px;}
.y112{bottom:477.255450px;}
.ycf{bottom:480.225977px;}
.y3c{bottom:483.690600px;}
.y149{bottom:484.634334px;}
.y17{bottom:486.346408px;}
.ya5{bottom:486.885117px;}
.y81{bottom:488.821296px;}
.y198{bottom:490.705995px;}
.yee{bottom:493.140315px;}
.y5f{bottom:494.985600px;}
.y111{bottom:496.200000px;}
.y127{bottom:496.875600px;}
.y168{bottom:497.055355px;}
.yce{bottom:501.105891px;}
.ya4{bottom:502.050450px;}
.y3b{bottom:505.920144px;}
.y16{bottom:507.226323px;}
.y197{bottom:509.696594px;}
.y80{bottom:509.701211px;}
.y110{bottom:511.725000px;}
.yed{bottom:514.020230px;}
.y128{bottom:514.155522px;}
.y5e{bottom:516.405600px;}
.y167{bottom:517.935270px;}
.ya3{bottom:518.385117px;}
.y148{bottom:520.499960px;}
.ycd{bottom:521.985805px;}
.y3a{bottom:526.755468px;}
.y10f{bottom:527.205450px;}
.y15{bottom:528.106237px;}
.y196{bottom:528.687192px;}
.y7f{bottom:530.581125px;}
.ya2{bottom:533.550450px;}
.yec{bottom:534.855553px;}
.y166{bottom:538.815184px;}
.y5d{bottom:538.949770px;}
.yc9{bottom:539.265000px;}
.ycc{bottom:539.265450px;}
.y129{bottom:542.235751px;}
.yc8{bottom:546.420450px;}
.y195{bottom:547.631549px;}
.y39{bottom:547.635382px;}
.y14{bottom:548.986152px;}
.y7e{bottom:551.461040px;}
.yeb{bottom:555.735468px;}
.y10e{bottom:557.625743px;}
.y165{bottom:559.650508px;}
.y5c{bottom:561.225203px;}
.y147{bottom:562.395211px;}
.ya1{bottom:565.050450px;}
.y194{bottom:566.622147px;}
.y38{bottom:568.515297px;}
.y13{bottom:569.866066px;}
.y12a{bottom:570.000456px;}
.y7d{bottom:572.296364px;}
.yea{bottom:576.615383px;}
.y10d{bottom:578.505657px;}
.y164{bottom:580.889275px;}
.ya0{bottom:581.384995px;}
.y5b{bottom:582.105117px;}
.y146{bottom:583.230535px;}
.y193{bottom:585.612746px;}
.y37{bottom:589.395211px;}
.y7c{bottom:593.176278px;}
.y9f{bottom:596.550328px;}
.ye9{bottom:597.495297px;}
.y12b{bottom:598.080685px;}
.y10c{bottom:599.385571px;}
.y5a{bottom:602.985031px;}
.y163{bottom:603.120117px;}
.y145{bottom:604.110450px;}
.y192{bottom:604.557102px;}
.y12{bottom:605.685450px;}
.y36{bottom:610.275126px;}
.y9e{bottom:611.715661px;}
.y7b{bottom:614.056193px;}
.ybe{bottom:615.494459px;}
.yb9{bottom:615.495882px;}
.yb6{bottom:616.170415px;}
.yb5{bottom:616.530450px;}
.ybf{bottom:617.879516px;}
.ye8{bottom:618.375211px;}
.yc1{bottom:618.554048px;}
.yb7{bottom:618.555471px;}
.yba{bottom:619.905960px;}
.y10b{bottom:620.265486px;}
.ybb{bottom:620.265996px;}
.ybc{bottom:620.580493px;}
.yc0{bottom:620.939105px;}
.yb8{bottom:620.940528px;}
.ybd{bottom:621.255026px;}
.y13b{bottom:622.650825px;}
.y191{bottom:623.547701px;}
.y59{bottom:623.820356px;}
.y162{bottom:624.000031px;}
.y12c{bottom:625.801330px;}
.yc2{bottom:625.845450px;}
.y9d{bottom:626.925450px;}
.y35{bottom:631.110450px;}
.y7a{bottom:634.936107px;}
.ye7{bottom:639.210535px;}
.y10a{bottom:641.100810px;}
.y190{bottom:642.492057px;}
.y58{bottom:644.700270px;}
.y161{bottom:644.879946px;}
.y144{bottom:649.560450px;}
.y17f{bottom:650.055589px;}
.y34{bottom:652.530450px;}
.y12d{bottom:653.925619px;}
.y79{bottom:655.816022px;}
.y9c{bottom:655.906445px;}
.ye6{bottom:660.090450px;}
.yc3{bottom:661.440575px;}
.y18f{bottom:661.482656px;}
.y109{bottom:661.980725px;}
.y57{bottom:665.580184px;}
.y160{bottom:665.759860px;}
.y11{bottom:666.750450px;}
.y17e{bottom:670.935504px;}
.y13e{bottom:671.700450px;}
.y33{bottom:674.759946px;}
.y78{bottom:676.651346px;}
.y9b{bottom:676.786359px;}
.ye5{bottom:678.450450px;}
.y1b4{bottom:680.428326px;}
.y18e{bottom:680.473254px;}
.y12e{bottom:681.646264px;}
.y108{bottom:682.860639px;}
.y56{bottom:686.460099px;}
.y15f{bottom:686.639775px;}
.y13f{bottom:688.755196px;}
.y10{bottom:691.589388px;}
.y17d{bottom:691.815419px;}
.y32{bottom:695.639860px;}
.yc4{bottom:696.990162px;}
.y77{bottom:697.531260px;}
.y9a{bottom:697.666273px;}
.ye4{bottom:698.880900px;}
.y1b3{bottom:699.372683px;}
.y18d{bottom:699.417611px;}
.y107{bottom:703.740554px;}
.y15e{bottom:707.475099px;}
.y55{bottom:707.656233px;}
.y12f{bottom:709.726493px;}
.yf{bottom:710.579987px;}
.y17c{bottom:712.650742px;}
.ye3{bottom:715.935450px;}
.y31{bottom:716.519775px;}
.y1b2{bottom:718.363281px;}
.y18c{bottom:718.408209px;}
.y76{bottom:718.411175px;}
.y123{bottom:718.545450px;}
.y99{bottom:718.546188px;}
.y106{bottom:724.620468px;}
.y15d{bottom:728.669991px;}
.ye{bottom:729.524343px;}
.y54{bottom:730.245122px;}
.yc5{bottom:732.225251px;}
.ye2{bottom:733.035900px;}
.y17b{bottom:733.530657px;}
.y140{bottom:736.050609px;}
.y1b1{bottom:737.307638px;}
.y18b{bottom:737.398808px;}
.y30{bottom:737.399690px;}
.y75{bottom:739.291089px;}
.y98{bottom:739.426103px;}
.y105{bottom:745.455792px;}
.yd{bottom:748.514942px;}
.ye1{bottom:750.090450px;}
.y15c{bottom:751.306098px;}
.y53{bottom:752.520554px;}
.y17a{bottom:754.410572px;}
.y1b0{bottom:756.298236px;}
.y18a{bottom:756.343164px;}
.y2f{bottom:758.235013px;}
.y74{bottom:760.171004px;}
.y97{bottom:760.261426px;}
.y104{bottom:766.335707px;}
.ye0{bottom:767.190900px;}
.yc{bottom:767.459298px;}
.yc6{bottom:767.820376px;}
.y52{bottom:773.400468px;}
.y15b{bottom:773.535288px;}
.y1af{bottom:775.288835px;}
.y179{bottom:775.290486px;}
.y189{bottom:775.333763px;}
.y126{bottom:778.755135px;}
.y2e{bottom:779.114928px;}
.y73{bottom:781.006327px;}
.y96{bottom:781.141341px;}
.y141{bottom:783.030635px;}
.ydf{bottom:784.245450px;}
.yb{bottom:786.449897px;}
.y103{bottom:787.215621px;}
.y1ae{bottom:794.233191px;}
.y51{bottom:794.235792px;}
.y188{bottom:794.278119px;}
.y15a{bottom:794.415203px;}
.y178{bottom:796.170401px;}
.y2d{bottom:799.994843px;}
.y125{bottom:800.760813px;}
.y72{bottom:801.886242px;}
.y95{bottom:802.021256px;}
.yde{bottom:802.425000px;}
.ydd{bottom:802.470900px;}
.yc7{bottom:803.415501px;}
.ya{bottom:805.440495px;}
.y102{bottom:808.095536px;}
.y1ad{bottom:813.223790px;}
.y187{bottom:813.268718px;}
.y50{bottom:815.115707px;}
.y159{bottom:815.295117px;}
.yb4{bottom:816.960450px;}
.y177{bottom:817.005725px;}
.ydc{bottom:819.525450px;}
.y2c{bottom:820.874757px;}
.y122{bottom:821.955450px;}
.y71{bottom:822.766156px;}
.y94{bottom:822.901170px;}
.y9{bottom:824.384852px;}
.y101{bottom:828.975450px;}
.y142{bottom:830.280813px;}
.y1ac{bottom:832.214388px;}
.y186{bottom:832.259316px;}
.y4f{bottom:835.995621px;}
.y158{bottom:836.175032px;}
.ydb{bottom:837.705450px;}
.y176{bottom:837.885639px;}
.y2b{bottom:841.754671px;}
.y8{bottom:843.375450px;}
.y70{bottom:843.646071px;}
.y93{bottom:843.781085px;}
.y1ab{bottom:851.158745px;}
.y185{bottom:851.203673px;}
.y121{bottom:851.339915px;}
.y100{bottom:852.195450px;}
.y4e{bottom:856.875536px;}
.y157{bottom:857.054946px;}
.yda{bottom:858.180600px;}
.y175{bottom:858.765554px;}
.y2a{bottom:862.589995px;}
.y92{bottom:864.616409px;}
.y1aa{bottom:870.149343px;}
.y184{bottom:870.194271px;}
.y120{bottom:870.285450px;}
.yff{bottom:870.420450px;}
.y143{bottom:877.260839px;}
.y4d{bottom:877.755450px;}
.y156{bottom:877.890270px;}
.y6f{bottom:879.465455px;}
.yd9{bottom:879.645468px;}
.yb3{bottom:880.815450px;}
.y7{bottom:883.019703px;}
.y29{bottom:883.469910px;}
.y91{bottom:885.496323px;}
.yfe{bottom:888.600450px;}
.y1a9{bottom:889.139942px;}
.y183{bottom:889.184870px;}
.y13a{bottom:891.930600px;}
.y11f{bottom:898.770099px;}
.y155{bottom:898.770185px;}
.y4c{bottom:899.130450px;}
.y6{bottom:900.255450px;}
.yb2{bottom:900.480792px;}
.y28{bottom:904.349824px;}
.y90{bottom:906.376238px;}
.yfd{bottom:906.780450px;}
.y1a8{bottom:908.084298px;}
.y182{bottom:908.129226px;}
.y154{bottom:919.650099px;}
.y11e{bottom:919.965189px;}
.y4b{bottom:921.360707px;}
.y5{bottom:924.240621px;}
.yfc{bottom:925.005450px;}
.y1a7{bottom:927.074897px;}
.y181{bottom:927.119825px;}
.y8f{bottom:927.256152px;}
.y27{bottom:940.215450px;}
.y153{bottom:940.845104px;}
.y13d{bottom:941.925884px;}
.y4a{bottom:942.240621px;}
.y4{bottom:945.120536px;}
.yfb{bottom:945.435000px;}
.y1a6{bottom:946.019253px;}
.y8e{bottom:948.136067px;}
.yfa{bottom:962.535450px;}
.y180{bottom:962.985450px;}
.y49{bottom:963.120536px;}
.y13c{bottom:963.165600px;}
.y1a5{bottom:965.009852px;}
.y3{bottom:966.000450px;}
.y26{bottom:982.650450px;}
.y8d{bottom:983.955450px;}
.y48{bottom:984.000450px;}
.y24{bottom:1010.641247px;}
.y1{bottom:1027.920450px;}
.h16{height:4.050000px;}
.h10{height:31.587891px;}
.ha{height:34.272861px;}
.h17{height:37.519720px;}
.h13{height:41.469004px;}
.h1{height:41.618496px;}
.h12{height:42.169834px;}
.h11{height:42.686104px;}
.h1d{height:43.590295px;}
.h1c{height:44.100907px;}
.h15{height:45.189636px;}
.h5{height:45.867832px;}
.h2{height:47.381836px;}
.h19{height:47.961914px;}
.h1b{height:49.883597px;}
.h14{height:49.946246px;}
.h4{height:52.593838px;}
.h7{height:57.963779px;}
.h3{height:58.673408px;}
.hb{height:63.175781px;}
.h6{height:63.949219px;}
.he{height:75.106702px;}
.h1f{height:75.107242px;}
.h8{height:75.108940px;}
.hc{height:75.110548px;}
.h18{height:75.110668px;}
.h1a{height:75.110878px;}
.hd{height:75.111148px;}
.h1e{height:75.111220px;}
.h20{height:75.111670px;}
.hf{height:75.112552px;}
.h9{height:75.112966px;}
.h21{height:75.114532px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w1{width:10.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:191.385000px;}
.x3b{left:200.385000px;}
.x3a{left:201.960000px;}
.x25{left:203.985000px;}
.x6{left:208.620000px;}
.x12{left:210.105000px;}
.x7{left:213.075000px;}
.xe{left:214.424496px;}
.xf{left:216.675000px;}
.x5{left:218.385000px;}
.x9{left:219.780571px;}
.x13{left:221.670000px;}
.x39{left:223.110000px;}
.x2f{left:224.910450px;}
.x11{left:227.114987px;}
.xc{left:229.859761px;}
.xb{left:233.415000px;}
.x22{left:235.305000px;}
.x8{left:237.105000px;}
.x2e{left:238.410450px;}
.xd{left:240.300000px;}
.x10{left:241.650581px;}
.x26{left:243.270000px;}
.x3{left:244.485680px;}
.x40{left:250.156126px;}
.x3f{left:258.885628px;}
.x15{left:269.145000px;}
.x14{left:283.185000px;}
.x3c{left:293.175652px;}
.x42{left:300.960000px;}
.x3e{left:311.220000px;}
.x16{left:313.110025px;}
.x28{left:316.710000px;}
.x27{left:326.115450px;}
.xa{left:333.765675px;}
.x30{left:336.960450px;}
.x31{left:340.335450px;}
.x17{left:344.070227px;}
.x18{left:376.470571px;}
.x41{left:395.775145px;}
.x3d{left:405.495147px;}
.x4{left:407.385000px;}
.x19{left:408.870915px;}
.x2a{left:424.259100px;}
.x29{left:429.884550px;}
.x1a{left:441.631294px;}
.x32{left:444.105900px;}
.x33{left:447.480900px;}
.x1b{left:475.426242px;}
.x23{left:489.780000px;}
.x1c{left:506.026409px;}
.x2c{left:524.294100px;}
.x2b{left:533.699550px;}
.x1d{left:536.986611px;}
.x35{left:544.545900px;}
.x34{left:547.920900px;}
.x36{left:551.295900px;}
.x1e{left:561.466175px;}
.x1f{left:595.306661px;}
.x1{left:623.745000px;}
.x20{left:632.386042px;}
.x2d{left:637.514550px;}
.x37{left:648.360900px;}
.x38{left:651.735900px;}
.x21{left:660.105925px;}
.x24{left:701.100000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-21.280533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.279205pt;}
.ls34{letter-spacing:-5.477929pt;}
.ls35{letter-spacing:-3.987164pt;}
.ls37{letter-spacing:-3.587942pt;}
.ls3c{letter-spacing:-3.526241pt;}
.ls36{letter-spacing:-3.507087pt;}
.ls3d{letter-spacing:-3.483692pt;}
.ls3f{letter-spacing:-2.604626pt;}
.ls3e{letter-spacing:-2.019367pt;}
.ls33{letter-spacing:-1.258307pt;}
.ls2e{letter-spacing:-0.806400pt;}
.ls2f{letter-spacing:-0.796800pt;}
.ls18{letter-spacing:-0.790320pt;}
.ls44{letter-spacing:-0.786848pt;}
.ls1b{letter-spacing:-0.781776pt;}
.ls40{letter-spacing:-0.780976pt;}
.ls1c{letter-spacing:-0.777504pt;}
.ls42{letter-spacing:-0.775104pt;}
.ls13{letter-spacing:-0.773232pt;}
.ls2c{letter-spacing:-0.769232pt;}
.ls1a{letter-spacing:-0.768960pt;}
.ls14{letter-spacing:-0.764688pt;}
.ls41{letter-spacing:-0.763360pt;}
.ls1e{letter-spacing:-0.760416pt;}
.ls43{letter-spacing:-0.757488pt;}
.ls16{letter-spacing:-0.756144pt;}
.ls19{letter-spacing:-0.751872pt;}
.ls49{letter-spacing:-0.751616pt;}
.ls2d{letter-spacing:-0.748800pt;}
.ls15{letter-spacing:-0.747600pt;}
.ls45{letter-spacing:-0.745744pt;}
.ls48{letter-spacing:-0.739872pt;}
.ls1d{letter-spacing:-0.739056pt;}
.ls17{letter-spacing:-0.734784pt;}
.ls3b{letter-spacing:-0.513777pt;}
.ls23{letter-spacing:-0.379484pt;}
.ls25{letter-spacing:-0.070837pt;}
.ls32{letter-spacing:-0.063936pt;}
.ls31{letter-spacing:-0.053280pt;}
.ls24{letter-spacing:-0.040478pt;}
.ls26{letter-spacing:-0.030359pt;}
.ls8{letter-spacing:-0.023488pt;}
.ls12{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.014400pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls4d{letter-spacing:-0.005872pt;}
.lsd{letter-spacing:-0.004800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.004800pt;}
.ls7{letter-spacing:0.005872pt;}
.ls2a{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.010120pt;}
.ls5{letter-spacing:0.010656pt;}
.ls4e{letter-spacing:0.011744pt;}
.lsc{letter-spacing:0.017616pt;}
.lsa{letter-spacing:0.023488pt;}
.ls29{letter-spacing:0.024000pt;}
.ls10{letter-spacing:0.026640pt;}
.lsb{letter-spacing:0.029360pt;}
.ls3{letter-spacing:0.035232pt;}
.ls2{letter-spacing:0.041104pt;}
.ls9{letter-spacing:0.046976pt;}
.ls4b{letter-spacing:0.052848pt;}
.ls1{letter-spacing:0.053280pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls22{letter-spacing:0.058720pt;}
.ls4f{letter-spacing:0.064592pt;}
.ls4c{letter-spacing:0.070464pt;}
.ls47{letter-spacing:0.079856pt;}
.ls4{letter-spacing:0.080000pt;}
.ls46{letter-spacing:0.081168pt;}
.ls27{letter-spacing:1.483246pt;}
.ls20{letter-spacing:1.578653pt;}
.ls1f{letter-spacing:1.988496pt;}
.ls4a{letter-spacing:3.881392pt;}
.ls3a{letter-spacing:164.118266pt;}
.ls11{letter-spacing:174.122416pt;}
.ls39{letter-spacing:178.182354pt;}
.ls38{letter-spacing:233.292058pt;}
.ls30{letter-spacing:255.052170pt;}
.ls0{letter-spacing:1754.078400pt;}
.wsc0{word-spacing:-267.685770pt;}
.wsc1{word-spacing:-234.565524pt;}
.wscd{word-spacing:-189.351421pt;}
.ws96{word-spacing:-14.738720pt;}
.ws0{word-spacing:-14.715232pt;}
.ws109{word-spacing:-14.703488pt;}
.wsdd{word-spacing:-13.916640pt;}
.ws95{word-spacing:-12.928046pt;}
.ws92{word-spacing:-12.659586pt;}
.ws94{word-spacing:-12.619108pt;}
.ws93{word-spacing:-12.578630pt;}
.ws91{word-spacing:-12.269983pt;}
.wsdc{word-spacing:-10.761168pt;}
.wsde{word-spacing:-8.759856pt;}
.ws3b{word-spacing:-8.000000pt;}
.ws9a{word-spacing:-0.743789pt;}
.ws85{word-spacing:-0.328944pt;}
.ws84{word-spacing:-0.307584pt;}
.ws35{word-spacing:-0.129184pt;}
.wse0{word-spacing:-0.117440pt;}
.ws104{word-spacing:-0.099824pt;}
.ws4{word-spacing:-0.095904pt;}
.ws3c{word-spacing:-0.088080pt;}
.wsb4{word-spacing:-0.082208pt;}
.ws1f{word-spacing:-0.069264pt;}
.ws1{word-spacing:-0.053280pt;}
.ws3d{word-spacing:-0.052848pt;}
.ws134{word-spacing:-0.023488pt;}
.ws121{word-spacing:-0.017616pt;}
.ws10e{word-spacing:-0.011744pt;}
.ws76{word-spacing:-0.005872pt;}
.wsc7{word-spacing:-0.005053pt;}
.wsbf{word-spacing:-0.004800pt;}
.ws8a{word-spacing:-0.004272pt;}
.ws2{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.004468pt;}
.ws1b{word-spacing:0.004800pt;}
.wsc6{word-spacing:0.005053pt;}
.ws60{word-spacing:0.005872pt;}
.ws8d{word-spacing:0.008544pt;}
.wsd0{word-spacing:0.008935pt;}
.ws1e{word-spacing:0.009600pt;}
.ws1a{word-spacing:0.011744pt;}
.ws5d{word-spacing:0.014400pt;}
.wsd{word-spacing:0.017616pt;}
.ws57{word-spacing:0.019200pt;}
.ws115{word-spacing:0.023488pt;}
.ws12c{word-spacing:0.029360pt;}
.ws3{word-spacing:0.041104pt;}
.ws29{word-spacing:0.046976pt;}
.ws102{word-spacing:0.076336pt;}
.ws101{word-spacing:0.140928pt;}
.wse8{word-spacing:0.182032pt;}
.ws5b{word-spacing:0.288000pt;}
.wsa0{word-spacing:0.293600pt;}
.wse7{word-spacing:0.305344pt;}
.ws89{word-spacing:0.311856pt;}
.ws88{word-spacing:0.380208pt;}
.ws19{word-spacing:0.381680pt;}
.ws2a{word-spacing:0.434528pt;}
.ws18{word-spacing:0.481504pt;}
.wsa1{word-spacing:0.499120pt;}
.wscc{word-spacing:0.504000pt;}
.ws34{word-spacing:0.516736pt;}
.ws11a{word-spacing:0.522608pt;}
.wsbb{word-spacing:0.540224pt;}
.wsf5{word-spacing:0.628304pt;}
.ws9f{word-spacing:0.728128pt;}
.ws7c{word-spacing:0.751616pt;}
.wsfe{word-spacing:0.792720pt;}
.wsa3{word-spacing:0.827952pt;}
.wsb6{word-spacing:0.863184pt;}
.wsd8{word-spacing:0.880800pt;}
.ws61{word-spacing:0.886672pt;}
.ws127{word-spacing:0.927776pt;}
.wsbd{word-spacing:0.964800pt;}
.ws9c{word-spacing:0.986496pt;}
.wsbc{word-spacing:1.012800pt;}
.ws55{word-spacing:1.060800pt;}
.ws5e{word-spacing:1.150912pt;}
.wsdb{word-spacing:1.256608pt;}
.ws4a{word-spacing:1.344688pt;}
.wse{word-spacing:1.356432pt;}
.ws116{word-spacing:1.426896pt;}
.ws33{word-spacing:1.503232pt;}
.ws100{word-spacing:1.655904pt;}
.ws11e{word-spacing:1.661776pt;}
.wse3{word-spacing:1.685264pt;}
.wsb2{word-spacing:1.708800pt;}
.ws4c{word-spacing:1.779216pt;}
.wsd6{word-spacing:1.785088pt;}
.wsb9{word-spacing:1.896656pt;}
.ws6a{word-spacing:1.961248pt;}
.wsd5{word-spacing:2.031712pt;}
.ws58{word-spacing:2.054400pt;}
.wsc{word-spacing:2.102176pt;}
.ws38{word-spacing:2.113920pt;}
.ws126{word-spacing:2.219616pt;}
.wsd3{word-spacing:2.228499pt;}
.ws67{word-spacing:2.237232pt;}
.ws56{word-spacing:2.256000pt;}
.ws5c{word-spacing:2.260800pt;}
.wsd2{word-spacing:2.318915pt;}
.ws6b{word-spacing:2.389904pt;}
.ws66{word-spacing:2.407520pt;}
.ws107{word-spacing:2.419264pt;}
.wsbe{word-spacing:2.428800pt;}
.ws36{word-spacing:2.542576pt;}
.ws2c{word-spacing:2.548448pt;}
.ws11{word-spacing:2.571936pt;}
.wsc9{word-spacing:2.713697pt;}
.wscb{word-spacing:2.730480pt;}
.ws42{word-spacing:2.736352pt;}
.ws62{word-spacing:2.742224pt;}
.ws12b{word-spacing:2.771584pt;}
.ws4e{word-spacing:2.982976pt;}
.wsfd{word-spacing:3.029952pt;}
.wsa7{word-spacing:3.141520pt;}
.wse4{word-spacing:3.176752pt;}
.ws6f{word-spacing:3.223728pt;}
.wsad{word-spacing:3.316800pt;}
.ws12a{word-spacing:3.429248pt;}
.ws77{word-spacing:3.487968pt;}
.ws5a{word-spacing:3.504000pt;}
.ws49{word-spacing:3.523200pt;}
.ws117{word-spacing:3.570176pt;}
.ws48{word-spacing:3.611280pt;}
.ws9e{word-spacing:3.646512pt;}
.ws10c{word-spacing:3.728720pt;}
.ws10b{word-spacing:3.846160pt;}
.ws111{word-spacing:3.887264pt;}
.ws110{word-spacing:3.998832pt;}
.ws10f{word-spacing:4.010576pt;}
.ws125{word-spacing:4.116272pt;}
.ws123{word-spacing:4.157376pt;}
.ws124{word-spacing:4.169120pt;}
.ws10{word-spacing:4.198480pt;}
.wsc8{word-spacing:4.204462pt;}
.wsf8{word-spacing:4.221968pt;}
.ws4b{word-spacing:4.280688pt;}
.ws32{word-spacing:4.292432pt;}
.ws27{word-spacing:4.321792pt;}
.ws103{word-spacing:4.439232pt;}
.ws26{word-spacing:4.474464pt;}
.ws6e{word-spacing:4.556672pt;}
.ws40{word-spacing:4.908992pt;}
.ws70{word-spacing:4.938352pt;}
.wse6{word-spacing:5.002944pt;}
.wsd7{word-spacing:5.049920pt;}
.ws3e{word-spacing:5.085152pt;}
.wsb3{word-spacing:5.126256pt;}
.wsfc{word-spacing:5.208464pt;}
.ws7b{word-spacing:5.214336pt;}
.wsc4{word-spacing:5.290672pt;}
.ws5f{word-spacing:5.343520pt;}
.ws17{word-spacing:5.496192pt;}
.ws98{word-spacing:5.537296pt;}
.ws69{word-spacing:5.778048pt;}
.wsc2{word-spacing:5.918976pt;}
.ws9d{word-spacing:5.930720pt;}
.ws65{word-spacing:6.165600pt;}
.wsfa{word-spacing:6.259552pt;}
.ws59{word-spacing:6.374400pt;}
.wsc5{word-spacing:6.574752pt;}
.ws1d{word-spacing:6.897600pt;}
.ws1c{word-spacing:7.003200pt;}
.wsb7{word-spacing:7.017040pt;}
.wsf{word-spacing:7.081632pt;}
.wsb5{word-spacing:7.181456pt;}
.wsf3{word-spacing:7.222560pt;}
.wsf2{word-spacing:7.369360pt;}
.wsa{word-spacing:7.498544pt;}
.ws44{word-spacing:7.504416pt;}
.ws3a{word-spacing:7.527904pt;}
.ws39{word-spacing:7.574880pt;}
.wsa6{word-spacing:7.598368pt;}
.ws105{word-spacing:7.604240pt;}
.ws4d{word-spacing:7.633600pt;}
.ws68{word-spacing:7.698192pt;}
.ws72{word-spacing:7.745168pt;}
.ws82{word-spacing:8.391088pt;}
.ws7f{word-spacing:8.573120pt;}
.ws2e{word-spacing:8.631840pt;}
.wsab{word-spacing:8.696432pt;}
.ws99{word-spacing:8.796256pt;}
.ws6c{word-spacing:8.901952pt;}
.ws122{word-spacing:9.289504pt;}
.ws25{word-spacing:9.424560pt;}
.ws54{word-spacing:9.456000pt;}
.wsf7{word-spacing:9.465664pt;}
.wsa2{word-spacing:9.470400pt;}
.wsaf{word-spacing:9.471536pt;}
.ws130{word-spacing:9.624208pt;}
.wsb{word-spacing:9.747520pt;}
.wsee{word-spacing:9.765136pt;}
.wsda{word-spacing:9.982400pt;}
.wse5{word-spacing:10.011760pt;}
.ws106{word-spacing:10.093968pt;}
.wsff{word-spacing:10.293616pt;}
.ws108{word-spacing:10.528496pt;}
.ws97{word-spacing:10.551984pt;}
.ws31{word-spacing:10.663552pt;}
.ws37{word-spacing:10.710528pt;}
.wsba{word-spacing:10.963024pt;}
.ws2f{word-spacing:10.998256pt;}
.ws4f{word-spacing:11.550224pt;}
.ws45{word-spacing:11.556096pt;}
.wsed{word-spacing:11.591328pt;}
.ws87{word-spacing:11.671104pt;}
.wsa5{word-spacing:11.790976pt;}
.ws86{word-spacing:11.799264pt;}
.wsec{word-spacing:11.902544pt;}
.ws7a{word-spacing:11.920160pt;}
.wseb{word-spacing:12.019984pt;}
.ws9b{word-spacing:12.102192pt;}
.wsac{word-spacing:12.290096pt;}
.ws2b{word-spacing:12.342944pt;}
.wsa4{word-spacing:12.436896pt;}
.ws128{word-spacing:12.513232pt;}
.wsb8{word-spacing:12.654160pt;}
.ws2d{word-spacing:12.671776pt;}
.ws9{word-spacing:13.094560pt;}
.ws50{word-spacing:13.270720pt;}
.wsaa{word-spacing:13.417520pt;}
.ws75{word-spacing:13.423392pt;}
.ws8{word-spacing:13.452752pt;}
.ws133{word-spacing:13.693504pt;}
.wsb1{word-spacing:13.711120pt;}
.ws6d{word-spacing:13.734608pt;}
.ws132{word-spacing:13.758096pt;}
.ws30{word-spacing:13.769840pt;}
.ws12f{word-spacing:14.098672pt;}
.ws12e{word-spacing:14.192624pt;}
.ws12d{word-spacing:14.227856pt;}
.wsc3{word-spacing:14.333552pt;}
.ws81{word-spacing:14.409888pt;}
.ws28{word-spacing:14.533200pt;}
.wsf6{word-spacing:15.155632pt;}
.ws24{word-spacing:15.161504pt;}
.wsa8{word-spacing:15.748704pt;}
.wsdf{word-spacing:16.171488pt;}
.ws5{word-spacing:16.253696pt;}
.ws22{word-spacing:16.353520pt;}
.wsf9{word-spacing:16.412240pt;}
.ws79{word-spacing:16.482704pt;}
.wsa9{word-spacing:16.517936pt;}
.ws78{word-spacing:16.559040pt;}
.ws6{word-spacing:16.746944pt;}
.ws63{word-spacing:16.793920pt;}
.ws14{word-spacing:17.210832pt;}
.wsf4{word-spacing:17.263680pt;}
.wsf1{word-spacing:17.451584pt;}
.wsca{word-spacing:17.874368pt;}
.wsd4{word-spacing:17.921344pt;}
.ws64{word-spacing:18.109248pt;}
.ws74{word-spacing:18.173840pt;}
.ws131{word-spacing:18.261920pt;}
.ws7e{word-spacing:18.314768pt;}
.ws11d{word-spacing:18.573136pt;}
.ws11c{word-spacing:18.643600pt;}
.wse2{word-spacing:18.725808pt;}
.ws11b{word-spacing:18.743424pt;}
.wsf0{word-spacing:18.790400pt;}
.wse1{word-spacing:18.843248pt;}
.ws52{word-spacing:19.583120pt;}
.wsea{word-spacing:20.005904pt;}
.wse9{word-spacing:20.117472pt;}
.ws71{word-spacing:20.358224pt;}
.ws53{word-spacing:20.622464pt;}
.ws114{word-spacing:20.704672pt;}
.ws113{word-spacing:20.816240pt;}
.ws73{word-spacing:21.321232pt;}
.ws119{word-spacing:21.920176pt;}
.ws43{word-spacing:21.973024pt;}
.ws118{word-spacing:21.990640pt;}
.ws20{word-spacing:22.249008pt;}
.ws13{word-spacing:22.530864pt;}
.ws23{word-spacing:22.554352pt;}
.ws10a{word-spacing:22.695280pt;}
.wsb0{word-spacing:22.806848pt;}
.ws10d{word-spacing:23.024112pt;}
.ws112{word-spacing:23.071088pt;}
.ws3f{word-spacing:23.106320pt;}
.ws12{word-spacing:23.904912pt;}
.ws129{word-spacing:24.392288pt;}
.ws7{word-spacing:24.644784pt;}
.wsef{word-spacing:24.832688pt;}
.wsd9{word-spacing:25.695872pt;}
.ws41{word-spacing:28.702336pt;}
.ws11f{word-spacing:30.187952pt;}
.ws83{word-spacing:31.051136pt;}
.ws47{word-spacing:31.691184pt;}
.ws46{word-spacing:31.808624pt;}
.ws16{word-spacing:32.160944pt;}
.ws51{word-spacing:32.988896pt;}
.ws7d{word-spacing:33.576096pt;}
.ws120{word-spacing:34.086960pt;}
.ws15{word-spacing:34.480384pt;}
.ws80{word-spacing:35.349440pt;}
.wsfb{word-spacing:35.443392pt;}
.ws21{word-spacing:36.635408pt;}
.ws90{word-spacing:42.092365pt;}
.wsce{word-spacing:134.953599pt;}
.ws8c{word-spacing:136.793712pt;}
.ws8e{word-spacing:136.797984pt;}
.wscf{word-spacing:161.410884pt;}
.ws8f{word-spacing:162.233472pt;}
.ws8b{word-spacing:198.981216pt;}
.wsae{word-spacing:345.609600pt;}
._22{margin-left:-345.600000pt;}
._3f{margin-left:-238.972124pt;}
._3e{margin-left:-238.037238pt;}
._41{margin-left:-236.799145pt;}
._1{margin-left:-199.006848pt;}
._6{margin-left:-136.802256pt;}
._23{margin-left:-71.841600pt;}
._40{margin-left:-62.834473pt;}
._2{margin-left:-56.445936pt;}
._8{margin-left:-25.439760pt;}
._9{margin-left:-19.843440pt;}
._a{margin-left:-5.442528pt;}
._3b{margin-left:-4.306138pt;}
._1c{margin-left:-3.307200pt;}
._3a{margin-left:-2.339818pt;}
._10{margin-left:-1.097974pt;}
._0{width:1.197888pt;}
._3d{width:2.114976pt;}
._3c{width:3.740923pt;}
._4{width:5.596320pt;}
._7{width:17.280240pt;}
._48{width:18.303024pt;}
._5{width:19.997232pt;}
._3{width:25.439760pt;}
._11{width:29.442899pt;}
._12{width:30.723025pt;}
._47{width:34.034112pt;}
._14{width:40.964033pt;}
._13{width:44.804411pt;}
._18{width:57.600611pt;}
._15{width:60.004010pt;}
._17{width:67.841620pt;}
._19{width:71.681998pt;}
._16{width:83.203132pt;}
._2c{width:89.918400pt;}
._b{width:126.399936pt;}
._d{width:136.802256pt;}
._e{width:142.398576pt;}
._45{width:150.064832pt;}
._f{width:156.799488pt;}
._44{width:158.720160pt;}
._46{width:159.741888pt;}
._42{width:161.030073pt;}
._c{width:162.242016pt;}
._2e{width:167.710192pt;}
._2d{width:169.765392pt;}
._43{width:171.894061pt;}
._29{width:174.878400pt;}
._25{width:197.121600pt;}
._1f{width:210.398400pt;}
._2b{width:217.761600pt;}
._1e{width:221.760000pt;}
._1a{width:244.478400pt;}
._26{width:275.198400pt;}
._24{width:283.041600pt;}
._27{width:285.600000pt;}
._1d{width:294.561600pt;}
._28{width:297.600000pt;}
._2a{width:309.600000pt;}
._21{width:333.600000pt;}
._1b{width:338.400000pt;}
._20{width:342.561600pt;}
._36{width:664.483200pt;}
._39{width:700.963200pt;}
._2f{width:745.281600pt;}
._34{width:747.043200pt;}
._35{width:780.321600pt;}
._37{width:783.523200pt;}
._38{width:816.801600pt;}
._33{width:823.363200pt;}
._30{width:832.641600pt;}
._31{width:837.921600pt;}
._32{width:869.121600pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.720000pt;}
.fs4{font-size:42.720000pt;}
.fsa{font-size:44.676267pt;}
.fs8{font-size:45.779200pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.534400pt;}
.fs7{font-size:50.597867pt;}
.fsb{font-size:53.186133pt;}
.fs0{font-size:53.280000pt;}
.fs2{font-size:58.720000pt;}
.fs3{font-size:64.000000pt;}
.yca{bottom:-7.839600pt;}
.ycb{bottom:-6.759600pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:211.826667pt;}
.y2{bottom:211.907067pt;}
.y6e{bottom:229.427067pt;}
.y23{bottom:229.427467pt;}
.y8c{bottom:230.427927pt;}
.yb1{bottom:231.027067pt;}
.y1a4{bottom:233.822243pt;}
.y47{bottom:235.707067pt;}
.y11d{bottom:241.747067pt;}
.yf9{bottom:243.507428pt;}
.y46{bottom:246.987067pt;}
.y45{bottom:246.987543pt;}
.yb0{bottom:248.267067pt;}
.y6d{bottom:248.547067pt;}
.y8b{bottom:248.987851pt;}
.y22{bottom:249.507067pt;}
.y1a3{bottom:250.661671pt;}
.y174{bottom:251.027067pt;}
.y6c{bottom:257.027067pt;}
.y139{bottom:259.267067pt;}
.y138{bottom:259.267907pt;}
.yd7{bottom:260.786875pt;}
.yd8{bottom:260.787067pt;}
.yf8{bottom:262.067352pt;}
.y11c{bottom:262.427067pt;}
.y152{bottom:263.826031pt;}
.yaf{bottom:264.786771pt;}
.y21{bottom:264.827067pt;}
.y173{bottom:266.347067pt;}
.y1a2{bottom:267.542203pt;}
.y8a{bottom:267.547775pt;}
.y6b{bottom:270.827067pt;}
.y1f{bottom:276.146847pt;}
.y20{bottom:276.147067pt;}
.yae{bottom:278.267067pt;}
.y11b{bottom:278.587067pt;}
.y44{bottom:279.786908pt;}
.yf7{bottom:280.627276pt;}
.y172{bottom:281.707067pt;}
.y151{bottom:282.385955pt;}
.y1a1{bottom:284.422735pt;}
.y6a{bottom:284.627067pt;}
.y89{bottom:286.107699pt;}
.y137{bottom:286.747399pt;}
.y170{bottom:292.986463pt;}
.y171{bottom:292.987067pt;}
.y11a{bottom:294.787067pt;}
.yd6{bottom:295.466907pt;}
.y69{bottom:298.427067pt;}
.yf6{bottom:299.187200pt;}
.y1e{bottom:299.386755pt;}
.y43{bottom:299.587292pt;}
.y150{bottom:300.945879pt;}
.y1a0{bottom:301.262163pt;}
.y88{bottom:304.667623pt;}
.y136{bottom:305.307323pt;}
.yad{bottom:306.267067pt;}
.y119{bottom:310.947067pt;}
.y16f{bottom:311.986787pt;}
.yd5{bottom:314.026831pt;}
.yf5{bottom:316.827067pt;}
.y68{bottom:317.547067pt;}
.y19f{bottom:318.142695pt;}
.y42{bottom:318.147216pt;}
.y1d{bottom:318.226371pt;}
.y14f{bottom:319.466167pt;}
.yac{bottom:320.786771pt;}
.y87{bottom:323.187911pt;}
.y135{bottom:323.867247pt;}
.y67{bottom:326.027067pt;}
.y118{bottom:327.147200pt;}
.y16e{bottom:330.507075pt;}
.yd4{bottom:332.586755pt;}
.yab{bottom:334.267067pt;}
.yf4{bottom:334.987067pt;}
.y19e{bottom:335.023227pt;}
.y41{bottom:336.707140pt;}
.y14e{bottom:338.026091pt;}
.y1c{bottom:338.026755pt;}
.y66{bottom:339.827067pt;}
.y86{bottom:341.747835pt;}
.y134{bottom:342.427171pt;}
.y117{bottom:343.307067pt;}
.yaa{bottom:348.786771pt;}
.y16d{bottom:349.066999pt;}
.yf3{bottom:351.187200pt;}
.yd3{bottom:351.427015pt;}
.y19d{bottom:351.862655pt;}
.y65{bottom:353.627067pt;}
.y40{bottom:355.267064pt;}
.y14d{bottom:356.586015pt;}
.y1b{bottom:356.867399pt;}
.y116{bottom:359.507067pt;}
.y85{bottom:360.307759pt;}
.y133{bottom:360.947459pt;}
.ya9{bottom:362.267067pt;}
.yf2{bottom:367.347067pt;}
.y16c{bottom:367.626923pt;}
.y19c{bottom:368.743187pt;}
.yd2{bottom:371.227399pt;}
.y64{bottom:372.747200pt;}
.y3f{bottom:373.787352pt;}
.y14c{bottom:375.145939pt;}
.y115{bottom:375.667200pt;}
.y1a{bottom:376.667783pt;}
.ya8{bottom:376.786771pt;}
.y84{bottom:378.867683pt;}
.y132{bottom:379.507383pt;}
.y62{bottom:383.466264pt;}
.y63{bottom:383.467067pt;}
.yf1{bottom:385.547467pt;}
.y19b{bottom:385.582615pt;}
.y16b{bottom:386.186847pt;}
.yd1{bottom:389.747687pt;}
.ya7{bottom:390.267067pt;}
.y114{bottom:391.867067pt;}
.y3e{bottom:392.347276pt;}
.y14b{bottom:393.705863pt;}
.y131{bottom:394.867067pt;}
.y19{bottom:395.227707pt;}
.y83{bottom:397.427607pt;}
.y124{bottom:398.067307pt;}
.yf0{bottom:400.707067pt;}
.y19a{bottom:402.463147pt;}
.y61{bottom:402.906988pt;}
.y16a{bottom:404.707135pt;}
.y113{bottom:408.027200pt;}
.yd0{bottom:408.307611pt;}
.y3d{bottom:410.907200pt;}
.y14a{bottom:412.226151pt;}
.y18{bottom:413.787631pt;}
.y82{bottom:415.947895pt;}
.ya6{bottom:418.267067pt;}
.y199{bottom:419.343679pt;}
.yef{bottom:419.787023pt;}
.y130{bottom:421.227067pt;}
.y60{bottom:421.427276pt;}
.y169{bottom:423.267059pt;}
.y112{bottom:424.227067pt;}
.ycf{bottom:426.867535pt;}
.y3c{bottom:429.947200pt;}
.y149{bottom:430.786075pt;}
.y17{bottom:432.307919pt;}
.ya5{bottom:432.786771pt;}
.y81{bottom:434.507819pt;}
.y198{bottom:436.183107pt;}
.yee{bottom:438.346947pt;}
.y5f{bottom:439.987200pt;}
.y111{bottom:441.066667pt;}
.y127{bottom:441.667200pt;}
.y168{bottom:441.826983pt;}
.yce{bottom:445.427459pt;}
.ya4{bottom:446.267067pt;}
.y3b{bottom:449.706795pt;}
.y16{bottom:450.867843pt;}
.y197{bottom:453.063639pt;}
.y80{bottom:453.067743pt;}
.y110{bottom:454.866667pt;}
.yed{bottom:456.906871pt;}
.y128{bottom:457.027131pt;}
.y5e{bottom:459.027200pt;}
.y167{bottom:460.386907pt;}
.ya3{bottom:460.786771pt;}
.y148{bottom:462.666631pt;}
.ycd{bottom:463.987383pt;}
.y3a{bottom:468.227083pt;}
.y10f{bottom:468.627067pt;}
.y15{bottom:469.427767pt;}
.y196{bottom:469.944171pt;}
.y7f{bottom:471.627667pt;}
.ya2{bottom:474.267067pt;}
.yec{bottom:475.427159pt;}
.y166{bottom:478.946831pt;}
.y5d{bottom:479.066463pt;}
.yc9{bottom:479.346667pt;}
.ycc{bottom:479.347067pt;}
.y129{bottom:481.987334pt;}
.yc8{bottom:485.707067pt;}
.y195{bottom:486.783599pt;}
.y39{bottom:486.787007pt;}
.y14{bottom:487.987691pt;}
.y7e{bottom:490.187591pt;}
.yeb{bottom:493.987083pt;}
.y10e{bottom:495.667327pt;}
.y165{bottom:497.467119pt;}
.y5c{bottom:498.866847pt;}
.y147{bottom:499.906855pt;}
.ya1{bottom:502.267067pt;}
.y194{bottom:503.664131pt;}
.y38{bottom:505.346931pt;}
.y13{bottom:506.547615pt;}
.y12a{bottom:506.667072pt;}
.y7d{bottom:508.707879pt;}
.yea{bottom:512.547007pt;}
.y10d{bottom:514.227251pt;}
.y164{bottom:516.346023pt;}
.ya0{bottom:516.786663pt;}
.y5b{bottom:517.426771pt;}
.y146{bottom:518.427143pt;}
.y193{bottom:520.544663pt;}
.y37{bottom:523.906855pt;}
.y7c{bottom:527.267803pt;}
.y9f{bottom:530.266959pt;}
.ye9{bottom:531.106931pt;}
.y12b{bottom:531.627276pt;}
.y10c{bottom:532.787175pt;}
.y5a{bottom:535.986695pt;}
.y163{bottom:536.106771pt;}
.y145{bottom:536.987067pt;}
.y192{bottom:537.384091pt;}
.y12{bottom:538.387067pt;}
.y36{bottom:542.466779pt;}
.y9e{bottom:543.747255pt;}
.y7b{bottom:545.827727pt;}
.ybe{bottom:547.106185pt;}
.yb9{bottom:547.107450pt;}
.yb6{bottom:547.707035pt;}
.yb5{bottom:548.027067pt;}
.ybf{bottom:549.226236pt;}
.ye8{bottom:549.666855pt;}
.yc1{bottom:549.825821pt;}
.yb7{bottom:549.827086pt;}
.yba{bottom:551.027520pt;}
.y10b{bottom:551.347099pt;}
.ybb{bottom:551.347552pt;}
.ybc{bottom:551.627105pt;}
.yc0{bottom:551.945871pt;}
.yb8{bottom:551.947136pt;}
.ybd{bottom:552.226690pt;}
.y13b{bottom:553.467400pt;}
.y191{bottom:554.264623pt;}
.y59{bottom:554.506983pt;}
.y162{bottom:554.666695pt;}
.y12c{bottom:556.267849pt;}
.yc2{bottom:556.307067pt;}
.y9d{bottom:557.267067pt;}
.y35{bottom:560.987067pt;}
.y7a{bottom:564.387651pt;}
.ye7{bottom:568.187143pt;}
.y10a{bottom:569.867387pt;}
.y190{bottom:571.104051pt;}
.y58{bottom:573.066907pt;}
.y161{bottom:573.226619pt;}
.y144{bottom:577.387067pt;}
.y17f{bottom:577.827191pt;}
.y34{bottom:580.027067pt;}
.y12d{bottom:581.267217pt;}
.y79{bottom:582.947575pt;}
.y9c{bottom:583.027951pt;}
.ye6{bottom:586.747067pt;}
.yc3{bottom:587.947178pt;}
.y18f{bottom:587.984583pt;}
.y109{bottom:588.427311pt;}
.y57{bottom:591.626831pt;}
.y160{bottom:591.786543pt;}
.y11{bottom:592.667067pt;}
.y17e{bottom:596.387115pt;}
.y13e{bottom:597.067067pt;}
.y33{bottom:599.786619pt;}
.y78{bottom:601.467863pt;}
.y9b{bottom:601.587875pt;}
.ye5{bottom:603.067067pt;}
.y1b4{bottom:604.825179pt;}
.y18e{bottom:604.865115pt;}
.y12e{bottom:605.907790pt;}
.y108{bottom:606.987235pt;}
.y56{bottom:610.186755pt;}
.y15f{bottom:610.346467pt;}
.y13f{bottom:612.226841pt;}
.y10{bottom:614.746123pt;}
.y17d{bottom:614.947039pt;}
.y32{bottom:618.346543pt;}
.yc4{bottom:619.546810pt;}
.y77{bottom:620.027787pt;}
.y9a{bottom:620.147799pt;}
.ye4{bottom:621.227467pt;}
.y1b3{bottom:621.664607pt;}
.y18d{bottom:621.704543pt;}
.y107{bottom:625.547159pt;}
.y15e{bottom:628.866755pt;}
.y55{bottom:629.027763pt;}
.y12f{bottom:630.867994pt;}
.yf{bottom:631.626655pt;}
.y17c{bottom:633.467327pt;}
.ye3{bottom:636.387067pt;}
.y31{bottom:636.906467pt;}
.y1b2{bottom:638.545139pt;}
.y18c{bottom:638.585075pt;}
.y76{bottom:638.587711pt;}
.y123{bottom:638.707067pt;}
.y99{bottom:638.707723pt;}
.y106{bottom:644.107083pt;}
.y15d{bottom:647.706659pt;}
.ye{bottom:648.466083pt;}
.y54{bottom:649.106775pt;}
.yc5{bottom:650.866890pt;}
.ye2{bottom:651.587467pt;}
.y17b{bottom:652.027251pt;}
.y140{bottom:654.267208pt;}
.y1b1{bottom:655.384567pt;}
.y18b{bottom:655.465607pt;}
.y30{bottom:655.466391pt;}
.y75{bottom:657.147635pt;}
.y98{bottom:657.267647pt;}
.y105{bottom:662.627371pt;}
.yd{bottom:665.346615pt;}
.ye1{bottom:666.747067pt;}
.y15c{bottom:667.827643pt;}
.y53{bottom:668.907159pt;}
.y17a{bottom:670.587175pt;}
.y1b0{bottom:672.265099pt;}
.y18a{bottom:672.305035pt;}
.y2f{bottom:673.986679pt;}
.y74{bottom:675.707559pt;}
.y97{bottom:675.787935pt;}
.y104{bottom:681.187295pt;}
.ye0{bottom:681.947467pt;}
.yc{bottom:682.186043pt;}
.yc6{bottom:682.507001pt;}
.y52{bottom:687.467083pt;}
.y15b{bottom:687.586923pt;}
.y1af{bottom:689.145631pt;}
.y179{bottom:689.147099pt;}
.y189{bottom:689.185567pt;}
.y126{bottom:692.226786pt;}
.y2e{bottom:692.546603pt;}
.y73{bottom:694.227847pt;}
.y96{bottom:694.347859pt;}
.y141{bottom:696.027231pt;}
.ydf{bottom:697.107067pt;}
.yb{bottom:699.066575pt;}
.y103{bottom:699.747219pt;}
.y1ae{bottom:705.985059pt;}
.y51{bottom:705.987371pt;}
.y188{bottom:706.024995pt;}
.y15a{bottom:706.146847pt;}
.y178{bottom:707.707023pt;}
.y2d{bottom:711.106527pt;}
.y125{bottom:711.787389pt;}
.y72{bottom:712.787771pt;}
.y95{bottom:712.907783pt;}
.yde{bottom:713.266667pt;}
.ydd{bottom:713.307467pt;}
.yc7{bottom:714.147112pt;}
.ya{bottom:715.947107pt;}
.y102{bottom:718.307143pt;}
.y1ad{bottom:722.865591pt;}
.y187{bottom:722.905527pt;}
.y50{bottom:724.547295pt;}
.y159{bottom:724.706771pt;}
.yb4{bottom:726.187067pt;}
.y177{bottom:726.227311pt;}
.ydc{bottom:728.467067pt;}
.y2c{bottom:729.666451pt;}
.y122{bottom:730.627067pt;}
.y71{bottom:731.347695pt;}
.y94{bottom:731.467707pt;}
.y9{bottom:732.786535pt;}
.y101{bottom:736.867067pt;}
.y142{bottom:738.027389pt;}
.y1ac{bottom:739.746123pt;}
.y186{bottom:739.786059pt;}
.y4f{bottom:743.107219pt;}
.y158{bottom:743.266695pt;}
.ydb{bottom:744.627067pt;}
.y176{bottom:744.787235pt;}
.y2b{bottom:748.226375pt;}
.y8{bottom:749.667067pt;}
.y70{bottom:749.907619pt;}
.y93{bottom:750.027631pt;}
.y1ab{bottom:756.585551pt;}
.y185{bottom:756.625487pt;}
.y121{bottom:756.746591pt;}
.y100{bottom:757.507067pt;}
.y4e{bottom:761.667143pt;}
.y157{bottom:761.826619pt;}
.yda{bottom:762.827200pt;}
.y175{bottom:763.347159pt;}
.y2a{bottom:766.746663pt;}
.y92{bottom:768.547919pt;}
.y1aa{bottom:773.466083pt;}
.y184{bottom:773.506019pt;}
.y120{bottom:773.587067pt;}
.yff{bottom:773.707067pt;}
.y143{bottom:779.787413pt;}
.y4d{bottom:780.227067pt;}
.y156{bottom:780.346907pt;}
.y6f{bottom:781.747071pt;}
.yd9{bottom:781.907083pt;}
.yb3{bottom:782.947067pt;}
.y7{bottom:784.906403pt;}
.y29{bottom:785.306587pt;}
.y91{bottom:787.107843pt;}
.yfe{bottom:789.867067pt;}
.y1a9{bottom:790.346615pt;}
.y183{bottom:790.386551pt;}
.y13a{bottom:792.827200pt;}
.y11f{bottom:798.906755pt;}
.y155{bottom:798.906831pt;}
.y4c{bottom:799.227067pt;}
.y6{bottom:800.227067pt;}
.yb2{bottom:800.427371pt;}
.y28{bottom:803.866511pt;}
.y90{bottom:805.667767pt;}
.yfd{bottom:806.027067pt;}
.y1a8{bottom:807.186043pt;}
.y182{bottom:807.225979pt;}
.y154{bottom:817.466755pt;}
.y11e{bottom:817.746835pt;}
.y4b{bottom:818.987295pt;}
.y5{bottom:821.547219pt;}
.yfc{bottom:822.227067pt;}
.y1a7{bottom:824.066575pt;}
.y181{bottom:824.106511pt;}
.y8f{bottom:824.227691pt;}
.y27{bottom:835.747067pt;}
.y153{bottom:836.306759pt;}
.y13d{bottom:837.267452pt;}
.y4a{bottom:837.547219pt;}
.y4{bottom:840.107143pt;}
.yfb{bottom:840.386667pt;}
.y1a6{bottom:840.906003pt;}
.y8e{bottom:842.787615pt;}
.yfa{bottom:855.587067pt;}
.y180{bottom:855.987067pt;}
.y49{bottom:856.107143pt;}
.y13c{bottom:856.147200pt;}
.y1a5{bottom:857.786535pt;}
.y3{bottom:858.667067pt;}
.y26{bottom:873.467067pt;}
.y8d{bottom:874.627067pt;}
.y48{bottom:874.667067pt;}
.y24{bottom:898.347775pt;}
.y1{bottom:913.707067pt;}
.h16{height:3.600000pt;}
.h10{height:28.078125pt;}
.ha{height:30.464766pt;}
.h17{height:33.350863pt;}
.h13{height:36.861336pt;}
.h1{height:36.994219pt;}
.h12{height:37.484297pt;}
.h11{height:37.943203pt;}
.h1d{height:38.746929pt;}
.h1c{height:39.200806pt;}
.h15{height:40.168566pt;}
.h5{height:40.771406pt;}
.h2{height:42.117188pt;}
.h19{height:42.632812pt;}
.h1b{height:44.340975pt;}
.h14{height:44.396663pt;}
.h4{height:46.750078pt;}
.h7{height:51.523359pt;}
.h3{height:52.154141pt;}
.hb{height:56.156250pt;}
.h6{height:56.843750pt;}
.he{height:66.761513pt;}
.h1f{height:66.761993pt;}
.h8{height:66.763502pt;}
.hc{height:66.764932pt;}
.h18{height:66.765038pt;}
.h1a{height:66.765225pt;}
.hd{height:66.765465pt;}
.h1e{height:66.765529pt;}
.h20{height:66.765929pt;}
.hf{height:66.766713pt;}
.h9{height:66.767081pt;}
.h21{height:66.768473pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w1{width:8.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:170.120000pt;}
.x3b{left:178.120000pt;}
.x3a{left:179.520000pt;}
.x25{left:181.320000pt;}
.x6{left:185.440000pt;}
.x12{left:186.760000pt;}
.x7{left:189.400000pt;}
.xe{left:190.599552pt;}
.xf{left:192.600000pt;}
.x5{left:194.120000pt;}
.x9{left:195.360508pt;}
.x13{left:197.040000pt;}
.x39{left:198.320000pt;}
.x2f{left:199.920400pt;}
.x11{left:201.879988pt;}
.xc{left:204.319788pt;}
.xb{left:207.480000pt;}
.x22{left:209.160000pt;}
.x8{left:210.760000pt;}
.x2e{left:211.920400pt;}
.xd{left:213.600000pt;}
.x10{left:214.800516pt;}
.x26{left:216.240000pt;}
.x3{left:217.320604pt;}
.x40{left:222.361001pt;}
.x3f{left:230.120558pt;}
.x15{left:239.240000pt;}
.x14{left:251.720000pt;}
.x3c{left:260.600580pt;}
.x42{left:267.520000pt;}
.x3e{left:276.640000pt;}
.x16{left:278.320022pt;}
.x28{left:281.520000pt;}
.x27{left:289.880400pt;}
.xa{left:296.680600pt;}
.x30{left:299.520400pt;}
.x31{left:302.520400pt;}
.x17{left:305.840202pt;}
.x18{left:334.640508pt;}
.x41{left:351.800129pt;}
.x3d{left:360.440131pt;}
.x4{left:362.120000pt;}
.x19{left:363.440813pt;}
.x2a{left:377.119200pt;}
.x29{left:382.119600pt;}
.x1a{left:392.561150pt;}
.x32{left:394.760800pt;}
.x33{left:397.760800pt;}
.x1b{left:422.601104pt;}
.x23{left:435.360000pt;}
.x1c{left:449.801252pt;}
.x2c{left:466.039200pt;}
.x2b{left:474.399600pt;}
.x1d{left:477.321432pt;}
.x35{left:484.040800pt;}
.x34{left:487.040800pt;}
.x36{left:490.040800pt;}
.x1e{left:499.081044pt;}
.x1f{left:529.161476pt;}
.x1{left:554.440000pt;}
.x20{left:562.120926pt;}
.x2d{left:566.679600pt;}
.x37{left:576.320800pt;}
.x38{left:579.320800pt;}
.x21{left:586.760823pt;}
.x24{left:623.200000pt;}
}

