
    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_2b27b5a68075cf3b79250508.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_53207e565f4501e04a81f50f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_98b2ed6549386179972c503f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.220215;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_de9d4834ef85f7ddf2fa6a9e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_0127d5d2a8e1a34f17488dde.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_014e1ae9319cea95f346d86e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8e983f62f5d152479c5e8814.woff')format("woff");}.ff7{font-family:ff7;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b734968aafcf2117ab595432.woff')format("woff");}.ff8{font-family:ff8;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7ba94d287524805b0ff36e11.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9f496d0597ec212ba6e66f25.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4538edea60432b2e383ce16.woff')format("woff");}.ffb{font-family:ffb;line-height:1.019531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-146.160000px;}
.v2{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls47{letter-spacing:-0.948000px;}
.ls52{letter-spacing:-0.870000px;}
.ls3c{letter-spacing:-0.636000px;}
.ls58{letter-spacing:-0.368400px;}
.ls49{letter-spacing:-0.351600px;}
.ls39{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.276600px;}
.ls3a{letter-spacing:-0.274200px;}
.ls4b{letter-spacing:-0.234000px;}
.ls45{letter-spacing:-0.227400px;}
.ls4e{letter-spacing:-0.210000px;}
.ls46{letter-spacing:-0.175800px;}
.ls43{letter-spacing:-0.169800px;}
.ls4d{letter-spacing:-0.166800px;}
.ls35{letter-spacing:-0.152400px;}
.ls42{letter-spacing:-0.150000px;}
.ls3f{letter-spacing:-0.134400px;}
.ls56{letter-spacing:-0.066000px;}
.ls34{letter-spacing:-0.009360px;}
.ls32{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.015840px;}
.ls55{letter-spacing:0.036000px;}
.ls4f{letter-spacing:0.043200px;}
.ls50{letter-spacing:0.048960px;}
.ls4c{letter-spacing:0.051840px;}
.ls33{letter-spacing:0.108000px;}
.ls59{letter-spacing:0.112200px;}
.ls44{letter-spacing:0.121200px;}
.ls5b{letter-spacing:0.166800px;}
.ls57{letter-spacing:0.167040px;}
.ls38{letter-spacing:0.186000px;}
.ls54{letter-spacing:0.193200px;}
.ls2{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.216000px;}
.ls5c{letter-spacing:0.236400px;}
.ls3{letter-spacing:0.252000px;}
.ls53{letter-spacing:0.253200px;}
.ls37{letter-spacing:0.331800px;}
.ls0{letter-spacing:0.342000px;}
.ls48{letter-spacing:0.368400px;}
.ls4a{letter-spacing:0.555840px;}
.ls40{letter-spacing:0.834000px;}
.ls3b{letter-spacing:0.906000px;}
.ls5a{letter-spacing:1.086000px;}
.ls27{letter-spacing:2.232000px;}
.ls2d{letter-spacing:2.520000px;}
.ls26{letter-spacing:2.592000px;}
.ls2a{letter-spacing:2.664000px;}
.ls28{letter-spacing:2.712000px;}
.ls25{letter-spacing:2.736000px;}
.ls2e{letter-spacing:2.772000px;}
.ls2b{letter-spacing:2.784000px;}
.ls24{letter-spacing:2.808000px;}
.ls30{letter-spacing:2.856000px;}
.ls20{letter-spacing:2.916000px;}
.ls29{letter-spacing:2.952000px;}
.ls23{letter-spacing:3.024000px;}
.ls22{letter-spacing:3.096000px;}
.ls1f{letter-spacing:3.168000px;}
.ls21{letter-spacing:3.240000px;}
.ls31{letter-spacing:3.288000px;}
.ls2f{letter-spacing:3.312000px;}
.ls2c{letter-spacing:3.456000px;}
.ls1d{letter-spacing:3.672000px;}
.ls19{letter-spacing:3.924000px;}
.ls1e{letter-spacing:3.960000px;}
.lsc{letter-spacing:3.996000px;}
.ls7{letter-spacing:4.032000px;}
.lsd{letter-spacing:4.080000px;}
.ls9{letter-spacing:4.104000px;}
.ls6{letter-spacing:4.152000px;}
.ls17{letter-spacing:4.176000px;}
.lsa{letter-spacing:4.212000px;}
.ls1a{letter-spacing:4.224000px;}
.ls13{letter-spacing:4.260000px;}
.ls12{letter-spacing:4.284000px;}
.ls15{letter-spacing:4.356000px;}
.ls1b{letter-spacing:4.368000px;}
.ls10{letter-spacing:4.392000px;}
.ls11{letter-spacing:4.464000px;}
.lse{letter-spacing:4.608000px;}
.lsb{letter-spacing:4.644000px;}
.ls18{letter-spacing:4.656000px;}
.ls8{letter-spacing:4.680000px;}
.ls16{letter-spacing:4.692000px;}
.ls1c{letter-spacing:4.788000px;}
.lsf{letter-spacing:4.824000px;}
.ls14{letter-spacing:4.860000px;}
.ls3e{letter-spacing:9.083520px;}
.ls41{letter-spacing:53.561280px;}
.ls5{letter-spacing:846.120000px;}
.ls36{letter-spacing:846.156000px;}
.ls4{letter-spacing:876.337920px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-54.000000px;}
.ws19{word-spacing:-23.569680px;}
.ws1f{word-spacing:-23.552880px;}
.ws1a{word-spacing:-23.509680px;}
.wsf{word-spacing:-23.437680px;}
.ws1e{word-spacing:-23.428680px;}
.ws12{word-spacing:-23.368320px;}
.ws16{word-spacing:-23.365440px;}
.ws14{word-spacing:-23.359680px;}
.ws9{word-spacing:-23.316480px;}
.wsb{word-spacing:-23.166480px;}
.wsc{word-spacing:-23.146680px;}
.wse{word-spacing:-23.140680px;}
.ws15{word-spacing:-23.106480px;}
.wsd{word-spacing:-23.089080px;}
.ws17{word-spacing:-23.039880px;}
.ws1d{word-spacing:-22.948080px;}
.ws13{word-spacing:-22.487280px;}
.ws18{word-spacing:-22.446480px;}
.ws10{word-spacing:-22.368480px;}
.ws5{word-spacing:-21.941520px;}
.ws6{word-spacing:-21.221520px;}
.ws3{word-spacing:-21.035520px;}
.ws7{word-spacing:-20.761320px;}
.ws2{word-spacing:-20.428560px;}
.ws1c{word-spacing:-20.371920px;}
.wsa{word-spacing:-19.008000px;}
.ws1b{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.468000px;}
.ws11{word-spacing:-18.234000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.050000px;}
._1{width:1.956000px;}
._7{width:3.021600px;}
._f{width:4.123440px;}
._5{width:6.111600px;}
._6{width:7.274640px;}
._14{width:8.879760px;}
._2d{width:10.064880px;}
._8{width:11.234880px;}
._2{width:12.801600px;}
._2e{width:14.164800px;}
._32{width:15.211440px;}
._28{width:16.272000px;}
._2c{width:17.448240px;}
._19{width:19.167360px;}
._2b{width:20.998080px;}
._15{width:22.350240px;}
._b{width:23.382240px;}
._a{width:24.501600px;}
._d{width:25.986000px;}
._e{width:27.429840px;}
._2f{width:29.202000px;}
._22{width:30.700560px;}
._1b{width:32.107200px;}
._3c{width:33.129360px;}
._1a{width:34.182720px;}
._31{width:35.193600px;}
._12{width:36.230640px;}
._13{width:37.409760px;}
._30{width:38.550720px;}
._2a{width:39.800400px;}
._1c{width:41.549280px;}
._1d{width:43.445520px;}
._35{width:44.900880px;}
._29{width:46.015680px;}
._18{width:47.824080px;}
._17{width:49.411920px;}
._1e{width:52.485360px;}
._9{width:54.013440px;}
._34{width:55.962960px;}
._26{width:57.488640px;}
._27{width:58.510560px;}
._33{width:60.599760px;}
._1f{width:62.090640px;}
._16{width:63.797040px;}
._25{width:64.858080px;}
._11{width:68.799840px;}
._10{width:69.849840px;}
._c{width:72.907200px;}
._4{width:74.740560px;}
._3{width:75.954960px;}
._3b{width:77.280480px;}
._20{width:105.983760px;}
._21{width:107.448480px;}
._24{width:122.805600px;}
._37{width:160.653840px;}
._36{width:162.076320px;}
._38{width:166.857600px;}
._39{width:178.703280px;}
._3a{width:183.100800px;}
._23{width:256.112640px;}
.fc7{color:transparent;}
.fc6{color:rgb(29,27,17);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(224,181,18);}
.fc5{color:rgb(192,192,192);}
.fc3{color:rgb(224,181,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.yd{bottom:-22.500000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.160000px;}
.y4a{bottom:2.520000px;}
.y15{bottom:2.700000px;}
.yf{bottom:5.220000px;}
.y165{bottom:5.760000px;}
.y153{bottom:5.940000px;}
.y11{bottom:10.800000px;}
.y13{bottom:12.060000px;}
.y80{bottom:20.385000px;}
.y86{bottom:21.780000px;}
.y3a{bottom:23.040000px;}
.yb{bottom:26.820000px;}
.y7f{bottom:38.385000px;}
.y7c{bottom:38.745000px;}
.y39{bottom:41.085000px;}
.y8c{bottom:45.900000px;}
.y164{bottom:47.700000px;}
.y15e{bottom:47.880000px;}
.ya{bottom:51.300000px;}
.y8{bottom:55.800000px;}
.y7b{bottom:56.745000px;}
.ye{bottom:58.140000px;}
.y16{bottom:59.220000px;}
.y38{bottom:59.265000px;}
.y12{bottom:59.940000px;}
.y10{bottom:60.300000px;}
.y85{bottom:62.850000px;}
.y44{bottom:67.170000px;}
.y14{bottom:68.400000px;}
.y152{bottom:68.805000px;}
.y15d{bottom:68.940000px;}
.y49{bottom:69.480000px;}
.y7{bottom:72.180000px;}
.y7a{bottom:74.925000px;}
.y84{bottom:80.850000px;}
.y8b{bottom:86.970000px;}
.y37{bottom:88.065000px;}
.y6{bottom:88.560000px;}
.y163{bottom:89.685000px;}
.y151{bottom:89.865000px;}
.y79{bottom:93.105000px;}
.y83{bottom:99.030000px;}
.y8a{bottom:104.970000px;}
.y42{bottom:107.670000px;}
.y43{bottom:108.390000px;}
.y28{bottom:108.720000px;}
.y29{bottom:109.800000px;}
.y156{bottom:110.745000px;}
.y110{bottom:110.880000px;}
.y15c{bottom:110.910000px;}
.y78{bottom:111.285000px;}
.ybd{bottom:111.600000px;}
.y101{bottom:112.860000px;}
.y36{bottom:113.445000px;}
.yce{bottom:117.540000px;}
.ye0{bottom:121.320000px;}
.y89{bottom:123.150000px;}
.y174{bottom:124.560000px;}
.y18b{bottom:126.180000px;}
.y77{bottom:129.645000px;}
.y12c{bottom:129.960000px;}
.ybc{bottom:130.500000px;}
.y150{bottom:131.805000px;}
.yef{bottom:131.940000px;}
.ya2{bottom:132.840000px;}
.yf9{bottom:133.740000px;}
.y5c{bottom:135.540000px;}
.y82{bottom:138.450000px;}
.y40{bottom:140.430000px;}
.y41{bottom:141.150000px;}
.y26{bottom:145.980000px;}
.y27{bottom:147.060000px;}
.y76{bottom:147.825000px;}
.y157{bottom:148.320000px;}
.y17d{bottom:149.040000px;}
.ybb{bottom:149.220000px;}
.y10f{bottom:151.020000px;}
.y162{bottom:152.685000px;}
.y100{bottom:152.820000px;}
.y15b{bottom:152.850000px;}
.y155{bottom:152.865000px;}
.yba{bottom:155.160000px;}
.y35{bottom:156.105000px;}
.ycd{bottom:157.680000px;}
.ydf{bottom:161.460000px;}
.y87{bottom:162.000000px;}
.y88{bottom:162.570000px;}
.y173{bottom:164.700000px;}
.y75{bottom:166.005000px;}
.y185{bottom:168.300000px;}
.y12b{bottom:170.100000px;}
.yee{bottom:172.080000px;}
.ya1{bottom:172.800000px;}
.y3e{bottom:173.190000px;}
.y14f{bottom:173.745000px;}
.yf8{bottom:173.880000px;}
.y3f{bottom:173.910000px;}
.y34{bottom:174.465000px;}
.y5b{bottom:176.760000px;}
.yb9{bottom:177.480000px;}
.y144{bottom:179.460000px;}
.y24{bottom:183.780000px;}
.y74{bottom:184.185000px;}
.y25{bottom:184.860000px;}
.y81{bottom:186.120000px;}
.y18a{bottom:187.380000px;}
.y17c{bottom:189.180000px;}
.y121{bottom:191.160000px;}
.y33{bottom:192.645000px;}
.yff{bottom:192.960000px;}
.y161{bottom:194.625000px;}
.y15a{bottom:194.790000px;}
.y14e{bottom:194.805000px;}
.ycc{bottom:197.820000px;}
.yde{bottom:201.420000px;}
.y73{bottom:202.545000px;}
.y3c{bottom:206.130000px;}
.y3d{bottom:206.850000px;}
.y184{bottom:208.260000px;}
.y12a{bottom:210.240000px;}
.yed{bottom:212.040000px;}
.yf7{bottom:214.020000px;}
.y154{bottom:215.685000px;}
.yb8{bottom:218.700000px;}
.y143{bottom:219.420000px;}
.y72{bottom:220.725000px;}
.y22{bottom:221.430000px;}
.y32{bottom:221.445000px;}
.y23{bottom:222.510000px;}
.y3b{bottom:223.740000px;}
.y172{bottom:225.900000px;}
.y189{bottom:227.520000px;}
.y120{bottom:231.300000px;}
.y5a{bottom:233.100000px;}
.ya0{bottom:234.000000px;}
.y160{bottom:236.565000px;}
.y159{bottom:236.730000px;}
.y14d{bottom:236.745000px;}
.ycb{bottom:237.780000px;}
.y71{bottom:238.905000px;}
.ydd{bottom:241.560000px;}
.y31{bottom:247.005000px;}
.y129{bottom:250.410000px;}
.yec{bottom:252.210000px;}
.yf6{bottom:254.190000px;}
.y70{bottom:257.295000px;}
.y14c{bottom:257.655000px;}
.yb7{bottom:258.870000px;}
.y20{bottom:259.230000px;}
.y142{bottom:259.590000px;}
.y21{bottom:260.310000px;}
.y171{bottom:265.890000px;}
.y183{bottom:269.490000px;}
.y11f{bottom:271.290000px;}
.y30{bottom:272.595000px;}
.yfe{bottom:273.270000px;}
.y9f{bottom:274.170000px;}
.y10d{bottom:275.070000px;}
.y6f{bottom:275.475000px;}
.yca{bottom:277.950000px;}
.y158{bottom:278.670000px;}
.ydc{bottom:281.730000px;}
.y188{bottom:288.570000px;}
.y59{bottom:289.470000px;}
.y128{bottom:290.550000px;}
.yeb{bottom:292.350000px;}
.y6e{bottom:293.655000px;}
.yf5{bottom:294.330000px;}
.y1e{bottom:297.030000px;}
.y1f{bottom:298.110000px;}
.yb6{bottom:299.010000px;}
.y14b{bottom:299.595000px;}
.y141{bottom:299.730000px;}
.y182{bottom:309.630000px;}
.y11e{bottom:311.430000px;}
.y6d{bottom:311.835000px;}
.yfd{bottom:313.410000px;}
.y9e{bottom:314.310000px;}
.y2f{bottom:315.075000px;}
.y10c{bottom:315.210000px;}
.yc9{bottom:318.090000px;}
.ydb{bottom:321.870000px;}
.y170{bottom:327.090000px;}
.y187{bottom:328.710000px;}
.y6c{bottom:330.195000px;}
.y127{bottom:330.510000px;}
.y10e{bottom:332.490000px;}
.y2e{bottom:333.435000px;}
.yf4{bottom:334.290000px;}
.y1c{bottom:334.650000px;}
.y1d{bottom:335.730000px;}
.yb5{bottom:339.150000px;}
.y140{bottom:339.870000px;}
.y6b{bottom:348.375000px;}
.y181{bottom:349.590000px;}
.y11d{bottom:351.570000px;}
.y2d{bottom:351.795000px;}
.y58{bottom:352.830000px;}
.yea{bottom:353.550000px;}
.y9d{bottom:354.270000px;}
.y10b{bottom:355.350000px;}
.yc8{bottom:358.230000px;}
.yda{bottom:362.010000px;}
.y6a{bottom:366.555000px;}
.y16f{bottom:367.230000px;}
.y193{bottom:368.850000px;}
.y17b{bottom:370.650000px;}
.y179{bottom:372.450000px;}
.y147{bottom:372.630000px;}
.yf3{bottom:374.430000px;}
.yb4{bottom:379.290000px;}
.y13f{bottom:380.010000px;}
.y2c{bottom:380.595000px;}
.y69{bottom:384.915000px;}
.y186{bottom:389.730000px;}
.y11c{bottom:391.710000px;}
.ye9{bottom:393.510000px;}
.y9c{bottom:394.410000px;}
.y10a{bottom:395.310000px;}
.yd9{bottom:401.970000px;}
.y68{bottom:403.095000px;}
.y2b{bottom:405.975000px;}
.y180{bottom:410.790000px;}
.y146{bottom:412.590000px;}
.yf2{bottom:414.570000px;}
.y57{bottom:418.350000px;}
.yb3{bottom:419.250000px;}
.y13e{bottom:419.970000px;}
.y7e{bottom:421.275000px;}
.y16e{bottom:428.250000px;}
.y192{bottom:429.870000px;}
.y11b{bottom:431.850000px;}
.ye8{bottom:433.650000px;}
.y9b{bottom:434.550000px;}
.y109{bottom:435.450000px;}
.y145{bottom:435.630000px;}
.y2a{bottom:440.490000px;}
.y67{bottom:442.515000px;}
.y14a{bottom:442.830000px;}
.y17f{bottom:450.930000px;}
.y5d{bottom:454.170000px;}
.yf1{bottom:454.710000px;}
.yd8{bottom:456.870000px;}
.yc7{bottom:459.390000px;}
.y13d{bottom:460.110000px;}
.y66{bottom:460.515000px;}
.y7d{bottom:460.695000px;}
.y191{bottom:470.010000px;}
.y12f{bottom:471.810000px;}
.ye7{bottom:473.835000px;}
.yb2{bottom:474.195000px;}
.y56{bottom:474.735000px;}
.y108{bottom:475.635000px;}
.y65{bottom:478.740000px;}
.y16d{bottom:489.495000px;}
.y11a{bottom:492.915000px;}
.y1b{bottom:494.895000px;}
.yd7{bottom:495.075000px;}
.y64{bottom:497.100000px;}
.y13c{bottom:500.295000px;}
.y12e{bottom:511.995000px;}
.y178{bottom:513.795000px;}
.ye6{bottom:513.975000px;}
.y9a{bottom:514.875000px;}
.y63{bottom:515.280000px;}
.y107{bottom:515.775000px;}
.yc6{bottom:520.635000px;}
.y16c{bottom:529.455000px;}
.yb1{bottom:530.355000px;}
.y55{bottom:530.895000px;}
.y190{bottom:531.075000px;}
.y119{bottom:533.055000px;}
.y62{bottom:533.460000px;}
.yf0{bottom:534.855000px;}
.yd6{bottom:551.415000px;}
.y61{bottom:551.640000px;}
.y17e{bottom:552.135000px;}
.y103{bottom:554.115000px;}
.y99{bottom:554.835000px;}
.y106{bottom:555.915000px;}
.yc5{bottom:560.775000px;}
.y13b{bottom:561.315000px;}
.y16b{bottom:569.595000px;}
.y60{bottom:570.000000px;}
.y18f{bottom:571.215000px;}
.y118{bottom:573.195000px;}
.ye5{bottom:574.995000px;}
.y54{bottom:587.235000px;}
.y5f{bottom:588.360000px;}
.y126{bottom:594.075000px;}
.y98{bottom:594.975000px;}
.yb0{bottom:596.055000px;}
.yc4{bottom:600.735000px;}
.y13a{bottom:601.455000px;}
.y16a{bottom:609.735000px;}
.y12d{bottom:613.335000px;}
.ye4{bottom:615.135000px;}
.yd5{bottom:617.115000px;}
.y18e{bottom:632.415000px;}
.y117{bottom:634.215000px;}
.y97{bottom:635.115000px;}
.y105{bottom:636.015000px;}
.yaf{bottom:636.195000px;}
.yc3{bottom:640.875000px;}
.y139{bottom:641.595000px;}
.y5e{bottom:641.640000px;}
.y53{bottom:643.575000px;}
.y169{bottom:649.875000px;}
.y17a{bottom:653.295000px;}
.ye3{bottom:655.275000px;}
.yd4{bottom:657.075000px;}
.y18d{bottom:672.375000px;}
.y116{bottom:674.355000px;}
.y96{bottom:675.255000px;}
.y177{bottom:676.155000px;}
.yae{bottom:676.335000px;}
.yc2{bottom:681.015000px;}
.y138{bottom:681.735000px;}
.y104{bottom:690.915000px;}
.ye2{bottom:695.415000px;}
.yd3{bottom:697.215000px;}
.y52{bottom:699.945000px;}
.y168{bottom:704.625000px;}
.y115{bottom:714.525000px;}
.yad{bottom:716.325000px;}
.yc1{bottom:721.005000px;}
.y137{bottom:721.905000px;}
.y18c{bottom:733.605000px;}
.yfc{bottom:735.405000px;}
.y95{bottom:736.305000px;}
.yd2{bottom:737.385000px;}
.y114{bottom:754.665000px;}
.y51{bottom:756.105000px;}
.y176{bottom:756.285000px;}
.yac{bottom:756.465000px;}
.y1a{bottom:762.045000px;}
.y167{bottom:770.325000px;}
.y102{bottom:775.545000px;}
.yc0{bottom:775.905000px;}
.y94{bottom:776.445000px;}
.yd1{bottom:777.525000px;}
.y149{bottom:778.425000px;}
.y19{bottom:784.905000px;}
.y125{bottom:794.625000px;}
.yab{bottom:796.605000px;}
.y136{bottom:802.005000px;}
.y175{bottom:811.185000px;}
.y50{bottom:812.445000px;}
.y112{bottom:815.685000px;}
.y93{bottom:816.585000px;}
.yd0{bottom:817.665000px;}
.y18{bottom:821.445000px;}
.y166{bottom:826.845000px;}
.ybf{bottom:832.245000px;}
.y124{bottom:834.765000px;}
.yaa{bottom:836.745000px;}
.y135{bottom:842.145000px;}
.y111{bottom:855.825000px;}
.y92{bottom:856.725000px;}
.ycf{bottom:857.625000px;}
.y15f{bottom:862.305000px;}
.y4f{bottom:868.785000px;}
.y123{bottom:874.905000px;}
.ya9{bottom:876.885000px;}
.y134{bottom:882.285000px;}
.y17{bottom:894.345000px;}
.y113{bottom:895.965000px;}
.y91{bottom:896.865000px;}
.ybe{bottom:897.765000px;}
.ye1{bottom:916.845000px;}
.y133{bottom:922.425000px;}
.y4e{bottom:924.990000px;}
.y122{bottom:936.150000px;}
.y90{bottom:936.870000px;}
.ya8{bottom:937.950000px;}
.y5{bottom:939.030000px;}
.yfb{bottom:957.030000px;}
.y132{bottom:962.430000px;}
.y9{bottom:964.590000px;}
.y4{bottom:970.170000px;}
.y8f{bottom:977.910000px;}
.ya6{bottom:978.090000px;}
.y4d{bottom:981.330000px;}
.ya7{bottom:985.650000px;}
.yfa{bottom:997.170000px;}
.y3{bottom:1001.130000px;}
.y131{bottom:1017.330000px;}
.ya5{bottom:1018.230000px;}
.y8e{bottom:1019.130000px;}
.y2{bottom:1032.270000px;}
.y148{bottom:1037.310000px;}
.y4c{bottom:1037.670000px;}
.y8d{bottom:1039.110000px;}
.y130{bottom:1055.670000px;}
.ya4{bottom:1058.370000px;}
.y1{bottom:1059.090000px;}
.y4b{bottom:1093.830000px;}
.ya3{bottom:1098.330000px;}
.y48{bottom:1129.470000px;}
.y47{bottom:1160.460000px;}
.y46{bottom:1179.540000px;}
.y45{bottom:1196.100000px;}
.h15{height:16.020000px;}
.hb{height:16.200000px;}
.h6{height:18.720000px;}
.h8{height:24.300000px;}
.h9{height:27.000000px;}
.h1f{height:36.017578px;}
.h1e{height:41.780391px;}
.h25{height:44.191406px;}
.h19{height:48.905156px;}
.h3{height:54.026367px;}
.h1b{height:54.208125px;}
.h5{height:54.738281px;}
.h11{height:59.789180px;}
.ha{height:60.577031px;}
.h4{height:64.800000px;}
.h1c{height:66.272344px;}
.h21{height:67.145625px;}
.h20{height:68.084282px;}
.h13{height:72.035156px;}
.h14{height:72.984375px;}
.h2{height:74.004654px;}
.h7{height:74.953125px;}
.h10{height:85.391719px;}
.h16{height:87.695156px;}
.he{height:109.476562px;}
.hc{height:121.883906px;}
.h18{height:153.390000px;}
.h1a{height:177.510000px;}
.h12{height:224.850000px;}
.h24{height:251.670000px;}
.h23{height:293.790000px;}
.h22{height:314.715000px;}
.hd{height:362.910000px;}
.hf{height:431.715000px;}
.h17{height:680.505000px;}
.h1d{height:1262.873940px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:38.160000px;}
.w4{width:86.580000px;}
.w5{width:97.056000px;}
.wa{width:97.200000px;}
.w8{width:208.515000px;}
.w9{width:325.515000px;}
.wc{width:360.075000px;}
.wb{width:360.105000px;}
.wd{width:385.665000px;}
.w7{width:401.835000px;}
.we{width:432.255000px;}
.w3{width:729.150000px;}
.w2{width:800.640000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x87{left:4.860000px;}
.x10{left:10.800000px;}
.x15{left:11.880000px;}
.xe{left:15.156000px;}
.x76{left:19.836000px;}
.x66{left:23.040000px;}
.x4b{left:25.554000px;}
.x58{left:27.000000px;}
.xa{left:28.980000px;}
.x50{left:30.054000px;}
.x23{left:31.854000px;}
.x2e{left:33.654000px;}
.x16{left:36.354000px;}
.xc{left:38.520000px;}
.x4{left:45.000000px;}
.x79{left:46.656000px;}
.x5{left:47.916000px;}
.x59{left:50.085000px;}
.x24{left:51.114000px;}
.x51{left:53.094000px;}
.x2f{left:55.614000px;}
.x17{left:57.234000px;}
.x6e{left:58.365000px;}
.x67{left:59.805000px;}
.x3b{left:60.834000px;}
.x60{left:68.625000px;}
.xd{left:69.840000px;}
.x43{left:71.094000px;}
.x52{left:72.714000px;}
.x30{left:73.974000px;}
.x5a{left:75.465000px;}
.xf{left:77.076000px;}
.x25{left:80.454000px;}
.x3c{left:83.334000px;}
.x18{left:85.674000px;}
.x53{left:87.474000px;}
.x26{left:89.634000px;}
.x44{left:91.794000px;}
.x31{left:94.674000px;}
.x6f{left:97.425000px;}
.x61{left:99.765000px;}
.x9{left:101.916000px;}
.x70{left:104.985000px;}
.x19{left:106.599000px;}
.x54{left:108.399000px;}
.x45{left:110.199000px;}
.x2{left:111.816000px;}
.x4c{left:115.059000px;}
.x32{left:117.759000px;}
.x78{left:119.010000px;}
.x3d{left:120.999000px;}
.x75{left:122.610000px;}
.x1a{left:123.879000px;}
.x55{left:125.499000px;}
.x33{left:126.939000px;}
.x46{left:129.459000px;}
.x27{left:133.239000px;}
.x62{left:134.685000px;}
.x14{left:136.476000px;}
.x47{left:138.639000px;}
.x1b{left:141.159000px;}
.x84{left:142.596000px;}
.x34{left:146.739000px;}
.x28{left:152.859000px;}
.x4d{left:155.559000px;}
.x68{left:157.365000px;}
.x5b{left:159.345000px;}
.x86{left:160.410000px;}
.x1c{left:162.039000px;}
.x69{left:163.665000px;}
.x29{left:167.619000px;}
.x4e{left:170.139000px;}
.x1d{left:171.219000px;}
.x6a{left:176.085000px;}
.x48{left:179.499000px;}
.x71{left:182.385000px;}
.x3e{left:184.179000px;}
.x63{left:185.625000px;}
.x2a{left:188.499000px;}
.x1e{left:193.719000px;}
.x57{left:195.150000px;}
.x2b{left:197.679000px;}
.x6b{left:200.745000px;}
.x5c{left:202.365000px;}
.x49{left:206.139000px;}
.x3f{left:207.219000px;}
.x35{left:209.559000px;}
.x1f{left:212.079000px;}
.x5d{left:214.635000px;}
.x4f{left:215.859000px;}
.x72{left:218.055000px;}
.x2c{left:219.639000px;}
.x20{left:221.259000px;}
.x64{left:222.375000px;}
.x40{left:224.499000px;}
.x6c{left:225.975000px;}
.x4a{left:227.019000px;}
.x65{left:228.855000px;}
.x36{left:232.059000px;}
.x21{left:238.539000px;}
.x6d{left:239.835000px;}
.x5e{left:241.095000px;}
.x2d{left:242.499000px;}
.x37{left:246.819000px;}
.x7{left:248.115000px;}
.x5f{left:253.335000px;}
.x22{left:259.419000px;}
.x41{left:264.639000px;}
.x38{left:268.809000px;}
.x42{left:273.849000px;}
.x7b{left:279.255000px;}
.x6{left:290.775000px;}
.x39{left:294.369000px;}
.x73{left:302.835000px;}
.x3a{left:315.249000px;}
.x83{left:318.315000px;}
.x81{left:327.855000px;}
.x89{left:344.595000px;}
.x7a{left:355.755000px;}
.x82{left:359.355000px;}
.x8a{left:363.675000px;}
.x80{left:375.555000px;}
.x8{left:400.425000px;}
.x85{left:404.535000px;}
.x88{left:423.645000px;}
.x11{left:446.505000px;}
.x77{left:454.065000px;}
.x3{left:462.525000px;}
.x56{left:555.945000px;}
.x13{left:570.570000px;}
.x7e{left:581.550000px;}
.x7f{left:588.210000px;}
.x7c{left:625.290000px;}
.x12{left:675.870000px;}
.xb{left:755.640000px;}
.x74{left:758.700000px;}
.x7d{left:765.540000px;}
.x1{left:784.620000px;}
@media print{
.v1{vertical-align:-129.920000pt;}
.v2{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls47{letter-spacing:-0.842667pt;}
.ls52{letter-spacing:-0.773333pt;}
.ls3c{letter-spacing:-0.565333pt;}
.ls58{letter-spacing:-0.327467pt;}
.ls49{letter-spacing:-0.312533pt;}
.ls39{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.245867pt;}
.ls3a{letter-spacing:-0.243733pt;}
.ls4b{letter-spacing:-0.208000pt;}
.ls45{letter-spacing:-0.202133pt;}
.ls4e{letter-spacing:-0.186667pt;}
.ls46{letter-spacing:-0.156267pt;}
.ls43{letter-spacing:-0.150933pt;}
.ls4d{letter-spacing:-0.148267pt;}
.ls35{letter-spacing:-0.135467pt;}
.ls42{letter-spacing:-0.133333pt;}
.ls3f{letter-spacing:-0.119467pt;}
.ls56{letter-spacing:-0.058667pt;}
.ls34{letter-spacing:-0.008320pt;}
.ls32{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.014080pt;}
.ls55{letter-spacing:0.032000pt;}
.ls4f{letter-spacing:0.038400pt;}
.ls50{letter-spacing:0.043520pt;}
.ls4c{letter-spacing:0.046080pt;}
.ls33{letter-spacing:0.096000pt;}
.ls59{letter-spacing:0.099733pt;}
.ls44{letter-spacing:0.107733pt;}
.ls5b{letter-spacing:0.148267pt;}
.ls57{letter-spacing:0.148480pt;}
.ls38{letter-spacing:0.165333pt;}
.ls54{letter-spacing:0.171733pt;}
.ls2{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5c{letter-spacing:0.210133pt;}
.ls3{letter-spacing:0.224000pt;}
.ls53{letter-spacing:0.225067pt;}
.ls37{letter-spacing:0.294933pt;}
.ls0{letter-spacing:0.304000pt;}
.ls48{letter-spacing:0.327467pt;}
.ls4a{letter-spacing:0.494080pt;}
.ls40{letter-spacing:0.741333pt;}
.ls3b{letter-spacing:0.805333pt;}
.ls5a{letter-spacing:0.965333pt;}
.ls27{letter-spacing:1.984000pt;}
.ls2d{letter-spacing:2.240000pt;}
.ls26{letter-spacing:2.304000pt;}
.ls2a{letter-spacing:2.368000pt;}
.ls28{letter-spacing:2.410667pt;}
.ls25{letter-spacing:2.432000pt;}
.ls2e{letter-spacing:2.464000pt;}
.ls2b{letter-spacing:2.474667pt;}
.ls24{letter-spacing:2.496000pt;}
.ls30{letter-spacing:2.538667pt;}
.ls20{letter-spacing:2.592000pt;}
.ls29{letter-spacing:2.624000pt;}
.ls23{letter-spacing:2.688000pt;}
.ls22{letter-spacing:2.752000pt;}
.ls1f{letter-spacing:2.816000pt;}
.ls21{letter-spacing:2.880000pt;}
.ls31{letter-spacing:2.922667pt;}
.ls2f{letter-spacing:2.944000pt;}
.ls2c{letter-spacing:3.072000pt;}
.ls1d{letter-spacing:3.264000pt;}
.ls19{letter-spacing:3.488000pt;}
.ls1e{letter-spacing:3.520000pt;}
.lsc{letter-spacing:3.552000pt;}
.ls7{letter-spacing:3.584000pt;}
.lsd{letter-spacing:3.626667pt;}
.ls9{letter-spacing:3.648000pt;}
.ls6{letter-spacing:3.690667pt;}
.ls17{letter-spacing:3.712000pt;}
.lsa{letter-spacing:3.744000pt;}
.ls1a{letter-spacing:3.754667pt;}
.ls13{letter-spacing:3.786667pt;}
.ls12{letter-spacing:3.808000pt;}
.ls15{letter-spacing:3.872000pt;}
.ls1b{letter-spacing:3.882667pt;}
.ls10{letter-spacing:3.904000pt;}
.ls11{letter-spacing:3.968000pt;}
.lse{letter-spacing:4.096000pt;}
.lsb{letter-spacing:4.128000pt;}
.ls18{letter-spacing:4.138667pt;}
.ls8{letter-spacing:4.160000pt;}
.ls16{letter-spacing:4.170667pt;}
.ls1c{letter-spacing:4.256000pt;}
.lsf{letter-spacing:4.288000pt;}
.ls14{letter-spacing:4.320000pt;}
.ls3e{letter-spacing:8.074240pt;}
.ls41{letter-spacing:47.610027pt;}
.ls5{letter-spacing:752.106667pt;}
.ls36{letter-spacing:752.138667pt;}
.ls4{letter-spacing:778.967040pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws19{word-spacing:-20.950827pt;}
.ws1f{word-spacing:-20.935893pt;}
.ws1a{word-spacing:-20.897493pt;}
.wsf{word-spacing:-20.833493pt;}
.ws1e{word-spacing:-20.825493pt;}
.ws12{word-spacing:-20.771840pt;}
.ws16{word-spacing:-20.769280pt;}
.ws14{word-spacing:-20.764160pt;}
.ws9{word-spacing:-20.725760pt;}
.wsb{word-spacing:-20.592427pt;}
.wsc{word-spacing:-20.574827pt;}
.wse{word-spacing:-20.569493pt;}
.ws15{word-spacing:-20.539093pt;}
.wsd{word-spacing:-20.523627pt;}
.ws17{word-spacing:-20.479893pt;}
.ws1d{word-spacing:-20.398293pt;}
.ws13{word-spacing:-19.988693pt;}
.ws18{word-spacing:-19.952427pt;}
.ws10{word-spacing:-19.883093pt;}
.ws5{word-spacing:-19.503573pt;}
.ws6{word-spacing:-18.863573pt;}
.ws3{word-spacing:-18.698240pt;}
.ws7{word-spacing:-18.454507pt;}
.ws2{word-spacing:-18.158720pt;}
.ws1c{word-spacing:-18.108373pt;}
.wsa{word-spacing:-16.896000pt;}
.ws1b{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.416000pt;}
.ws11{word-spacing:-16.208000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.738667pt;}
._7{width:2.685867pt;}
._f{width:3.665280pt;}
._5{width:5.432533pt;}
._6{width:6.466347pt;}
._14{width:7.893120pt;}
._2d{width:8.946560pt;}
._8{width:9.986560pt;}
._2{width:11.379200pt;}
._2e{width:12.590933pt;}
._32{width:13.521280pt;}
._28{width:14.464000pt;}
._2c{width:15.509547pt;}
._19{width:17.037653pt;}
._2b{width:18.664960pt;}
._15{width:19.866880pt;}
._b{width:20.784213pt;}
._a{width:21.779200pt;}
._d{width:23.098667pt;}
._e{width:24.382080pt;}
._2f{width:25.957333pt;}
._22{width:27.289387pt;}
._1b{width:28.539733pt;}
._3c{width:29.448320pt;}
._1a{width:30.384640pt;}
._31{width:31.283200pt;}
._12{width:32.205013pt;}
._13{width:33.253120pt;}
._30{width:34.267307pt;}
._2a{width:35.378133pt;}
._1c{width:36.932693pt;}
._1d{width:38.618240pt;}
._35{width:39.911893pt;}
._29{width:40.902827pt;}
._18{width:42.510293pt;}
._17{width:43.921707pt;}
._1e{width:46.653653pt;}
._9{width:48.011947pt;}
._34{width:49.744853pt;}
._26{width:51.101013pt;}
._27{width:52.009387pt;}
._33{width:53.866453pt;}
._1f{width:55.191680pt;}
._16{width:56.708480pt;}
._25{width:57.651627pt;}
._11{width:61.155413pt;}
._10{width:62.088747pt;}
._c{width:64.806400pt;}
._4{width:66.436053pt;}
._3{width:67.515520pt;}
._3b{width:68.693760pt;}
._20{width:94.207787pt;}
._21{width:95.509760pt;}
._24{width:109.160533pt;}
._37{width:142.803413pt;}
._36{width:144.067840pt;}
._38{width:148.317867pt;}
._39{width:158.847360pt;}
._3a{width:162.756267pt;}
._23{width:227.655680pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.yd{bottom:-20.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:1.920000pt;}
.y4a{bottom:2.240000pt;}
.y15{bottom:2.400000pt;}
.yf{bottom:4.640000pt;}
.y165{bottom:5.120000pt;}
.y153{bottom:5.280000pt;}
.y11{bottom:9.600000pt;}
.y13{bottom:10.720000pt;}
.y80{bottom:18.120000pt;}
.y86{bottom:19.360000pt;}
.y3a{bottom:20.480000pt;}
.yb{bottom:23.840000pt;}
.y7f{bottom:34.120000pt;}
.y7c{bottom:34.440000pt;}
.y39{bottom:36.520000pt;}
.y8c{bottom:40.800000pt;}
.y164{bottom:42.400000pt;}
.y15e{bottom:42.560000pt;}
.ya{bottom:45.600000pt;}
.y8{bottom:49.600000pt;}
.y7b{bottom:50.440000pt;}
.ye{bottom:51.680000pt;}
.y16{bottom:52.640000pt;}
.y38{bottom:52.680000pt;}
.y12{bottom:53.280000pt;}
.y10{bottom:53.600000pt;}
.y85{bottom:55.866667pt;}
.y44{bottom:59.706667pt;}
.y14{bottom:60.800000pt;}
.y152{bottom:61.160000pt;}
.y15d{bottom:61.280000pt;}
.y49{bottom:61.760000pt;}
.y7{bottom:64.160000pt;}
.y7a{bottom:66.600000pt;}
.y84{bottom:71.866667pt;}
.y8b{bottom:77.306667pt;}
.y37{bottom:78.280000pt;}
.y6{bottom:78.720000pt;}
.y163{bottom:79.720000pt;}
.y151{bottom:79.880000pt;}
.y79{bottom:82.760000pt;}
.y83{bottom:88.026667pt;}
.y8a{bottom:93.306667pt;}
.y42{bottom:95.706667pt;}
.y43{bottom:96.346667pt;}
.y28{bottom:96.640000pt;}
.y29{bottom:97.600000pt;}
.y156{bottom:98.440000pt;}
.y110{bottom:98.560000pt;}
.y15c{bottom:98.586667pt;}
.y78{bottom:98.920000pt;}
.ybd{bottom:99.200000pt;}
.y101{bottom:100.320000pt;}
.y36{bottom:100.840000pt;}
.yce{bottom:104.480000pt;}
.ye0{bottom:107.840000pt;}
.y89{bottom:109.466667pt;}
.y174{bottom:110.720000pt;}
.y18b{bottom:112.160000pt;}
.y77{bottom:115.240000pt;}
.y12c{bottom:115.520000pt;}
.ybc{bottom:116.000000pt;}
.y150{bottom:117.160000pt;}
.yef{bottom:117.280000pt;}
.ya2{bottom:118.080000pt;}
.yf9{bottom:118.880000pt;}
.y5c{bottom:120.480000pt;}
.y82{bottom:123.066667pt;}
.y40{bottom:124.826667pt;}
.y41{bottom:125.466667pt;}
.y26{bottom:129.760000pt;}
.y27{bottom:130.720000pt;}
.y76{bottom:131.400000pt;}
.y157{bottom:131.840000pt;}
.y17d{bottom:132.480000pt;}
.ybb{bottom:132.640000pt;}
.y10f{bottom:134.240000pt;}
.y162{bottom:135.720000pt;}
.y100{bottom:135.840000pt;}
.y15b{bottom:135.866667pt;}
.y155{bottom:135.880000pt;}
.yba{bottom:137.920000pt;}
.y35{bottom:138.760000pt;}
.ycd{bottom:140.160000pt;}
.ydf{bottom:143.520000pt;}
.y87{bottom:144.000000pt;}
.y88{bottom:144.506667pt;}
.y173{bottom:146.400000pt;}
.y75{bottom:147.560000pt;}
.y185{bottom:149.600000pt;}
.y12b{bottom:151.200000pt;}
.yee{bottom:152.960000pt;}
.ya1{bottom:153.600000pt;}
.y3e{bottom:153.946667pt;}
.y14f{bottom:154.440000pt;}
.yf8{bottom:154.560000pt;}
.y3f{bottom:154.586667pt;}
.y34{bottom:155.080000pt;}
.y5b{bottom:157.120000pt;}
.yb9{bottom:157.760000pt;}
.y144{bottom:159.520000pt;}
.y24{bottom:163.360000pt;}
.y74{bottom:163.720000pt;}
.y25{bottom:164.320000pt;}
.y81{bottom:165.440000pt;}
.y18a{bottom:166.560000pt;}
.y17c{bottom:168.160000pt;}
.y121{bottom:169.920000pt;}
.y33{bottom:171.240000pt;}
.yff{bottom:171.520000pt;}
.y161{bottom:173.000000pt;}
.y15a{bottom:173.146667pt;}
.y14e{bottom:173.160000pt;}
.ycc{bottom:175.840000pt;}
.yde{bottom:179.040000pt;}
.y73{bottom:180.040000pt;}
.y3c{bottom:183.226667pt;}
.y3d{bottom:183.866667pt;}
.y184{bottom:185.120000pt;}
.y12a{bottom:186.880000pt;}
.yed{bottom:188.480000pt;}
.yf7{bottom:190.240000pt;}
.y154{bottom:191.720000pt;}
.yb8{bottom:194.400000pt;}
.y143{bottom:195.040000pt;}
.y72{bottom:196.200000pt;}
.y22{bottom:196.826667pt;}
.y32{bottom:196.840000pt;}
.y23{bottom:197.786667pt;}
.y3b{bottom:198.880000pt;}
.y172{bottom:200.800000pt;}
.y189{bottom:202.240000pt;}
.y120{bottom:205.600000pt;}
.y5a{bottom:207.200000pt;}
.ya0{bottom:208.000000pt;}
.y160{bottom:210.280000pt;}
.y159{bottom:210.426667pt;}
.y14d{bottom:210.440000pt;}
.ycb{bottom:211.360000pt;}
.y71{bottom:212.360000pt;}
.ydd{bottom:214.720000pt;}
.y31{bottom:219.560000pt;}
.y129{bottom:222.586667pt;}
.yec{bottom:224.186667pt;}
.yf6{bottom:225.946667pt;}
.y70{bottom:228.706667pt;}
.y14c{bottom:229.026667pt;}
.yb7{bottom:230.106667pt;}
.y20{bottom:230.426667pt;}
.y142{bottom:230.746667pt;}
.y21{bottom:231.386667pt;}
.y171{bottom:236.346667pt;}
.y183{bottom:239.546667pt;}
.y11f{bottom:241.146667pt;}
.y30{bottom:242.306667pt;}
.yfe{bottom:242.906667pt;}
.y9f{bottom:243.706667pt;}
.y10d{bottom:244.506667pt;}
.y6f{bottom:244.866667pt;}
.yca{bottom:247.066667pt;}
.y158{bottom:247.706667pt;}
.ydc{bottom:250.426667pt;}
.y188{bottom:256.506667pt;}
.y59{bottom:257.306667pt;}
.y128{bottom:258.266667pt;}
.yeb{bottom:259.866667pt;}
.y6e{bottom:261.026667pt;}
.yf5{bottom:261.626667pt;}
.y1e{bottom:264.026667pt;}
.y1f{bottom:264.986667pt;}
.yb6{bottom:265.786667pt;}
.y14b{bottom:266.306667pt;}
.y141{bottom:266.426667pt;}
.y182{bottom:275.226667pt;}
.y11e{bottom:276.826667pt;}
.y6d{bottom:277.186667pt;}
.yfd{bottom:278.586667pt;}
.y9e{bottom:279.386667pt;}
.y2f{bottom:280.066667pt;}
.y10c{bottom:280.186667pt;}
.yc9{bottom:282.746667pt;}
.ydb{bottom:286.106667pt;}
.y170{bottom:290.746667pt;}
.y187{bottom:292.186667pt;}
.y6c{bottom:293.506667pt;}
.y127{bottom:293.786667pt;}
.y10e{bottom:295.546667pt;}
.y2e{bottom:296.386667pt;}
.yf4{bottom:297.146667pt;}
.y1c{bottom:297.466667pt;}
.y1d{bottom:298.426667pt;}
.yb5{bottom:301.466667pt;}
.y140{bottom:302.106667pt;}
.y6b{bottom:309.666667pt;}
.y181{bottom:310.746667pt;}
.y11d{bottom:312.506667pt;}
.y2d{bottom:312.706667pt;}
.y58{bottom:313.626667pt;}
.yea{bottom:314.266667pt;}
.y9d{bottom:314.906667pt;}
.y10b{bottom:315.866667pt;}
.yc8{bottom:318.426667pt;}
.yda{bottom:321.786667pt;}
.y6a{bottom:325.826667pt;}
.y16f{bottom:326.426667pt;}
.y193{bottom:327.866667pt;}
.y17b{bottom:329.466667pt;}
.y179{bottom:331.066667pt;}
.y147{bottom:331.226667pt;}
.yf3{bottom:332.826667pt;}
.yb4{bottom:337.146667pt;}
.y13f{bottom:337.786667pt;}
.y2c{bottom:338.306667pt;}
.y69{bottom:342.146667pt;}
.y186{bottom:346.426667pt;}
.y11c{bottom:348.186667pt;}
.ye9{bottom:349.786667pt;}
.y9c{bottom:350.586667pt;}
.y10a{bottom:351.386667pt;}
.yd9{bottom:357.306667pt;}
.y68{bottom:358.306667pt;}
.y2b{bottom:360.866667pt;}
.y180{bottom:365.146667pt;}
.y146{bottom:366.746667pt;}
.yf2{bottom:368.506667pt;}
.y57{bottom:371.866667pt;}
.yb3{bottom:372.666667pt;}
.y13e{bottom:373.306667pt;}
.y7e{bottom:374.466667pt;}
.y16e{bottom:380.666667pt;}
.y192{bottom:382.106667pt;}
.y11b{bottom:383.866667pt;}
.ye8{bottom:385.466667pt;}
.y9b{bottom:386.266667pt;}
.y109{bottom:387.066667pt;}
.y145{bottom:387.226667pt;}
.y2a{bottom:391.546667pt;}
.y67{bottom:393.346667pt;}
.y14a{bottom:393.626667pt;}
.y17f{bottom:400.826667pt;}
.y5d{bottom:403.706667pt;}
.yf1{bottom:404.186667pt;}
.yd8{bottom:406.106667pt;}
.yc7{bottom:408.346667pt;}
.y13d{bottom:408.986667pt;}
.y66{bottom:409.346667pt;}
.y7d{bottom:409.506667pt;}
.y191{bottom:417.786667pt;}
.y12f{bottom:419.386667pt;}
.ye7{bottom:421.186667pt;}
.yb2{bottom:421.506667pt;}
.y56{bottom:421.986667pt;}
.y108{bottom:422.786667pt;}
.y65{bottom:425.546667pt;}
.y16d{bottom:435.106667pt;}
.y11a{bottom:438.146667pt;}
.y1b{bottom:439.906667pt;}
.yd7{bottom:440.066667pt;}
.y64{bottom:441.866667pt;}
.y13c{bottom:444.706667pt;}
.y12e{bottom:455.106667pt;}
.y178{bottom:456.706667pt;}
.ye6{bottom:456.866667pt;}
.y9a{bottom:457.666667pt;}
.y63{bottom:458.026667pt;}
.y107{bottom:458.466667pt;}
.yc6{bottom:462.786667pt;}
.y16c{bottom:470.626667pt;}
.yb1{bottom:471.426667pt;}
.y55{bottom:471.906667pt;}
.y190{bottom:472.066667pt;}
.y119{bottom:473.826667pt;}
.y62{bottom:474.186667pt;}
.yf0{bottom:475.426667pt;}
.yd6{bottom:490.146667pt;}
.y61{bottom:490.346667pt;}
.y17e{bottom:490.786667pt;}
.y103{bottom:492.546667pt;}
.y99{bottom:493.186667pt;}
.y106{bottom:494.146667pt;}
.yc5{bottom:498.466667pt;}
.y13b{bottom:498.946667pt;}
.y16b{bottom:506.306667pt;}
.y60{bottom:506.666667pt;}
.y18f{bottom:507.746667pt;}
.y118{bottom:509.506667pt;}
.ye5{bottom:511.106667pt;}
.y54{bottom:521.986667pt;}
.y5f{bottom:522.986667pt;}
.y126{bottom:528.066667pt;}
.y98{bottom:528.866667pt;}
.yb0{bottom:529.826667pt;}
.yc4{bottom:533.986667pt;}
.y13a{bottom:534.626667pt;}
.y16a{bottom:541.986667pt;}
.y12d{bottom:545.186667pt;}
.ye4{bottom:546.786667pt;}
.yd5{bottom:548.546667pt;}
.y18e{bottom:562.146667pt;}
.y117{bottom:563.746667pt;}
.y97{bottom:564.546667pt;}
.y105{bottom:565.346667pt;}
.yaf{bottom:565.506667pt;}
.yc3{bottom:569.666667pt;}
.y139{bottom:570.306667pt;}
.y5e{bottom:570.346667pt;}
.y53{bottom:572.066667pt;}
.y169{bottom:577.666667pt;}
.y17a{bottom:580.706667pt;}
.ye3{bottom:582.466667pt;}
.yd4{bottom:584.066667pt;}
.y18d{bottom:597.666667pt;}
.y116{bottom:599.426667pt;}
.y96{bottom:600.226667pt;}
.y177{bottom:601.026667pt;}
.yae{bottom:601.186667pt;}
.yc2{bottom:605.346667pt;}
.y138{bottom:605.986667pt;}
.y104{bottom:614.146667pt;}
.ye2{bottom:618.146667pt;}
.yd3{bottom:619.746667pt;}
.y52{bottom:622.173333pt;}
.y168{bottom:626.333333pt;}
.y115{bottom:635.133333pt;}
.yad{bottom:636.733333pt;}
.yc1{bottom:640.893333pt;}
.y137{bottom:641.693333pt;}
.y18c{bottom:652.093333pt;}
.yfc{bottom:653.693333pt;}
.y95{bottom:654.493333pt;}
.yd2{bottom:655.453333pt;}
.y114{bottom:670.813333pt;}
.y51{bottom:672.093333pt;}
.y176{bottom:672.253333pt;}
.yac{bottom:672.413333pt;}
.y1a{bottom:677.373333pt;}
.y167{bottom:684.733333pt;}
.y102{bottom:689.373333pt;}
.yc0{bottom:689.693333pt;}
.y94{bottom:690.173333pt;}
.yd1{bottom:691.133333pt;}
.y149{bottom:691.933333pt;}
.y19{bottom:697.693333pt;}
.y125{bottom:706.333333pt;}
.yab{bottom:708.093333pt;}
.y136{bottom:712.893333pt;}
.y175{bottom:721.053333pt;}
.y50{bottom:722.173333pt;}
.y112{bottom:725.053333pt;}
.y93{bottom:725.853333pt;}
.yd0{bottom:726.813333pt;}
.y18{bottom:730.173333pt;}
.y166{bottom:734.973333pt;}
.ybf{bottom:739.773333pt;}
.y124{bottom:742.013333pt;}
.yaa{bottom:743.773333pt;}
.y135{bottom:748.573333pt;}
.y111{bottom:760.733333pt;}
.y92{bottom:761.533333pt;}
.ycf{bottom:762.333333pt;}
.y15f{bottom:766.493333pt;}
.y4f{bottom:772.253333pt;}
.y123{bottom:777.693333pt;}
.ya9{bottom:779.453333pt;}
.y134{bottom:784.253333pt;}
.y17{bottom:794.973333pt;}
.y113{bottom:796.413333pt;}
.y91{bottom:797.213333pt;}
.ybe{bottom:798.013333pt;}
.ye1{bottom:814.973333pt;}
.y133{bottom:819.933333pt;}
.y4e{bottom:822.213333pt;}
.y122{bottom:832.133333pt;}
.y90{bottom:832.773333pt;}
.ya8{bottom:833.733333pt;}
.y5{bottom:834.693333pt;}
.yfb{bottom:850.693333pt;}
.y132{bottom:855.493333pt;}
.y9{bottom:857.413333pt;}
.y4{bottom:862.373333pt;}
.y8f{bottom:869.253333pt;}
.ya6{bottom:869.413333pt;}
.y4d{bottom:872.293333pt;}
.ya7{bottom:876.133333pt;}
.yfa{bottom:886.373333pt;}
.y3{bottom:889.893333pt;}
.y131{bottom:904.293333pt;}
.ya5{bottom:905.093333pt;}
.y8e{bottom:905.893333pt;}
.y2{bottom:917.573333pt;}
.y148{bottom:922.053333pt;}
.y4c{bottom:922.373333pt;}
.y8d{bottom:923.653333pt;}
.y130{bottom:938.373333pt;}
.ya4{bottom:940.773333pt;}
.y1{bottom:941.413333pt;}
.y4b{bottom:972.293333pt;}
.ya3{bottom:976.293333pt;}
.y48{bottom:1003.973333pt;}
.y47{bottom:1031.520000pt;}
.y46{bottom:1048.480000pt;}
.y45{bottom:1063.200000pt;}
.h15{height:14.240000pt;}
.hb{height:14.400000pt;}
.h6{height:16.640000pt;}
.h8{height:21.600000pt;}
.h9{height:24.000000pt;}
.h1f{height:32.015625pt;}
.h1e{height:37.138125pt;}
.h25{height:39.281250pt;}
.h19{height:43.471250pt;}
.h3{height:48.023438pt;}
.h1b{height:48.185000pt;}
.h5{height:48.656250pt;}
.h11{height:53.145938pt;}
.ha{height:53.846250pt;}
.h4{height:57.600000pt;}
.h1c{height:58.908750pt;}
.h21{height:59.685000pt;}
.h20{height:60.519362pt;}
.h13{height:64.031250pt;}
.h14{height:64.875000pt;}
.h2{height:65.781915pt;}
.h7{height:66.625000pt;}
.h10{height:75.903750pt;}
.h16{height:77.951250pt;}
.he{height:97.312500pt;}
.hc{height:108.341250pt;}
.h18{height:136.346667pt;}
.h1a{height:157.786667pt;}
.h12{height:199.866667pt;}
.h24{height:223.706667pt;}
.h23{height:261.146667pt;}
.h22{height:279.746667pt;}
.hd{height:322.586667pt;}
.hf{height:383.746667pt;}
.h17{height:604.893333pt;}
.h1d{height:1122.554613pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:33.920000pt;}
.w4{width:76.960000pt;}
.w5{width:86.272000pt;}
.wa{width:86.400000pt;}
.w8{width:185.346667pt;}
.w9{width:289.346667pt;}
.wc{width:320.066667pt;}
.wb{width:320.093333pt;}
.wd{width:342.813333pt;}
.w7{width:357.186667pt;}
.we{width:384.226667pt;}
.w3{width:648.133333pt;}
.w2{width:711.680000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x87{left:4.320000pt;}
.x10{left:9.600000pt;}
.x15{left:10.560000pt;}
.xe{left:13.472000pt;}
.x76{left:17.632000pt;}
.x66{left:20.480000pt;}
.x4b{left:22.714667pt;}
.x58{left:24.000000pt;}
.xa{left:25.760000pt;}
.x50{left:26.714667pt;}
.x23{left:28.314667pt;}
.x2e{left:29.914667pt;}
.x16{left:32.314667pt;}
.xc{left:34.240000pt;}
.x4{left:40.000000pt;}
.x79{left:41.472000pt;}
.x5{left:42.592000pt;}
.x59{left:44.520000pt;}
.x24{left:45.434667pt;}
.x51{left:47.194667pt;}
.x2f{left:49.434667pt;}
.x17{left:50.874667pt;}
.x6e{left:51.880000pt;}
.x67{left:53.160000pt;}
.x3b{left:54.074667pt;}
.x60{left:61.000000pt;}
.xd{left:62.080000pt;}
.x43{left:63.194667pt;}
.x52{left:64.634667pt;}
.x30{left:65.754667pt;}
.x5a{left:67.080000pt;}
.xf{left:68.512000pt;}
.x25{left:71.514667pt;}
.x3c{left:74.074667pt;}
.x18{left:76.154667pt;}
.x53{left:77.754667pt;}
.x26{left:79.674667pt;}
.x44{left:81.594667pt;}
.x31{left:84.154667pt;}
.x6f{left:86.600000pt;}
.x61{left:88.680000pt;}
.x9{left:90.592000pt;}
.x70{left:93.320000pt;}
.x19{left:94.754667pt;}
.x54{left:96.354667pt;}
.x45{left:97.954667pt;}
.x2{left:99.392000pt;}
.x4c{left:102.274667pt;}
.x32{left:104.674667pt;}
.x78{left:105.786667pt;}
.x3d{left:107.554667pt;}
.x75{left:108.986667pt;}
.x1a{left:110.114667pt;}
.x55{left:111.554667pt;}
.x33{left:112.834667pt;}
.x46{left:115.074667pt;}
.x27{left:118.434667pt;}
.x62{left:119.720000pt;}
.x14{left:121.312000pt;}
.x47{left:123.234667pt;}
.x1b{left:125.474667pt;}
.x84{left:126.752000pt;}
.x34{left:130.434667pt;}
.x28{left:135.874667pt;}
.x4d{left:138.274667pt;}
.x68{left:139.880000pt;}
.x5b{left:141.640000pt;}
.x86{left:142.586667pt;}
.x1c{left:144.034667pt;}
.x69{left:145.480000pt;}
.x29{left:148.994667pt;}
.x4e{left:151.234667pt;}
.x1d{left:152.194667pt;}
.x6a{left:156.520000pt;}
.x48{left:159.554667pt;}
.x71{left:162.120000pt;}
.x3e{left:163.714667pt;}
.x63{left:165.000000pt;}
.x2a{left:167.554667pt;}
.x1e{left:172.194667pt;}
.x57{left:173.466667pt;}
.x2b{left:175.714667pt;}
.x6b{left:178.440000pt;}
.x5c{left:179.880000pt;}
.x49{left:183.234667pt;}
.x3f{left:184.194667pt;}
.x35{left:186.274667pt;}
.x1f{left:188.514667pt;}
.x5d{left:190.786667pt;}
.x4f{left:191.874667pt;}
.x72{left:193.826667pt;}
.x2c{left:195.234667pt;}
.x20{left:196.674667pt;}
.x64{left:197.666667pt;}
.x40{left:199.554667pt;}
.x6c{left:200.866667pt;}
.x4a{left:201.794667pt;}
.x65{left:203.426667pt;}
.x36{left:206.274667pt;}
.x21{left:212.034667pt;}
.x6d{left:213.186667pt;}
.x5e{left:214.306667pt;}
.x2d{left:215.554667pt;}
.x37{left:219.394667pt;}
.x7{left:220.546667pt;}
.x5f{left:225.186667pt;}
.x22{left:230.594667pt;}
.x41{left:235.234667pt;}
.x38{left:238.941333pt;}
.x42{left:243.421333pt;}
.x7b{left:248.226667pt;}
.x6{left:258.466667pt;}
.x39{left:261.661333pt;}
.x73{left:269.186667pt;}
.x3a{left:280.221333pt;}
.x83{left:282.946667pt;}
.x81{left:291.426667pt;}
.x89{left:306.306667pt;}
.x7a{left:316.226667pt;}
.x82{left:319.426667pt;}
.x8a{left:323.266667pt;}
.x80{left:333.826667pt;}
.x8{left:355.933333pt;}
.x85{left:359.586667pt;}
.x88{left:376.573333pt;}
.x11{left:396.893333pt;}
.x77{left:403.613333pt;}
.x3{left:411.133333pt;}
.x56{left:494.173333pt;}
.x13{left:507.173333pt;}
.x7e{left:516.933333pt;}
.x7f{left:522.853333pt;}
.x7c{left:555.813333pt;}
.x12{left:600.773333pt;}
.xb{left:671.680000pt;}
.x74{left:674.400000pt;}
.x7d{left:680.480000pt;}
.x1{left:697.440000pt;}
}

