
    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_38bf6667ddf4b0fbb099f5ae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.221191;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_d0eab8bff3c398b053e2a2ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.766602;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_9400d4d031ac1e742e2da275.woff')format("woff");}.ff3{font-family:ff3;line-height:1.211914;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_803c8965ed491b0f86cb6472.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_774372a43bea8cc4bfc5835e.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_e8f25c585200895caccf8d0b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_58af1ea9b7fbead1c8321a5a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c9adee43d320ec0cf53889a7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_fe2404a222185a2c183a385e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_f0329816bea81af2a2faf1b8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211914;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_85a12343e55fc57c6da6c5bc.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_789debffa082002b981f7635.woff')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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:ffd;src:url('chunks/assets/font_b81fa7d237f1eaa4a0c3d728.woff')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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:ffe;src:url('chunks/assets/font_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.400000px;}
.v4{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.600000px;}
.v1{vertical-align:14.400000px;}
.ls11{letter-spacing:-2.916000px;}
.ls10{letter-spacing:-2.664000px;}
.ls1a{letter-spacing:-0.930000px;}
.ls42{letter-spacing:-0.906000px;}
.ls19{letter-spacing:-0.648000px;}
.ls47{letter-spacing:-0.573000px;}
.lsa{letter-spacing:-0.440400px;}
.ls38{letter-spacing:-0.409200px;}
.lsb{letter-spacing:-0.301200px;}
.ls37{letter-spacing:-0.291000px;}
.ls45{letter-spacing:-0.241800px;}
.lsc{letter-spacing:-0.238800px;}
.ls34{letter-spacing:-0.234000px;}
.ls24{letter-spacing:-0.233400px;}
.ls4{letter-spacing:-0.227400px;}
.ls15{letter-spacing:-0.222000px;}
.ls28{letter-spacing:-0.207600px;}
.ls51{letter-spacing:-0.198000px;}
.ls36{letter-spacing:-0.184200px;}
.ls46{letter-spacing:-0.175800px;}
.ls50{letter-spacing:-0.172800px;}
.ls43{letter-spacing:-0.152400px;}
.ls29{letter-spacing:-0.150000px;}
.ls44{letter-spacing:-0.147000px;}
.ls26{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.112200px;}
.ls22{letter-spacing:-0.103800px;}
.ls4c{letter-spacing:-0.094800px;}
.ls35{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.080400px;}
.ls17{letter-spacing:-0.009360px;}
.ls8{letter-spacing:-0.000006px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.023040px;}
.ls39{letter-spacing:0.045120px;}
.ls14{letter-spacing:0.069000px;}
.ls2e{letter-spacing:0.069120px;}
.ls3b{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.075000px;}
.ls0{letter-spacing:0.080400px;}
.ls2a{letter-spacing:0.089400px;}
.ls31{letter-spacing:0.094800px;}
.ls49{letter-spacing:0.095040px;}
.lse{letter-spacing:0.100800px;}
.ls27{letter-spacing:0.112200px;}
.ls4f{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.146880px;}
.ls41{letter-spacing:0.147000px;}
.ls4e{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.194400px;}
.ls52{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.205800px;}
.ls40{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.250560px;}
.ls48{letter-spacing:0.250800px;}
.ls12{letter-spacing:0.261600px;}
.ls3a{letter-spacing:0.264960px;}
.ls53{letter-spacing:0.265200px;}
.ls9{letter-spacing:0.279600px;}
.ls33{letter-spacing:0.305400px;}
.ls13{letter-spacing:0.310800px;}
.ls2d{letter-spacing:0.311040px;}
.ls4b{letter-spacing:0.319680px;}
.ls2f{letter-spacing:0.336000px;}
.ls4d{letter-spacing:0.337200px;}
.ls2c{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.481200px;}
.ls32{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.547200px;}
.ls7{letter-spacing:0.642000px;}
.ls3d{letter-spacing:0.720000px;}
.ls4a{letter-spacing:0.792000px;}
.ls21{letter-spacing:6.065280px;}
.ls25{letter-spacing:7.747200px;}
.ls20{letter-spacing:9.665280px;}
.ls18{letter-spacing:9.907200px;}
.ls1c{letter-spacing:12.067200px;}
.ls1d{letter-spacing:16.145280px;}
.ls1b{letter-spacing:16.865280px;}
.lsd{letter-spacing:21.985920px;}
.ls1e{letter-spacing:37.025280px;}
.ls1f{letter-spacing:45.665280px;}
.ls1{letter-spacing:849.144000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(102,153,153),0 0.015em rgb(102,153,153),0.015em 0 rgb(102,153,153),0 -0.015em  rgb(102,153,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(102,153,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.wsc{word-spacing:-54.000000px;}
.ws0{word-spacing:-41.760000px;}
.ws4{word-spacing:-30.780000px;}
.ws5{word-spacing:-25.344000px;}
.wsf{word-spacing:-21.979920px;}
.ws14{word-spacing:-20.428560px;}
.ws12{word-spacing:-19.008000px;}
.wsb{word-spacing:-18.468000px;}
.ws21{word-spacing:-18.234000px;}
.ws1b{word-spacing:-18.106440px;}
.ws13{word-spacing:-17.882040px;}
.ws6{word-spacing:-17.260080px;}
.ws7{word-spacing:-16.980480px;}
.wse{word-spacing:-16.759680px;}
.ws8{word-spacing:-16.540080px;}
.wsd{word-spacing:-16.344000px;}
.ws33{word-spacing:-14.910000px;}
.ws3{word-spacing:-14.905320px;}
.ws30{word-spacing:-14.883600px;}
.ws20{word-spacing:-14.878200px;}
.ws35{word-spacing:-14.838000px;}
.ws2e{word-spacing:-14.823600px;}
.ws1{word-spacing:-14.779920px;}
.ws2d{word-spacing:-14.719800px;}
.ws2{word-spacing:-14.699520px;}
.ws22{word-spacing:-14.667600px;}
.ws1d{word-spacing:-14.662200px;}
.ws19{word-spacing:-14.647800px;}
.ws29{word-spacing:-14.644800px;}
.ws10{word-spacing:-14.641800px;}
.ws11{word-spacing:-14.595840px;}
.ws32{word-spacing:-14.587200px;}
.ws16{word-spacing:-14.572800px;}
.ws31{word-spacing:-14.478000px;}
.ws18{word-spacing:-14.469000px;}
.ws2a{word-spacing:-14.425800px;}
.ws1c{word-spacing:-14.422800px;}
.ws28{word-spacing:-14.420400px;}
.ws2b{word-spacing:-14.397000px;}
.ws23{word-spacing:-14.388600px;}
.ws1f{word-spacing:-14.345400px;}
.ws1a{word-spacing:-14.339400px;}
.ws9{word-spacing:-14.281920px;}
.ws24{word-spacing:-14.281800px;}
.ws25{word-spacing:-14.163600px;}
.ws2c{word-spacing:-13.999800px;}
.ws15{word-spacing:-13.924800px;}
.ws27{word-spacing:-13.666800px;}
.ws2f{word-spacing:-12.096000px;}
.ws34{word-spacing:-12.078000px;}
.ws1e{word-spacing:-11.880000px;}
.ws26{word-spacing:-11.790000px;}
.wsa{word-spacing:0.000000px;}
._d{margin-left:-3.852000px;}
._c{margin-left:-2.628000px;}
._5{margin-left:-1.254240px;}
._0{width:1.144800px;}
._4{width:2.628480px;}
._8{width:3.718080px;}
._9{width:4.927680px;}
._a{width:6.120000px;}
._b{width:7.846560px;}
._e{width:9.082800px;}
._2{width:10.271760px;}
._1{width:11.348640px;}
._17{width:13.013760px;}
._1d{width:14.101680px;}
._14{width:16.092000px;}
._13{width:17.156160px;}
._15{width:18.448320px;}
._16{width:19.737600px;}
._22{width:21.126240px;}
._12{width:22.190400px;}
._1a{width:24.177600px;}
._19{width:25.899840px;}
._23{width:26.959680px;}
._1e{width:28.019520px;}
._18{width:29.240640px;}
._1f{width:30.761280px;}
._11{width:31.861440px;}
._f{width:32.921280px;}
._10{width:34.308000px;}
._1b{width:36.162720px;}
._24{width:38.882880px;}
._1c{width:40.600800px;}
._25{width:42.658560px;}
._20{width:44.680320px;}
._21{width:45.758880px;}
._3{width:46.785600px;}
._6{width:49.380480px;}
._7{width:51.506400px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(19,19,20);}
.fc3{color:transparent;}
.fc2{color:rgb(102,153,153);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs0{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fsb{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs8{font-size:95.760000px;}
.y11{bottom:-16.020000px;}
.y0{bottom:0.000000px;}
.y36{bottom:2.520000px;}
.y160{bottom:3.780000px;}
.y163{bottom:3.960000px;}
.y16{bottom:6.300000px;}
.y15e{bottom:7.200000px;}
.y10{bottom:11.700000px;}
.y15{bottom:20.880000px;}
.yf{bottom:30.060000px;}
.y22{bottom:30.420000px;}
.y14{bottom:35.640000px;}
.y2e{bottom:39.630000px;}
.y9{bottom:49.680000px;}
.y13{bottom:50.220000px;}
.y34{bottom:51.120000px;}
.y21{bottom:52.560000px;}
.y2d{bottom:61.770000px;}
.y20{bottom:67.140000px;}
.y8{bottom:71.280000px;}
.yd{bottom:73.845000px;}
.y33{bottom:75.780000px;}
.y2c{bottom:76.350000px;}
.y1f{bottom:81.900000px;}
.y7{bottom:84.060000px;}
.y2b{bottom:91.110000px;}
.y1e{bottom:96.480000px;}
.y6{bottom:96.840000px;}
.y2a{bottom:105.870000px;}
.yc{bottom:106.965000px;}
.y1d{bottom:111.240000px;}
.y29{bottom:120.450000px;}
.y1c{bottom:125.820000px;}
.y28{bottom:135.210000px;}
.y16a{bottom:135.360000px;}
.yb{bottom:137.025000px;}
.ybc{bottom:137.520000px;}
.yff{bottom:138.960000px;}
.y115{bottom:139.680000px;}
.y1b{bottom:140.580000px;}
.y143{bottom:141.480000px;}
.y5b{bottom:144.000000px;}
.y13c{bottom:144.180000px;}
.y155{bottom:145.260000px;}
.ye0{bottom:145.440000px;}
.y18b{bottom:148.140000px;}
.y137{bottom:149.760000px;}
.y27{bottom:149.790000px;}
.y169{bottom:153.720000px;}
.y1a{bottom:155.160000px;}
.ybb{bottom:156.960000px;}
.yfe{bottom:158.220000px;}
.y1ae{bottom:158.760000px;}
.y114{bottom:158.940000px;}
.y142{bottom:160.920000px;}
.y84{bottom:163.080000px;}
.y5a{bottom:163.260000px;}
.yab{bottom:163.440000px;}
.y154{bottom:164.520000px;}
.y26{bottom:164.550000px;}
.ydf{bottom:164.880000px;}
.y2f{bottom:166.860000px;}
.y18a{bottom:167.400000px;}
.y136{bottom:169.200000px;}
.y19{bottom:169.920000px;}
.y168{bottom:172.080000px;}
.yba{bottom:176.220000px;}
.yfd{bottom:177.480000px;}
.y1ad{bottom:178.200000px;}
.y113{bottom:178.380000px;}
.y25{bottom:179.130000px;}
.y141{bottom:180.180000px;}
.y23{bottom:180.360000px;}
.y83{bottom:182.520000px;}
.y59{bottom:182.700000px;}
.y13b{bottom:182.880000px;}
.y153{bottom:183.960000px;}
.yde{bottom:184.140000px;}
.y18{bottom:184.710000px;}
.y1c3{bottom:185.940000px;}
.y189{bottom:186.840000px;}
.y135{bottom:188.460000px;}
.y167{bottom:190.440000px;}
.y24{bottom:193.890000px;}
.yb9{bottom:195.480000px;}
.y1ac{bottom:196.740000px;}
.yfc{bottom:196.920000px;}
.y112{bottom:197.640000px;}
.y82{bottom:201.780000px;}
.y58{bottom:201.960000px;}
.ya3{bottom:202.140000px;}
.y152{bottom:203.220000px;}
.ydd{bottom:203.580000px;}
.y188{bottom:206.130000px;}
.y140{bottom:207.570000px;}
.y134{bottom:207.930000px;}
.y166{bottom:208.650000px;}
.y1ab{bottom:213.870000px;}
.yb8{bottom:214.950000px;}
.y1d4{bottom:215.850000px;}
.yfb{bottom:216.210000px;}
.y111{bottom:217.110000px;}
.y81{bottom:220.710000px;}
.y57{bottom:221.430000px;}
.y13a{bottom:221.610000px;}
.y1c2{bottom:222.510000px;}
.y151{bottom:222.690000px;}
.ydc{bottom:222.870000px;}
.y13f{bottom:223.050000px;}
.y187{bottom:224.670000px;}
.y165{bottom:227.010000px;}
.y133{bottom:227.190000px;}
.y1d3{bottom:233.130000px;}
.y1aa{bottom:233.310000px;}
.yfa{bottom:235.650000px;}
.y110{bottom:236.370000px;}
.y13e{bottom:238.710000px;}
.y56{bottom:240.690000px;}
.ya2{bottom:240.870000px;}
.y150{bottom:241.950000px;}
.ydb{bottom:242.310000px;}
.yb7{bottom:243.210000px;}
.y164{bottom:245.370000px;}
.y1a9{bottom:252.570000px;}
.y13d{bottom:254.190000px;}
.y132{bottom:254.550000px;}
.yf9{bottom:254.910000px;}
.y10f{bottom:255.810000px;}
.y80{bottom:256.530000px;}
.y55{bottom:260.130000px;}
.y139{bottom:260.310000px;}
.y186{bottom:261.210000px;}
.y14f{bottom:261.390000px;}
.yda{bottom:261.570000px;}
.yb6{bottom:262.650000px;}
.y162{bottom:263.730000px;}
.y131{bottom:270.030000px;}
.y7f{bottom:272.010000px;}
.yf8{bottom:274.350000px;}
.y10e{bottom:275.070000px;}
.y54{bottom:279.390000px;}
.ya1{bottom:279.570000px;}
.y14e{bottom:280.650000px;}
.y1d2{bottom:280.830000px;}
.yd9{bottom:281.010000px;}
.yb5{bottom:281.910000px;}
.y161{bottom:282.090000px;}
.y130{bottom:285.510000px;}
.y7e{bottom:287.490000px;}
.y1a8{bottom:290.550000px;}
.yf7{bottom:293.610000px;}
.y10d{bottom:294.510000px;}
.y53{bottom:298.830000px;}
.y138{bottom:299.010000px;}
.y185{bottom:299.910000px;}
.y14d{bottom:300.090000px;}
.yd8{bottom:300.270000px;}
.y15f{bottom:300.450000px;}
.y12f{bottom:300.990000px;}
.yb4{bottom:301.350000px;}
.y7d{bottom:302.970000px;}
.y1a7{bottom:307.650000px;}
.yf6{bottom:313.050000px;}
.y10c{bottom:313.770000px;}
.y12e{bottom:316.650000px;}
.y52{bottom:318.090000px;}
.ya0{bottom:318.270000px;}
.y7c{bottom:318.450000px;}
.y15d{bottom:318.630000px;}
.y1c1{bottom:319.170000px;}
.y14c{bottom:319.350000px;}
.yd7{bottom:319.530000px;}
.yb3{bottom:320.610000px;}
.y1a6{bottom:327.090000px;}
.y12d{bottom:332.130000px;}
.yf5{bottom:332.310000px;}
.y10b{bottom:333.030000px;}
.y7b{bottom:333.930000px;}
.y184{bottom:335.730000px;}
.y51{bottom:337.530000px;}
.y1c0{bottom:337.890000px;}
.y1d1{bottom:338.070000px;}
.y14b{bottom:338.610000px;}
.yd6{bottom:338.970000px;}
.yb2{bottom:340.050000px;}
.y15c{bottom:346.170000px;}
.y1a5{bottom:346.350000px;}
.y7a{bottom:349.410000px;}
.yf4{bottom:351.750000px;}
.y10a{bottom:352.470000px;}
.y183{bottom:354.990000px;}
.y1d0{bottom:355.170000px;}
.y50{bottom:356.610000px;}
.y9f{bottom:356.970000px;}
.y12c{bottom:357.510000px;}
.y14a{bottom:358.050000px;}
.yd5{bottom:358.230000px;}
.yb1{bottom:359.310000px;}
.y15b{bottom:364.350000px;}
.y79{bottom:364.890000px;}
.y1a4{bottom:365.790000px;}
.yf3{bottom:371.010000px;}
.y182{bottom:374.430000px;}
.y1cf{bottom:374.610000px;}
.y9e{bottom:376.230000px;}
.y12b{bottom:376.950000px;}
.y149{bottom:377.310000px;}
.yd4{bottom:377.670000px;}
.yb0{bottom:378.750000px;}
.y1a3{bottom:385.050000px;}
.yf2{bottom:389.775000px;}
.y78{bottom:390.495000px;}
.y17{bottom:392.475000px;}
.y181{bottom:393.015000px;}
.y1bf{bottom:393.735000px;}
.y1ce{bottom:393.915000px;}
.y4f{bottom:394.995000px;}
.y9d{bottom:395.535000px;}
.y109{bottom:395.715000px;}
.y12a{bottom:396.255000px;}
.y148{bottom:396.435000px;}
.yd3{bottom:396.975000px;}
.yaf{bottom:398.055000px;}
.y15a{bottom:401.295000px;}
.y1a2{bottom:404.535000px;}
.y77{bottom:409.755000px;}
.y180{bottom:410.115000px;}
.y1cd{bottom:412.455000px;}
.y1be{bottom:412.995000px;}
.y4e{bottom:414.255000px;}
.y9c{bottom:414.975000px;}
.y129{bottom:415.515000px;}
.yd2{bottom:416.415000px;}
.yae{bottom:417.495000px;}
.y159{bottom:420.555000px;}
.y1a1{bottom:423.075000px;}
.yf1{bottom:426.675000px;}
.y76{bottom:429.195000px;}
.y17f{bottom:429.555000px;}
.y1cc{bottom:429.735000px;}
.y1bd{bottom:431.715000px;}
.y4d{bottom:433.515000px;}
.y147{bottom:433.695000px;}
.y9b{bottom:434.235000px;}
.y108{bottom:434.415000px;}
.y128{bottom:434.955000px;}
.yd1{bottom:435.675000px;}
.yad{bottom:436.755000px;}
.y158{bottom:439.275000px;}
.y1a0{bottom:440.175000px;}
.yf0{bottom:445.935000px;}
.y17e{bottom:448.095000px;}
.y75{bottom:448.455000px;}
.y1bc{bottom:448.815000px;}
.y1cb{bottom:448.995000px;}
.y4c{bottom:452.955000px;}
.y9a{bottom:453.675000px;}
.y127{bottom:454.215000px;}
.yac{bottom:455.475000px;}
.y19f{bottom:459.615000px;}
.yd0{bottom:464.115000px;}
.y17d{bottom:465.195000px;}
.yef{bottom:465.375000px;}
.y146{bottom:466.635000px;}
.y1ca{bottom:467.715000px;}
.y74{bottom:467.895000px;}
.y1bb{bottom:468.255000px;}
.y4b{bottom:472.215000px;}
.y99{bottom:472.935000px;}
.y107{bottom:473.115000px;}
.y126{bottom:473.655000px;}
.y157{bottom:476.175000px;}
.y19e{bottom:478.875000px;}
.ycf{bottom:483.375000px;}
.yee{bottom:484.635000px;}
.y1c9{bottom:484.815000px;}
.y73{bottom:487.155000px;}
.y1ba{bottom:487.515000px;}
.y4a{bottom:491.655000px;}
.y98{bottom:492.375000px;}
.y125{bottom:492.915000px;}
.y156{bottom:494.895000px;}
.y19d{bottom:498.315000px;}
.yce{bottom:502.815000px;}
.y17c{bottom:503.895000px;}
.yed{bottom:504.075000px;}
.y1b9{bottom:506.055000px;}
.y72{bottom:506.415000px;}
.y49{bottom:510.915000px;}
.y97{bottom:511.635000px;}
.y106{bottom:511.815000px;}
.y124{bottom:512.355000px;}
.y19c{bottom:517.575000px;}
.ycd{bottom:522.075000px;}
.y17b{bottom:522.615000px;}
.y1c8{bottom:522.795000px;}
.yec{bottom:523.335000px;}
.y71{bottom:525.855000px;}
.y48{bottom:530.355000px;}
.y96{bottom:531.075000px;}
.y123{bottom:531.615000px;}
.y19b{bottom:537.015000px;}
.y17a{bottom:539.715000px;}
.y1c7{bottom:539.895000px;}
.ycc{bottom:541.515000px;}
.y1b8{bottom:542.595000px;}
.y70{bottom:545.115000px;}
.yeb{bottom:547.275000px;}
.y47{bottom:549.615000px;}
.y95{bottom:550.335000px;}
.y105{bottom:550.515000px;}
.y122{bottom:551.055000px;}
.y19a{bottom:556.275000px;}
.y179{bottom:558.975000px;}
.y1c6{bottom:559.335000px;}
.ycb{bottom:560.775000px;}
.y1b7{bottom:562.035000px;}
.y6f{bottom:564.555000px;}
.yea{bottom:566.535000px;}
.y46{bottom:569.055000px;}
.y94{bottom:569.775000px;}
.y121{bottom:570.345000px;}
.y199{bottom:575.745000px;}
.y178{bottom:578.445000px;}
.y1c5{bottom:578.625000px;}
.yca{bottom:580.245000px;}
.y1b6{bottom:580.605000px;}
.y6e{bottom:583.845000px;}
.y45{bottom:588.345000px;}
.yaa{bottom:588.885000px;}
.y93{bottom:589.065000px;}
.y104{bottom:589.245000px;}
.y120{bottom:589.785000px;}
.ye9{bottom:590.505000px;}
.y198{bottom:595.005000px;}
.y12{bottom:595.365000px;}
.y1c4{bottom:597.165000px;}
.y177{bottom:597.705000px;}
.yc9{bottom:599.505000px;}
.y6d{bottom:603.285000px;}
.y44{bottom:607.785000px;}
.y92{bottom:608.505000px;}
.y11f{bottom:609.045000px;}
.ye8{bottom:609.765000px;}
.y197{bottom:614.445000px;}
.y176{bottom:617.145000px;}
.yc8{bottom:618.765000px;}
.y6c{bottom:622.545000px;}
.y43{bottom:627.045000px;}
.ya9{bottom:627.225000px;}
.y91{bottom:627.765000px;}
.y11e{bottom:628.485000px;}
.ye7{bottom:629.205000px;}
.y196{bottom:633.705000px;}
.y175{bottom:635.685000px;}
.y1b5{bottom:635.865000px;}
.yc7{bottom:638.205000px;}
.y6b{bottom:641.985000px;}
.y42{bottom:646.485000px;}
.y90{bottom:647.205000px;}
.y11d{bottom:647.745000px;}
.y174{bottom:652.785000px;}
.ye6{bottom:652.965000px;}
.y195{bottom:653.145000px;}
.yc6{bottom:657.465000px;}
.y6a{bottom:661.245000px;}
.ye{bottom:665.385000px;}
.y41{bottom:665.745000px;}
.y8f{bottom:666.465000px;}
.y11c{bottom:667.185000px;}
.y173{bottom:672.225000px;}
.y194{bottom:672.405000px;}
.yc5{bottom:676.905000px;}
.y69{bottom:680.685000px;}
.ye5{bottom:681.225000px;}
.y40{bottom:685.185000px;}
.y8e{bottom:685.725000px;}
.y103{bottom:685.905000px;}
.y11b{bottom:686.445000px;}
.y172{bottom:691.485000px;}
.y1b4{bottom:691.665000px;}
.y193{bottom:691.845000px;}
.yc4{bottom:696.165000px;}
.y68{bottom:699.945000px;}
.ye4{bottom:700.665000px;}
.y3f{bottom:704.445000px;}
.y8d{bottom:705.165000px;}
.y11a{bottom:705.705000px;}
.y1b3{bottom:710.205000px;}
.y171{bottom:710.925000px;}
.y192{bottom:711.105000px;}
.yc3{bottom:715.605000px;}
.ya{bottom:716.505000px;}
.y67{bottom:719.385000px;}
.ye3{bottom:719.925000px;}
.y3e{bottom:723.705000px;}
.ya8{bottom:723.885000px;}
.y8c{bottom:724.425000px;}
.y102{bottom:724.605000px;}
.y119{bottom:725.145000px;}
.y1b2{bottom:727.485000px;}
.y170{bottom:730.185000px;}
.y191{bottom:730.365000px;}
.yc2{bottom:734.865000px;}
.y66{bottom:738.645000px;}
.ye2{bottom:739.365000px;}
.y3d{bottom:743.145000px;}
.y8b{bottom:743.865000px;}
.y118{bottom:744.405000px;}
.y1b1{bottom:746.745000px;}
.y16f{bottom:749.625000px;}
.y190{bottom:749.805000px;}
.yc1{bottom:754.350000px;}
.y65{bottom:758.130000px;}
.ye1{bottom:758.670000px;}
.y3c{bottom:762.450000px;}
.ya7{bottom:762.630000px;}
.y8a{bottom:763.170000px;}
.y101{bottom:763.350000px;}
.y117{bottom:763.890000px;}
.y1b0{bottom:766.230000px;}
.y16e{bottom:768.390000px;}
.yc0{bottom:773.610000px;}
.y3b{bottom:781.890000px;}
.y89{bottom:782.610000px;}
.y116{bottom:782.970000px;}
.y64{bottom:785.490000px;}
.y18f{bottom:785.670000px;}
.ybf{bottom:793.050000px;}
.y145{bottom:795.390000px;}
.y63{bottom:800.970000px;}
.y3a{bottom:801.150000px;}
.ya6{bottom:801.330000px;}
.y88{bottom:801.870000px;}
.y100{bottom:802.050000px;}
.y16d{bottom:802.230000px;}
.y18e{bottom:804.930000px;}
.y144{bottom:809.970000px;}
.ybe{bottom:812.310000px;}
.y62{bottom:816.450000px;}
.y39{bottom:820.590000px;}
.y87{bottom:821.310000px;}
.y18d{bottom:824.190000px;}
.y61{bottom:831.930000px;}
.y16c{bottom:838.950000px;}
.y38{bottom:839.850000px;}
.ya5{bottom:840.030000px;}
.y86{bottom:840.570000px;}
.ybd{bottom:840.750000px;}
.y1af{bottom:842.730000px;}
.y18c{bottom:842.910000px;}
.y60{bottom:847.410000px;}
.y16b{bottom:857.310000px;}
.y37{bottom:858.930000px;}
.ya4{bottom:859.110000px;}
.y85{bottom:860.010000px;}
.y5f{bottom:862.890000px;}
.y32{bottom:881.070000px;}
.y5{bottom:890.250000px;}
.y5e{bottom:910.770000px;}
.y35{bottom:910.950000px;}
.y31{bottom:916.350000px;}
.y5d{bottom:916.530000px;}
.y4{bottom:917.070000px;}
.y3{bottom:929.850000px;}
.y2{bottom:942.660000px;}
.y30{bottom:943.740000px;}
.y5c{bottom:943.920000px;}
.y1{bottom:956.160000px;}
.h19{height:17.460000px;}
.h1b{height:17.496000px;}
.h1a{height:17.640000px;}
.h11{height:23.580000px;}
.h18{height:23.760000px;}
.h3{height:41.780391px;}
.h2{height:42.330937px;}
.h9{height:48.263555px;}
.h12{height:48.899531px;}
.h8{height:51.120000px;}
.h14{height:51.144961px;}
.hb{height:54.026367px;}
.ha{height:54.738281px;}
.hf{height:55.503491px;}
.h4{height:57.636562px;}
.h15{height:60.577031px;}
.h13{height:67.145625px;}
.h17{height:68.084282px;}
.hc{height:70.020000px;}
.h7{height:72.035156px;}
.h16{height:74.004654px;}
.h10{height:83.322422px;}
.h6{height:91.230469px;}
.h5{height:170.130000px;}
.hd{height:202.890000px;}
.he{height:212.115000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w4{width:30.960000px;}
.w5{width:37.080000px;}
.w9{width:85.860000px;}
.w8{width:85.896000px;}
.w7{width:86.040000px;}
.w6{width:200.370000px;}
.w3{width:552.705000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:7.920000px;}
.x19{left:13.500000px;}
.x10{left:20.160000px;}
.x1d{left:38.700000px;}
.x1e{left:42.870000px;}
.x17{left:57.960000px;}
.x7{left:77.076000px;}
.x5{left:84.995989px;}
.xe{left:95.255989px;}
.x12{left:98.315989px;}
.x9{left:106.235989px;}
.xc{left:114.336000px;}
.xd{left:127.475989px;}
.x11{left:138.095989px;}
.x16{left:144.395989px;}
.x6{left:178.589989px;}
.x15{left:260.354989px;}
.x18{left:286.635000px;}
.x13{left:338.654989px;}
.xb{left:361.334989px;}
.x1a{left:373.395000px;}
.xa{left:378.614989px;}
.x2{left:381.854989px;}
.x4{left:428.144989px;}
.x1b{left:460.005000px;}
.x3{left:483.584989px;}
.x1{left:511.124989px;}
.x1c{left:546.630000px;}
.xf{left:565.530000px;}
.x14{left:638.429989px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v4{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.200000pt;}
.v1{vertical-align:12.800000pt;}
.ls11{letter-spacing:-2.592000pt;}
.ls10{letter-spacing:-2.368000pt;}
.ls1a{letter-spacing:-0.826667pt;}
.ls42{letter-spacing:-0.805333pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls47{letter-spacing:-0.509333pt;}
.lsa{letter-spacing:-0.391467pt;}
.ls38{letter-spacing:-0.363733pt;}
.lsb{letter-spacing:-0.267733pt;}
.ls37{letter-spacing:-0.258667pt;}
.ls45{letter-spacing:-0.214933pt;}
.lsc{letter-spacing:-0.212267pt;}
.ls34{letter-spacing:-0.208000pt;}
.ls24{letter-spacing:-0.207467pt;}
.ls4{letter-spacing:-0.202133pt;}
.ls15{letter-spacing:-0.197333pt;}
.ls28{letter-spacing:-0.184533pt;}
.ls51{letter-spacing:-0.176000pt;}
.ls36{letter-spacing:-0.163733pt;}
.ls46{letter-spacing:-0.156267pt;}
.ls50{letter-spacing:-0.153600pt;}
.ls43{letter-spacing:-0.135467pt;}
.ls29{letter-spacing:-0.133333pt;}
.ls44{letter-spacing:-0.130667pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.099733pt;}
.ls22{letter-spacing:-0.092267pt;}
.ls4c{letter-spacing:-0.084267pt;}
.ls35{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.071467pt;}
.ls17{letter-spacing:-0.008320pt;}
.ls8{letter-spacing:-0.000005pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.020480pt;}
.ls39{letter-spacing:0.040107pt;}
.ls14{letter-spacing:0.061333pt;}
.ls2e{letter-spacing:0.061440pt;}
.ls3b{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.066667pt;}
.ls0{letter-spacing:0.071467pt;}
.ls2a{letter-spacing:0.079467pt;}
.ls31{letter-spacing:0.084267pt;}
.ls49{letter-spacing:0.084480pt;}
.lse{letter-spacing:0.089600pt;}
.ls27{letter-spacing:0.099733pt;}
.ls4f{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.130560pt;}
.ls41{letter-spacing:0.130667pt;}
.ls4e{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.172800pt;}
.ls52{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.182933pt;}
.ls40{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.222720pt;}
.ls48{letter-spacing:0.222933pt;}
.ls12{letter-spacing:0.232533pt;}
.ls3a{letter-spacing:0.235520pt;}
.ls53{letter-spacing:0.235733pt;}
.ls9{letter-spacing:0.248533pt;}
.ls33{letter-spacing:0.271467pt;}
.ls13{letter-spacing:0.276267pt;}
.ls2d{letter-spacing:0.276480pt;}
.ls4b{letter-spacing:0.284160pt;}
.ls2f{letter-spacing:0.298667pt;}
.ls4d{letter-spacing:0.299733pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.427733pt;}
.ls32{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.486400pt;}
.ls7{letter-spacing:0.570667pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls4a{letter-spacing:0.704000pt;}
.ls21{letter-spacing:5.391360pt;}
.ls25{letter-spacing:6.886400pt;}
.ls20{letter-spacing:8.591360pt;}
.ls18{letter-spacing:8.806400pt;}
.ls1c{letter-spacing:10.726400pt;}
.ls1d{letter-spacing:14.351360pt;}
.ls1b{letter-spacing:14.991360pt;}
.lsd{letter-spacing:19.543040pt;}
.ls1e{letter-spacing:32.911360pt;}
.ls1f{letter-spacing:40.591360pt;}
.ls1{letter-spacing:754.794667pt;}
.ws17{word-spacing:-58.880000pt;}
.wsc{word-spacing:-48.000000pt;}
.ws0{word-spacing:-37.120000pt;}
.ws4{word-spacing:-27.360000pt;}
.ws5{word-spacing:-22.528000pt;}
.wsf{word-spacing:-19.537707pt;}
.ws14{word-spacing:-18.158720pt;}
.ws12{word-spacing:-16.896000pt;}
.wsb{word-spacing:-16.416000pt;}
.ws21{word-spacing:-16.208000pt;}
.ws1b{word-spacing:-16.094613pt;}
.ws13{word-spacing:-15.895147pt;}
.ws6{word-spacing:-15.342293pt;}
.ws7{word-spacing:-15.093760pt;}
.wse{word-spacing:-14.897493pt;}
.ws8{word-spacing:-14.702293pt;}
.wsd{word-spacing:-14.528000pt;}
.ws33{word-spacing:-13.253333pt;}
.ws3{word-spacing:-13.249173pt;}
.ws30{word-spacing:-13.229867pt;}
.ws20{word-spacing:-13.225067pt;}
.ws35{word-spacing:-13.189333pt;}
.ws2e{word-spacing:-13.176533pt;}
.ws1{word-spacing:-13.137707pt;}
.ws2d{word-spacing:-13.084267pt;}
.ws2{word-spacing:-13.066240pt;}
.ws22{word-spacing:-13.037867pt;}
.ws1d{word-spacing:-13.033067pt;}
.ws19{word-spacing:-13.020267pt;}
.ws29{word-spacing:-13.017600pt;}
.ws10{word-spacing:-13.014933pt;}
.ws11{word-spacing:-12.974080pt;}
.ws32{word-spacing:-12.966400pt;}
.ws16{word-spacing:-12.953600pt;}
.ws31{word-spacing:-12.869333pt;}
.ws18{word-spacing:-12.861333pt;}
.ws2a{word-spacing:-12.822933pt;}
.ws1c{word-spacing:-12.820267pt;}
.ws28{word-spacing:-12.818133pt;}
.ws2b{word-spacing:-12.797333pt;}
.ws23{word-spacing:-12.789867pt;}
.ws1f{word-spacing:-12.751467pt;}
.ws1a{word-spacing:-12.746133pt;}
.ws9{word-spacing:-12.695040pt;}
.ws24{word-spacing:-12.694933pt;}
.ws25{word-spacing:-12.589867pt;}
.ws2c{word-spacing:-12.444267pt;}
.ws15{word-spacing:-12.377600pt;}
.ws27{word-spacing:-12.148267pt;}
.ws2f{word-spacing:-10.752000pt;}
.ws34{word-spacing:-10.736000pt;}
.ws1e{word-spacing:-10.560000pt;}
.ws26{word-spacing:-10.480000pt;}
.wsa{word-spacing:0.000000pt;}
._d{margin-left:-3.424000pt;}
._c{margin-left:-2.336000pt;}
._5{margin-left:-1.114880pt;}
._0{width:1.017600pt;}
._4{width:2.336427pt;}
._8{width:3.304960pt;}
._9{width:4.380160pt;}
._a{width:5.440000pt;}
._b{width:6.974720pt;}
._e{width:8.073600pt;}
._2{width:9.130453pt;}
._1{width:10.087680pt;}
._17{width:11.567787pt;}
._1d{width:12.534827pt;}
._14{width:14.304000pt;}
._13{width:15.249920pt;}
._15{width:16.398507pt;}
._16{width:17.544533pt;}
._22{width:18.778880pt;}
._12{width:19.724800pt;}
._1a{width:21.491200pt;}
._19{width:23.022080pt;}
._23{width:23.964160pt;}
._1e{width:24.906240pt;}
._18{width:25.991680pt;}
._1f{width:27.343360pt;}
._11{width:28.321280pt;}
._f{width:29.263360pt;}
._10{width:30.496000pt;}
._1b{width:32.144640pt;}
._24{width:34.562560pt;}
._1c{width:36.089600pt;}
._25{width:37.918720pt;}
._20{width:39.715840pt;}
._21{width:40.674560pt;}
._3{width:41.587200pt;}
._6{width:43.893760pt;}
._7{width:45.783467pt;}
.fs7{font-size:16.000000pt;}
.fs0{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fsb{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs8{font-size:85.120000pt;}
.y11{bottom:-14.240000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.240000pt;}
.y160{bottom:3.360000pt;}
.y163{bottom:3.520000pt;}
.y16{bottom:5.600000pt;}
.y15e{bottom:6.400000pt;}
.y10{bottom:10.400000pt;}
.y15{bottom:18.560000pt;}
.yf{bottom:26.720000pt;}
.y22{bottom:27.040000pt;}
.y14{bottom:31.680000pt;}
.y2e{bottom:35.226667pt;}
.y9{bottom:44.160000pt;}
.y13{bottom:44.640000pt;}
.y34{bottom:45.440000pt;}
.y21{bottom:46.720000pt;}
.y2d{bottom:54.906667pt;}
.y20{bottom:59.680000pt;}
.y8{bottom:63.360000pt;}
.yd{bottom:65.640000pt;}
.y33{bottom:67.360000pt;}
.y2c{bottom:67.866667pt;}
.y1f{bottom:72.800000pt;}
.y7{bottom:74.720000pt;}
.y2b{bottom:80.986667pt;}
.y1e{bottom:85.760000pt;}
.y6{bottom:86.080000pt;}
.y2a{bottom:94.106667pt;}
.yc{bottom:95.080000pt;}
.y1d{bottom:98.880000pt;}
.y29{bottom:107.066667pt;}
.y1c{bottom:111.840000pt;}
.y28{bottom:120.186667pt;}
.y16a{bottom:120.320000pt;}
.yb{bottom:121.800000pt;}
.ybc{bottom:122.240000pt;}
.yff{bottom:123.520000pt;}
.y115{bottom:124.160000pt;}
.y1b{bottom:124.960000pt;}
.y143{bottom:125.760000pt;}
.y5b{bottom:128.000000pt;}
.y13c{bottom:128.160000pt;}
.y155{bottom:129.120000pt;}
.ye0{bottom:129.280000pt;}
.y18b{bottom:131.680000pt;}
.y137{bottom:133.120000pt;}
.y27{bottom:133.146667pt;}
.y169{bottom:136.640000pt;}
.y1a{bottom:137.920000pt;}
.ybb{bottom:139.520000pt;}
.yfe{bottom:140.640000pt;}
.y1ae{bottom:141.120000pt;}
.y114{bottom:141.280000pt;}
.y142{bottom:143.040000pt;}
.y84{bottom:144.960000pt;}
.y5a{bottom:145.120000pt;}
.yab{bottom:145.280000pt;}
.y154{bottom:146.240000pt;}
.y26{bottom:146.266667pt;}
.ydf{bottom:146.560000pt;}
.y2f{bottom:148.320000pt;}
.y18a{bottom:148.800000pt;}
.y136{bottom:150.400000pt;}
.y19{bottom:151.040000pt;}
.y168{bottom:152.960000pt;}
.yba{bottom:156.640000pt;}
.yfd{bottom:157.760000pt;}
.y1ad{bottom:158.400000pt;}
.y113{bottom:158.560000pt;}
.y25{bottom:159.226667pt;}
.y141{bottom:160.160000pt;}
.y23{bottom:160.320000pt;}
.y83{bottom:162.240000pt;}
.y59{bottom:162.400000pt;}
.y13b{bottom:162.560000pt;}
.y153{bottom:163.520000pt;}
.yde{bottom:163.680000pt;}
.y18{bottom:164.186667pt;}
.y1c3{bottom:165.280000pt;}
.y189{bottom:166.080000pt;}
.y135{bottom:167.520000pt;}
.y167{bottom:169.280000pt;}
.y24{bottom:172.346667pt;}
.yb9{bottom:173.760000pt;}
.y1ac{bottom:174.880000pt;}
.yfc{bottom:175.040000pt;}
.y112{bottom:175.680000pt;}
.y82{bottom:179.360000pt;}
.y58{bottom:179.520000pt;}
.ya3{bottom:179.680000pt;}
.y152{bottom:180.640000pt;}
.ydd{bottom:180.960000pt;}
.y188{bottom:183.226667pt;}
.y140{bottom:184.506667pt;}
.y134{bottom:184.826667pt;}
.y166{bottom:185.466667pt;}
.y1ab{bottom:190.106667pt;}
.yb8{bottom:191.066667pt;}
.y1d4{bottom:191.866667pt;}
.yfb{bottom:192.186667pt;}
.y111{bottom:192.986667pt;}
.y81{bottom:196.186667pt;}
.y57{bottom:196.826667pt;}
.y13a{bottom:196.986667pt;}
.y1c2{bottom:197.786667pt;}
.y151{bottom:197.946667pt;}
.ydc{bottom:198.106667pt;}
.y13f{bottom:198.266667pt;}
.y187{bottom:199.706667pt;}
.y165{bottom:201.786667pt;}
.y133{bottom:201.946667pt;}
.y1d3{bottom:207.226667pt;}
.y1aa{bottom:207.386667pt;}
.yfa{bottom:209.466667pt;}
.y110{bottom:210.106667pt;}
.y13e{bottom:212.186667pt;}
.y56{bottom:213.946667pt;}
.ya2{bottom:214.106667pt;}
.y150{bottom:215.066667pt;}
.ydb{bottom:215.386667pt;}
.yb7{bottom:216.186667pt;}
.y164{bottom:218.106667pt;}
.y1a9{bottom:224.506667pt;}
.y13d{bottom:225.946667pt;}
.y132{bottom:226.266667pt;}
.yf9{bottom:226.586667pt;}
.y10f{bottom:227.386667pt;}
.y80{bottom:228.026667pt;}
.y55{bottom:231.226667pt;}
.y139{bottom:231.386667pt;}
.y186{bottom:232.186667pt;}
.y14f{bottom:232.346667pt;}
.yda{bottom:232.506667pt;}
.yb6{bottom:233.466667pt;}
.y162{bottom:234.426667pt;}
.y131{bottom:240.026667pt;}
.y7f{bottom:241.786667pt;}
.yf8{bottom:243.866667pt;}
.y10e{bottom:244.506667pt;}
.y54{bottom:248.346667pt;}
.ya1{bottom:248.506667pt;}
.y14e{bottom:249.466667pt;}
.y1d2{bottom:249.626667pt;}
.yd9{bottom:249.786667pt;}
.yb5{bottom:250.586667pt;}
.y161{bottom:250.746667pt;}
.y130{bottom:253.786667pt;}
.y7e{bottom:255.546667pt;}
.y1a8{bottom:258.266667pt;}
.yf7{bottom:260.986667pt;}
.y10d{bottom:261.786667pt;}
.y53{bottom:265.626667pt;}
.y138{bottom:265.786667pt;}
.y185{bottom:266.586667pt;}
.y14d{bottom:266.746667pt;}
.yd8{bottom:266.906667pt;}
.y15f{bottom:267.066667pt;}
.y12f{bottom:267.546667pt;}
.yb4{bottom:267.866667pt;}
.y7d{bottom:269.306667pt;}
.y1a7{bottom:273.466667pt;}
.yf6{bottom:278.266667pt;}
.y10c{bottom:278.906667pt;}
.y12e{bottom:281.466667pt;}
.y52{bottom:282.746667pt;}
.ya0{bottom:282.906667pt;}
.y7c{bottom:283.066667pt;}
.y15d{bottom:283.226667pt;}
.y1c1{bottom:283.706667pt;}
.y14c{bottom:283.866667pt;}
.yd7{bottom:284.026667pt;}
.yb3{bottom:284.986667pt;}
.y1a6{bottom:290.746667pt;}
.y12d{bottom:295.226667pt;}
.yf5{bottom:295.386667pt;}
.y10b{bottom:296.026667pt;}
.y7b{bottom:296.826667pt;}
.y184{bottom:298.426667pt;}
.y51{bottom:300.026667pt;}
.y1c0{bottom:300.346667pt;}
.y1d1{bottom:300.506667pt;}
.y14b{bottom:300.986667pt;}
.yd6{bottom:301.306667pt;}
.yb2{bottom:302.266667pt;}
.y15c{bottom:307.706667pt;}
.y1a5{bottom:307.866667pt;}
.y7a{bottom:310.586667pt;}
.yf4{bottom:312.666667pt;}
.y10a{bottom:313.306667pt;}
.y183{bottom:315.546667pt;}
.y1d0{bottom:315.706667pt;}
.y50{bottom:316.986667pt;}
.y9f{bottom:317.306667pt;}
.y12c{bottom:317.786667pt;}
.y14a{bottom:318.266667pt;}
.yd5{bottom:318.426667pt;}
.yb1{bottom:319.386667pt;}
.y15b{bottom:323.866667pt;}
.y79{bottom:324.346667pt;}
.y1a4{bottom:325.146667pt;}
.yf3{bottom:329.786667pt;}
.y182{bottom:332.826667pt;}
.y1cf{bottom:332.986667pt;}
.y9e{bottom:334.426667pt;}
.y12b{bottom:335.066667pt;}
.y149{bottom:335.386667pt;}
.yd4{bottom:335.706667pt;}
.yb0{bottom:336.666667pt;}
.y1a3{bottom:342.266667pt;}
.yf2{bottom:346.466667pt;}
.y78{bottom:347.106667pt;}
.y17{bottom:348.866667pt;}
.y181{bottom:349.346667pt;}
.y1bf{bottom:349.986667pt;}
.y1ce{bottom:350.146667pt;}
.y4f{bottom:351.106667pt;}
.y9d{bottom:351.586667pt;}
.y109{bottom:351.746667pt;}
.y12a{bottom:352.226667pt;}
.y148{bottom:352.386667pt;}
.yd3{bottom:352.866667pt;}
.yaf{bottom:353.826667pt;}
.y15a{bottom:356.706667pt;}
.y1a2{bottom:359.586667pt;}
.y77{bottom:364.226667pt;}
.y180{bottom:364.546667pt;}
.y1cd{bottom:366.626667pt;}
.y1be{bottom:367.106667pt;}
.y4e{bottom:368.226667pt;}
.y9c{bottom:368.866667pt;}
.y129{bottom:369.346667pt;}
.yd2{bottom:370.146667pt;}
.yae{bottom:371.106667pt;}
.y159{bottom:373.826667pt;}
.y1a1{bottom:376.066667pt;}
.yf1{bottom:379.266667pt;}
.y76{bottom:381.506667pt;}
.y17f{bottom:381.826667pt;}
.y1cc{bottom:381.986667pt;}
.y1bd{bottom:383.746667pt;}
.y4d{bottom:385.346667pt;}
.y147{bottom:385.506667pt;}
.y9b{bottom:385.986667pt;}
.y108{bottom:386.146667pt;}
.y128{bottom:386.626667pt;}
.yd1{bottom:387.266667pt;}
.yad{bottom:388.226667pt;}
.y158{bottom:390.466667pt;}
.y1a0{bottom:391.266667pt;}
.yf0{bottom:396.386667pt;}
.y17e{bottom:398.306667pt;}
.y75{bottom:398.626667pt;}
.y1bc{bottom:398.946667pt;}
.y1cb{bottom:399.106667pt;}
.y4c{bottom:402.626667pt;}
.y9a{bottom:403.266667pt;}
.y127{bottom:403.746667pt;}
.yac{bottom:404.866667pt;}
.y19f{bottom:408.546667pt;}
.yd0{bottom:412.546667pt;}
.y17d{bottom:413.506667pt;}
.yef{bottom:413.666667pt;}
.y146{bottom:414.786667pt;}
.y1ca{bottom:415.746667pt;}
.y74{bottom:415.906667pt;}
.y1bb{bottom:416.226667pt;}
.y4b{bottom:419.746667pt;}
.y99{bottom:420.386667pt;}
.y107{bottom:420.546667pt;}
.y126{bottom:421.026667pt;}
.y157{bottom:423.266667pt;}
.y19e{bottom:425.666667pt;}
.ycf{bottom:429.666667pt;}
.yee{bottom:430.786667pt;}
.y1c9{bottom:430.946667pt;}
.y73{bottom:433.026667pt;}
.y1ba{bottom:433.346667pt;}
.y4a{bottom:437.026667pt;}
.y98{bottom:437.666667pt;}
.y125{bottom:438.146667pt;}
.y156{bottom:439.906667pt;}
.y19d{bottom:442.946667pt;}
.yce{bottom:446.946667pt;}
.y17c{bottom:447.906667pt;}
.yed{bottom:448.066667pt;}
.y1b9{bottom:449.826667pt;}
.y72{bottom:450.146667pt;}
.y49{bottom:454.146667pt;}
.y97{bottom:454.786667pt;}
.y106{bottom:454.946667pt;}
.y124{bottom:455.426667pt;}
.y19c{bottom:460.066667pt;}
.ycd{bottom:464.066667pt;}
.y17b{bottom:464.546667pt;}
.y1c8{bottom:464.706667pt;}
.yec{bottom:465.186667pt;}
.y71{bottom:467.426667pt;}
.y48{bottom:471.426667pt;}
.y96{bottom:472.066667pt;}
.y123{bottom:472.546667pt;}
.y19b{bottom:477.346667pt;}
.y17a{bottom:479.746667pt;}
.y1c7{bottom:479.906667pt;}
.ycc{bottom:481.346667pt;}
.y1b8{bottom:482.306667pt;}
.y70{bottom:484.546667pt;}
.yeb{bottom:486.466667pt;}
.y47{bottom:488.546667pt;}
.y95{bottom:489.186667pt;}
.y105{bottom:489.346667pt;}
.y122{bottom:489.826667pt;}
.y19a{bottom:494.466667pt;}
.y179{bottom:496.866667pt;}
.y1c6{bottom:497.186667pt;}
.ycb{bottom:498.466667pt;}
.y1b7{bottom:499.586667pt;}
.y6f{bottom:501.826667pt;}
.yea{bottom:503.586667pt;}
.y46{bottom:505.826667pt;}
.y94{bottom:506.466667pt;}
.y121{bottom:506.973333pt;}
.y199{bottom:511.773333pt;}
.y178{bottom:514.173333pt;}
.y1c5{bottom:514.333333pt;}
.yca{bottom:515.773333pt;}
.y1b6{bottom:516.093333pt;}
.y6e{bottom:518.973333pt;}
.y45{bottom:522.973333pt;}
.yaa{bottom:523.453333pt;}
.y93{bottom:523.613333pt;}
.y104{bottom:523.773333pt;}
.y120{bottom:524.253333pt;}
.ye9{bottom:524.893333pt;}
.y198{bottom:528.893333pt;}
.y12{bottom:529.213333pt;}
.y1c4{bottom:530.813333pt;}
.y177{bottom:531.293333pt;}
.yc9{bottom:532.893333pt;}
.y6d{bottom:536.253333pt;}
.y44{bottom:540.253333pt;}
.y92{bottom:540.893333pt;}
.y11f{bottom:541.373333pt;}
.ye8{bottom:542.013333pt;}
.y197{bottom:546.173333pt;}
.y176{bottom:548.573333pt;}
.yc8{bottom:550.013333pt;}
.y6c{bottom:553.373333pt;}
.y43{bottom:557.373333pt;}
.ya9{bottom:557.533333pt;}
.y91{bottom:558.013333pt;}
.y11e{bottom:558.653333pt;}
.ye7{bottom:559.293333pt;}
.y196{bottom:563.293333pt;}
.y175{bottom:565.053333pt;}
.y1b5{bottom:565.213333pt;}
.yc7{bottom:567.293333pt;}
.y6b{bottom:570.653333pt;}
.y42{bottom:574.653333pt;}
.y90{bottom:575.293333pt;}
.y11d{bottom:575.773333pt;}
.y174{bottom:580.253333pt;}
.ye6{bottom:580.413333pt;}
.y195{bottom:580.573333pt;}
.yc6{bottom:584.413333pt;}
.y6a{bottom:587.773333pt;}
.ye{bottom:591.453333pt;}
.y41{bottom:591.773333pt;}
.y8f{bottom:592.413333pt;}
.y11c{bottom:593.053333pt;}
.y173{bottom:597.533333pt;}
.y194{bottom:597.693333pt;}
.yc5{bottom:601.693333pt;}
.y69{bottom:605.053333pt;}
.ye5{bottom:605.533333pt;}
.y40{bottom:609.053333pt;}
.y8e{bottom:609.533333pt;}
.y103{bottom:609.693333pt;}
.y11b{bottom:610.173333pt;}
.y172{bottom:614.653333pt;}
.y1b4{bottom:614.813333pt;}
.y193{bottom:614.973333pt;}
.yc4{bottom:618.813333pt;}
.y68{bottom:622.173333pt;}
.ye4{bottom:622.813333pt;}
.y3f{bottom:626.173333pt;}
.y8d{bottom:626.813333pt;}
.y11a{bottom:627.293333pt;}
.y1b3{bottom:631.293333pt;}
.y171{bottom:631.933333pt;}
.y192{bottom:632.093333pt;}
.yc3{bottom:636.093333pt;}
.ya{bottom:636.893333pt;}
.y67{bottom:639.453333pt;}
.ye3{bottom:639.933333pt;}
.y3e{bottom:643.293333pt;}
.ya8{bottom:643.453333pt;}
.y8c{bottom:643.933333pt;}
.y102{bottom:644.093333pt;}
.y119{bottom:644.573333pt;}
.y1b2{bottom:646.653333pt;}
.y170{bottom:649.053333pt;}
.y191{bottom:649.213333pt;}
.yc2{bottom:653.213333pt;}
.y66{bottom:656.573333pt;}
.ye2{bottom:657.213333pt;}
.y3d{bottom:660.573333pt;}
.y8b{bottom:661.213333pt;}
.y118{bottom:661.693333pt;}
.y1b1{bottom:663.773333pt;}
.y16f{bottom:666.333333pt;}
.y190{bottom:666.493333pt;}
.yc1{bottom:670.533333pt;}
.y65{bottom:673.893333pt;}
.ye1{bottom:674.373333pt;}
.y3c{bottom:677.733333pt;}
.ya7{bottom:677.893333pt;}
.y8a{bottom:678.373333pt;}
.y101{bottom:678.533333pt;}
.y117{bottom:679.013333pt;}
.y1b0{bottom:681.093333pt;}
.y16e{bottom:683.013333pt;}
.yc0{bottom:687.653333pt;}
.y3b{bottom:695.013333pt;}
.y89{bottom:695.653333pt;}
.y116{bottom:695.973333pt;}
.y64{bottom:698.213333pt;}
.y18f{bottom:698.373333pt;}
.ybf{bottom:704.933333pt;}
.y145{bottom:707.013333pt;}
.y63{bottom:711.973333pt;}
.y3a{bottom:712.133333pt;}
.ya6{bottom:712.293333pt;}
.y88{bottom:712.773333pt;}
.y100{bottom:712.933333pt;}
.y16d{bottom:713.093333pt;}
.y18e{bottom:715.493333pt;}
.y144{bottom:719.973333pt;}
.ybe{bottom:722.053333pt;}
.y62{bottom:725.733333pt;}
.y39{bottom:729.413333pt;}
.y87{bottom:730.053333pt;}
.y18d{bottom:732.613333pt;}
.y61{bottom:739.493333pt;}
.y16c{bottom:745.733333pt;}
.y38{bottom:746.533333pt;}
.ya5{bottom:746.693333pt;}
.y86{bottom:747.173333pt;}
.ybd{bottom:747.333333pt;}
.y1af{bottom:749.093333pt;}
.y18c{bottom:749.253333pt;}
.y60{bottom:753.253333pt;}
.y16b{bottom:762.053333pt;}
.y37{bottom:763.493333pt;}
.ya4{bottom:763.653333pt;}
.y85{bottom:764.453333pt;}
.y5f{bottom:767.013333pt;}
.y32{bottom:783.173333pt;}
.y5{bottom:791.333333pt;}
.y5e{bottom:809.573333pt;}
.y35{bottom:809.733333pt;}
.y31{bottom:814.533333pt;}
.y5d{bottom:814.693333pt;}
.y4{bottom:815.173333pt;}
.y3{bottom:826.533333pt;}
.y2{bottom:837.920000pt;}
.y30{bottom:838.880000pt;}
.y5c{bottom:839.040000pt;}
.y1{bottom:849.920000pt;}
.h19{height:15.520000pt;}
.h1b{height:15.552000pt;}
.h1a{height:15.680000pt;}
.h11{height:20.960000pt;}
.h18{height:21.120000pt;}
.h3{height:37.138125pt;}
.h2{height:37.627500pt;}
.h9{height:42.900937pt;}
.h12{height:43.466250pt;}
.h8{height:45.440000pt;}
.h14{height:45.462187pt;}
.hb{height:48.023438pt;}
.ha{height:48.656250pt;}
.hf{height:49.336436pt;}
.h4{height:51.232500pt;}
.h15{height:53.846250pt;}
.h13{height:59.685000pt;}
.h17{height:60.519362pt;}
.hc{height:62.240000pt;}
.h7{height:64.031250pt;}
.h16{height:65.781915pt;}
.h10{height:74.064375pt;}
.h6{height:81.093750pt;}
.h5{height:151.226667pt;}
.hd{height:180.346667pt;}
.he{height:188.546667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w4{width:27.520000pt;}
.w5{width:32.960000pt;}
.w9{width:76.320000pt;}
.w8{width:76.352000pt;}
.w7{width:76.480000pt;}
.w6{width:178.106667pt;}
.w3{width:491.293333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:7.040000pt;}
.x19{left:12.000000pt;}
.x10{left:17.920000pt;}
.x1d{left:34.400000pt;}
.x1e{left:38.106667pt;}
.x17{left:51.520000pt;}
.x7{left:68.512000pt;}
.x5{left:75.551990pt;}
.xe{left:84.671990pt;}
.x12{left:87.391990pt;}
.x9{left:94.431990pt;}
.xc{left:101.632000pt;}
.xd{left:113.311990pt;}
.x11{left:122.751990pt;}
.x16{left:128.351990pt;}
.x6{left:158.746657pt;}
.x15{left:231.426657pt;}
.x18{left:254.786667pt;}
.x13{left:301.026657pt;}
.xb{left:321.186657pt;}
.x1a{left:331.906667pt;}
.xa{left:336.546657pt;}
.x2{left:339.426657pt;}
.x4{left:380.573324pt;}
.x1b{left:408.893333pt;}
.x3{left:429.853324pt;}
.x1{left:454.333324pt;}
.x1c{left:485.893333pt;}
.xf{left:502.693333pt;}
.x14{left:567.493324pt;}
}

