
    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_99e5563d0cd01f2ac89fcef4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_1b62ec4d80b9a66632fe012a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.767090;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_551e88323e04c2bc6e80ef75.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_b1bfc8fc6a729f153c0a4184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d1f5a83f9f3d7f090064ed50.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b790fb72711f0815f6558dd3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_d618cf0ac58b11f5f5dd52f9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_8bd7172730d46a4567686080.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3c2a201da1193908e15f3879.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_88587b83a5df63ed7b751d3a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_0b1832b559bc0f15f2360e16.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_a3216836e21734bd3a6fee1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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_ec54bf81bd2460841bcb0cfb.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d9ef218d455eb47ced1af42b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.249892,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249892,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249892,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v4{vertical-align:-63.360000px;}
.v5{vertical-align:-27.047688px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.640000px;}
.v6{vertical-align:40.424521px;}
.ls2d{letter-spacing:-0.974355px;}
.ls27{letter-spacing:-0.973988px;}
.ls9{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.406200px;}
.lsf{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.164400px;}
.ls2{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.115200px;}
.ls3a{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.037440px;}
.ls21{letter-spacing:-0.025920px;}
.ls2e{letter-spacing:-0.023887px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.149760px;}
.ls35{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.216000px;}
.lse{letter-spacing:0.247800px;}
.ls3{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.427680px;}
.ls14{letter-spacing:1.152000px;}
.ls36{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.635797px;}
.ls25{letter-spacing:1.701112px;}
.ls19{letter-spacing:2.162160px;}
.ls16{letter-spacing:2.232000px;}
.ls10{letter-spacing:2.576880px;}
.ls1a{letter-spacing:2.882160px;}
.lsb{letter-spacing:3.296880px;}
.ls33{letter-spacing:3.600000px;}
.ls38{letter-spacing:4.320000px;}
.ls34{letter-spacing:5.040000px;}
.ls39{letter-spacing:5.760000px;}
.ls7{letter-spacing:15.269760px;}
.ls30{letter-spacing:15.660000px;}
.ls13{letter-spacing:16.272000px;}
.ls17{letter-spacing:19.728000px;}
.ls2f{letter-spacing:21.168000px;}
.ls32{letter-spacing:22.320000px;}
.ls0{letter-spacing:32.544000px;}
.ls1d{letter-spacing:51.240000px;}
.ls1b{letter-spacing:98.352000px;}
.ls18{letter-spacing:124.248000px;}
.ls11{letter-spacing:124.272000px;}
.ls2a{letter-spacing:129.248477px;}
.ls29{letter-spacing:139.829760px;}
.ls24{letter-spacing:175.829760px;}
.lsa{letter-spacing:187.344000px;}
.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;}
}
.ws1b{word-spacing:-66.240000px;}
.ws1d{word-spacing:-62.909742px;}
.ws6{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.632000px;}
.ws23{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.416000px;}
.ws15{word-spacing:-16.344000px;}
.ws0{word-spacing:-16.272000px;}
.ws25{word-spacing:-16.200000px;}
.ws14{word-spacing:-16.128000px;}
.ws8{word-spacing:-16.056000px;}
.ws12{word-spacing:-15.984000px;}
.ws9{word-spacing:-15.912000px;}
.ws7{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.768000px;}
.ws22{word-spacing:-15.696000px;}
.ws24{word-spacing:-15.624000px;}
.ws5{word-spacing:-15.552000px;}
.ws21{word-spacing:-15.272899px;}
.ws1f{word-spacing:-15.226440px;}
.ws17{word-spacing:-14.970240px;}
.ws19{word-spacing:-14.944320px;}
.ws16{word-spacing:-14.932800px;}
.ws1a{word-spacing:-14.805840px;}
.ws1c{word-spacing:-14.202240px;}
.ws1e{word-spacing:-13.748059px;}
.ws10{word-spacing:-11.246400px;}
.ws18{word-spacing:-9.437760px;}
.wsd{word-spacing:-1.008000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.216000px;}
.wsc{word-spacing:1.848000px;}
.ws11{word-spacing:3.816000px;}
.wsb{word-spacing:3.960000px;}
.wsa{word-spacing:23.472000px;}
.ws13{word-spacing:23.616000px;}
.ws20{word-spacing:51.946017px;}
._25{margin-left:-4.302106px;}
._1b{margin-left:-3.168000px;}
._0{margin-left:-1.373760px;}
._1{width:1.188000px;}
._7{width:3.096000px;}
._c{width:4.541760px;}
._3{width:5.592000px;}
._2{width:6.840000px;}
._15{width:7.848000px;}
._8{width:9.072000px;}
._9{width:10.380000px;}
._5{width:12.168000px;}
._4{width:13.320000px;}
._6{width:14.748000px;}
._18{width:17.484480px;}
._b{width:18.539520px;}
._a{width:19.848000px;}
._17{width:21.816000px;}
._16{width:22.896000px;}
._21{width:24.096000px;}
._19{width:25.128000px;}
._e{width:26.333760px;}
._d{width:27.576000px;}
._f{width:28.596000px;}
._13{width:30.168000px;}
._12{width:31.440000px;}
._10{width:32.760000px;}
._11{width:34.481760px;}
._23{width:35.496000px;}
._22{width:36.504000px;}
._24{width:37.572000px;}
._1d{width:38.808000px;}
._29{width:40.680000px;}
._1a{width:42.624000px;}
._2c{width:44.933760px;}
._2b{width:46.512000px;}
._20{width:49.032000px;}
._28{width:71.619230px;}
._27{width:85.835785px;}
._1e{width:98.172000px;}
._26{width:103.751351px;}
._2a{width:126.768000px;}
._1c{width:154.685760px;}
._1f{width:196.308000px;}
._14{width:1887.684000px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(244,67,54);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:40.495914px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:49.453449px;}
.fs4{font-size:51.120000px;}
.fs6{font-size:58.421319px;}
.fs9{font-size:58.443359px;}
.fsb{font-size:58.468582px;}
.fs7{font-size:62.909742px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y70{bottom:0.180000px;}
.y6f{bottom:1.620000px;}
.y75{bottom:3.780000px;}
.y131{bottom:3.960000px;}
.y134{bottom:4.500000px;}
.y73{bottom:4.860000px;}
.y78{bottom:4.905000px;}
.y112{bottom:5.400000px;}
.yaa{bottom:5.940000px;}
.yad{bottom:6.300000px;}
.yab{bottom:6.660000px;}
.y132{bottom:7.020000px;}
.y113{bottom:7.380000px;}
.ye5{bottom:9.000000px;}
.ye9{bottom:9.180000px;}
.y114{bottom:10.080000px;}
.y71{bottom:10.800000px;}
.y10b{bottom:11.251340px;}
.y12a{bottom:14.644824px;}
.ya8{bottom:17.280000px;}
.yb0{bottom:17.325000px;}
.ye3{bottom:23.580000px;}
.ydd{bottom:23.760000px;}
.yac{bottom:28.260000px;}
.ya9{bottom:28.620000px;}
.y10c{bottom:29.237576px;}
.ye0{bottom:29.340000px;}
.y121{bottom:33.788437px;}
.y76{bottom:37.980000px;}
.ydc{bottom:43.020000px;}
.ydf{bottom:43.200000px;}
.ye2{bottom:43.740000px;}
.ye7{bottom:43.965000px;}
.y12c{bottom:45.015973px;}
.y122{bottom:46.166566px;}
.y109{bottom:48.375095px;}
.yfe{bottom:49.497202px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.580000px;}
.yff{bottom:91.109376px;}
.y123{bottom:101.297342px;}
.y26{bottom:111.420000px;}
.y152{bottom:113.580000px;}
.y82{bottom:116.820000px;}
.y51{bottom:123.840000px;}
.ya6{bottom:127.800000px;}
.y11f{bottom:128.880000px;}
.y160{bottom:129.420000px;}
.y100{bottom:131.623007px;}
.yd9{bottom:131.940000px;}
.y25{bottom:136.800000px;}
.y151{bottom:138.780000px;}
.y81{bottom:142.200000px;}
.y50{bottom:149.040000px;}
.y18d{bottom:150.660000px;}
.y12b{bottom:150.815471px;}
.ya5{bottom:153.900000px;}
.y124{bottom:156.450568px;}
.y24{bottom:162.000000px;}
.y150{bottom:164.160000px;}
.y11e{bottom:167.040000px;}
.y80{bottom:167.400000px;}
.y15f{bottom:169.770000px;}
.y101{bottom:172.119808px;}
.y4f{bottom:174.450000px;}
.yd8{bottom:175.890000px;}
.y17c{bottom:176.070000px;}
.ya4{bottom:180.210000px;}
.y23{bottom:187.410000px;}
.y14f{bottom:189.390000px;}
.y11d{bottom:190.290000px;}
.y7f{bottom:192.630000px;}
.yc8{bottom:192.810000px;}
.yd7{bottom:197.850000px;}
.y4e{bottom:199.650000px;}
.y17b{bottom:201.270000px;}
.ya3{bottom:205.410000px;}
.y11c{bottom:205.950000px;}
.y120{bottom:206.100000px;}
.y15e{bottom:209.910000px;}
.y125{bottom:211.589201px;}
.y102{bottom:212.605387px;}
.y22{bottom:212.610000px;}
.y14e{bottom:214.770000px;}
.y18c{bottom:216.210000px;}
.y7e{bottom:217.830000px;}
.yc7{bottom:218.010000px;}
.yd6{bottom:219.810000px;}
.y4d{bottom:225.030000px;}
.y17a{bottom:226.650000px;}
.ya1{bottom:230.610000px;}
.ya2{bottom:231.330000px;}
.y15d{bottom:235.290000px;}
.y21{bottom:237.810000px;}
.y111{bottom:239.970000px;}
.y18b{bottom:241.590000px;}
.yd5{bottom:241.770000px;}
.y4c{bottom:250.230000px;}
.y103{bottom:253.102187px;}
.y9f{bottom:255.990000px;}
.ya0{bottom:256.710000px;}
.yc6{bottom:258.330000px;}
.y15c{bottom:260.490000px;}
.y7d{bottom:261.210000px;}
.y20{bottom:263.190000px;}
.yd4{bottom:263.730000px;}
.y14d{bottom:265.170000px;}
.y126{bottom:266.739060px;}
.y179{bottom:266.790000px;}
.y4b{bottom:275.430000px;}
.y6b{bottom:281.190000px;}
.y9e{bottom:281.550000px;}
.yd3{bottom:285.690000px;}
.y1f{bottom:288.390000px;}
.y178{bottom:292.170000px;}
.y104{bottom:293.610208px;}
.yc5{bottom:298.470000px;}
.y4a{bottom:300.810000px;}
.y6e{bottom:301.365000px;}
.y14c{bottom:305.490000px;}
.y6a{bottom:306.390000px;}
.y18a{bottom:307.110000px;}
.y177{bottom:317.370000px;}
.y9c{bottom:321.690000px;}
.y127{bottom:321.866468px;}
.y9d{bottom:322.410000px;}
.y6d{bottom:323.325000px;}
.yc4{bottom:323.850000px;}
.y7c{bottom:324.030000px;}
.y49{bottom:326.010000px;}
.y1e{bottom:328.710000px;}
.y14b{bottom:330.690000px;}
.y189{bottom:332.310000px;}
.y105{bottom:334.107008px;}
.y15b{bottom:340.950000px;}
.y69{bottom:346.710000px;}
.y7b{bottom:347.250000px;}
.y48{bottom:351.210000px;}
.y14a{bottom:356.070000px;}
.y176{bottom:357.690000px;}
.y9a{bottom:362.190000px;}
.y9b{bottom:362.910000px;}
.yc3{bottom:364.170000px;}
.y15a{bottom:366.330000px;}
.y1d{bottom:369.030000px;}
.y7a{bottom:370.290000px;}
.y110{bottom:371.226221px;}
.y106{bottom:374.592587px;}
.y12f{bottom:374.782493px;}
.y47{bottom:376.590000px;}
.y128{bottom:377.027552px;}
.y149{bottom:381.270000px;}
.y175{bottom:382.890000px;}
.y68{bottom:387.030000px;}
.yc2{bottom:389.370000px;}
.y159{bottom:391.530000px;}
.y10f{bottom:392.613559px;}
.y79{bottom:394.230000px;}
.y12e{bottom:396.177900px;}
.y188{bottom:397.830000px;}
.y46{bottom:401.790000px;}
.y99{bottom:402.870000px;}
.y148{bottom:406.650000px;}
.y1c{bottom:409.170000px;}
.y77{bottom:411.330000px;}
.y67{bottom:412.230000px;}
.y10e{bottom:412.845127px;}
.yc1{bottom:414.615000px;}
.y107{bottom:415.089388px;}
.y158{bottom:416.955000px;}
.y12d{bottom:417.539630px;}
.y174{bottom:423.255000px;}
.y45{bottom:427.215000px;}
.y98{bottom:428.295000px;}
.y129{bottom:431.066106px;}
.y147{bottom:431.895000px;}
.y74{bottom:433.335000px;}
.y10d{bottom:434.221244px;}
.y1b{bottom:434.595000px;}
.y66{bottom:437.475000px;}
.yc0{bottom:439.995000px;}
.y157{bottom:442.155000px;}
.y173{bottom:448.455000px;}
.y44{bottom:452.415000px;}
.y97{bottom:453.495000px;}
.y10a{bottom:455.597344px;}
.y108{bottom:455.597410px;}
.y146{bottom:457.095000px;}
.y18f{bottom:463.575000px;}
.ybf{bottom:465.195000px;}
.y156{bottom:467.355000px;}
.y1a{bottom:474.735000px;}
.y43{bottom:477.615000px;}
.y65{bottom:477.795000px;}
.y145{bottom:482.475000px;}
.y172{bottom:488.775000px;}
.ybe{bottom:490.395000px;}
.y155{bottom:492.735000px;}
.y95{bottom:493.815000px;}
.y96{bottom:494.535000px;}
.y19{bottom:500.115000px;}
.yf5{bottom:501.375000px;}
.y42{bottom:502.995000px;}
.y144{bottom:507.675000px;}
.y171{bottom:513.975000px;}
.ybd{bottom:515.775000px;}
.y154{bottom:517.935000px;}
.y64{bottom:518.115000px;}
.y18{bottom:525.315000px;}
.y41{bottom:528.195000px;}
.y197{bottom:529.095000px;}
.y143{bottom:532.875000px;}
.yfc{bottom:533.775000px;}
.y94{bottom:534.135000px;}
.y170{bottom:539.355000px;}
.yf4{bottom:542.415000px;}
.y153{bottom:543.135000px;}
.y63{bottom:543.315000px;}
.y17{bottom:550.695000px;}
.yd2{bottom:553.575000px;}
.y18e{bottom:554.295000px;}
.ybc{bottom:556.095000px;}
.y142{bottom:558.255000px;}
.y92{bottom:559.335000px;}
.y93{bottom:560.055000px;}
.y16f{bottom:564.555000px;}
.yf3{bottom:565.635000px;}
.y40{bottom:568.515000px;}
.y196{bottom:569.235000px;}
.yfb{bottom:574.995000px;}
.y16{bottom:575.895000px;}
.yd1{bottom:578.775000px;}
.y187{bottom:579.495000px;}
.ybb{bottom:581.295000px;}
.y141{bottom:583.455000px;}
.y91{bottom:584.895000px;}
.yf2{bottom:588.855000px;}
.y3f{bottom:593.715000px;}
.y62{bottom:593.895000px;}
.y195{bottom:594.615000px;}
.yfa{bottom:598.035000px;}
.y15{bottom:601.095000px;}
.yd0{bottom:603.975000px;}
.y16e{bottom:604.875000px;}
.yba{bottom:606.495000px;}
.y140{bottom:608.835000px;}
.yf1{bottom:611.895000px;}
.y3e{bottom:619.095000px;}
.y194{bottom:619.815000px;}
.yf9{bottom:621.255000px;}
.y90{bottom:625.215000px;}
.y14{bottom:626.475000px;}
.ycf{bottom:629.355000px;}
.y16d{bottom:630.075000px;}
.yb9{bottom:631.875000px;}
.y13f{bottom:634.035000px;}
.y61{bottom:634.215000px;}
.yf0{bottom:635.115000px;}
.y3d{bottom:644.295000px;}
.yf8{bottom:644.475000px;}
.y186{bottom:645.015000px;}
.y8f{bottom:650.415000px;}
.y13{bottom:651.675000px;}
.yce{bottom:654.555000px;}
.y16c{bottom:655.455000px;}
.yb8{bottom:657.075000px;}
.yef{bottom:658.365000px;}
.y13e{bottom:659.265000px;}
.y193{bottom:660.165000px;}
.yf7{bottom:667.545000px;}
.y3c{bottom:669.525000px;}
.y185{bottom:670.425000px;}
.y60{bottom:674.385000px;}
.y8e{bottom:675.645000px;}
.y12{bottom:676.905000px;}
.y11b{bottom:678.705000px;}
.yb7{bottom:682.305000px;}
.yf6{bottom:683.385000px;}
.yfd{bottom:683.400000px;}
.y13d{bottom:684.645000px;}
.y192{bottom:685.365000px;}
.yed{bottom:692.745000px;}
.y3b{bottom:694.905000px;}
.y16b{bottom:695.625000px;}
.y5f{bottom:699.765000px;}
.y11a{bottom:700.665000px;}
.y8d{bottom:701.025000px;}
.y11{bottom:702.285000px;}
.yb6{bottom:707.685000px;}
.y13c{bottom:709.845000px;}
.y184{bottom:710.745000px;}
.y3a{bottom:720.105000px;}
.y16a{bottom:721.005000px;}
.yee{bottom:722.805000px;}
.y5e{bottom:724.965000px;}
.y191{bottom:725.685000px;}
.y8c{bottom:726.225000px;}
.y10{bottom:727.485000px;}
.y13b{bottom:735.045000px;}
.y183{bottom:735.945000px;}
.y119{bottom:745.125000px;}
.y39{bottom:745.485000px;}
.yb5{bottom:748.005000px;}
.y190{bottom:750.885000px;}
.y8b{bottom:751.425000px;}
.yf{bottom:752.865000px;}
.y13a{bottom:760.425000px;}
.y169{bottom:761.145000px;}
.y5d{bottom:765.285000px;}
.y118{bottom:768.345000px;}
.y38{bottom:770.685000px;}
.y182{bottom:776.265000px;}
.y8a{bottom:776.805000px;}
.ye{bottom:778.065000px;}
.yec{bottom:782.925000px;}
.y139{bottom:785.625000px;}
.y168{bottom:786.525000px;}
.yb4{bottom:787.605000px;}
.y117{bottom:791.565000px;}
.y72{bottom:794.265000px;}
.y37{bottom:795.885000px;}
.y181{bottom:801.465000px;}
.yd{bottom:803.265000px;}
.y5c{bottom:805.425000px;}
.yb3{bottom:810.645000px;}
.y138{bottom:811.005000px;}
.yea{bottom:812.985000px;}
.y6c{bottom:816.225000px;}
.y89{bottom:817.125000px;}
.y36{bottom:821.265000px;}
.y167{bottom:826.665000px;}
.yc{bottom:828.645000px;}
.y116{bottom:829.725000px;}
.y5b{bottom:830.805000px;}
.yb2{bottom:833.865000px;}
.y137{bottom:836.205000px;}
.y180{bottom:841.785000px;}
.yeb{bottom:843.045000px;}
.y133{bottom:845.385000px;}
.y35{bottom:846.465000px;}
.yb1{bottom:850.245000px;}
.y166{bottom:852.045000px;}
.yb{bottom:853.845000px;}
.y5a{bottom:856.005000px;}
.y88{bottom:860.325000px;}
.y136{bottom:861.405000px;}
.y130{bottom:865.365000px;}
.y17f{bottom:866.985000px;}
.y34{bottom:871.665000px;}
.ye6{bottom:873.105000px;}
.y165{bottom:877.245000px;}
.ya{bottom:879.045000px;}
.y59{bottom:881.385000px;}
.y87{bottom:885.525000px;}
.y135{bottom:886.785000px;}
.y17e{bottom:892.365000px;}
.ycd{bottom:897.045000px;}
.yaf{bottom:897.765000px;}
.ye8{bottom:903.390000px;}
.y9{bottom:904.470000px;}
.y58{bottom:906.630000px;}
.y33{bottom:912.030000px;}
.y164{bottom:917.610000px;}
.ycc{bottom:922.290000px;}
.y86{bottom:928.950000px;}
.y57{bottom:931.830000px;}
.y17d{bottom:932.550000px;}
.ye1{bottom:933.450000px;}
.y32{bottom:937.410000px;}
.y163{bottom:942.810000px;}
.y8{bottom:944.790000px;}
.yae{bottom:945.330000px;}
.ycb{bottom:947.670000px;}
.y85{bottom:954.150000px;}
.y56{bottom:957.930000px;}
.y31{bottom:962.610000px;}
.ye4{bottom:963.510000px;}
.yca{bottom:972.870000px;}
.y84{bottom:979.350000px;}
.y55{bottom:983.130000px;}
.y7{bottom:984.930000px;}
.y30{bottom:987.810000px;}
.ya7{bottom:993.030000px;}
.yde{bottom:993.570000px;}
.yc9{bottom:998.070000px;}
.y162{bottom:1008.330000px;}
.y2f{bottom:1013.190000px;}
.y83{bottom:1020.390000px;}
.y54{bottom:1023.450000px;}
.y6{bottom:1025.250000px;}
.y2e{bottom:1038.390000px;}
.y53{bottom:1048.650000px;}
.ydb{bottom:1053.150000px;}
.y2d{bottom:1063.590000px;}
.y5{bottom:1065.570000px;}
.y52{bottom:1073.850000px;}
.y2c{bottom:1088.970000px;}
.y161{bottom:1099.230000px;}
.y4{bottom:1107.150000px;}
.y2b{bottom:1114.170000px;}
.yda{bottom:1117.590000px;}
.y3{bottom:1136.490000px;}
.y2a{bottom:1139.550000px;}
.y115{bottom:1140.990000px;}
.y29{bottom:1189.605000px;}
.y28{bottom:1219.605000px;}
.y27{bottom:1234.605000px;}
.h28{height:19.980000px;}
.hc{height:21.960000px;}
.he{height:21.996000px;}
.h1b{height:29.160000px;}
.h19{height:29.340000px;}
.h8{height:30.577148px;}
.h13{height:46.800000px;}
.h15{height:46.836000px;}
.h5{height:57.937500px;}
.h17{height:58.680000px;}
.h18{height:59.400000px;}
.h1a{height:59.436000px;}
.h1d{height:60.931610px;}
.h20{height:60.954597px;}
.h26{height:60.980904px;}
.h2{height:65.884219px;}
.hf{height:67.824844px;}
.h10{height:68.733281px;}
.h11{height:69.722578px;}
.h14{height:70.842656px;}
.h6{height:71.613281px;}
.h9{height:71.824219px;}
.h4{height:73.722656px;}
.ha{height:74.004654px;}
.h7{height:74.953125px;}
.h12{height:77.485430px;}
.h25{height:82.647023px;}
.h21{height:82.660493px;}
.h24{height:82.736825px;}
.h22{height:82.768256px;}
.h23{height:82.781726px;}
.h16{height:83.787539px;}
.h3{height:86.255508px;}
.h29{height:86.585445px;}
.h1e{height:268.230000px;}
.h27{height:291.315000px;}
.hb{height:340.455000px;}
.hd{height:360.930000px;}
.h1f{height:472.680000px;}
.h1c{height:473.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:16.560000px;}
.w1f{width:16.740000px;}
.w12{width:52.020000px;}
.w11{width:52.236000px;}
.w13{width:60.840000px;}
.w14{width:61.056000px;}
.w15{width:66.780000px;}
.wb{width:75.240000px;}
.w16{width:81.756000px;}
.w17{width:81.900000px;}
.wc{width:88.380000px;}
.w1a{width:98.820000px;}
.w19{width:100.836000px;}
.w1c{width:101.700000px;}
.wd{width:104.616000px;}
.w1d{width:105.516000px;}
.w1b{width:106.596000px;}
.w8{width:116.100000px;}
.we{width:122.256000px;}
.wa{width:128.196000px;}
.wf{width:133.920000px;}
.w10{width:164.010000px;}
.w7{width:166.890000px;}
.w4{width:167.610000px;}
.w9{width:180.030000px;}
.w6{width:185.970000px;}
.w5{width:202.890000px;}
.w18{width:624.069615px;}
.w20{width:629.605828px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:6.840000px;}
.x64{left:8.280000px;}
.x2d{left:9.540000px;}
.x44{left:11.340000px;}
.x43{left:13.680000px;}
.x33{left:15.474000px;}
.x2f{left:16.734000px;}
.x34{left:17.994000px;}
.x46{left:20.160000px;}
.x48{left:22.860000px;}
.xc{left:25.174500px;}
.x3c{left:26.505000px;}
.x3f{left:28.440000px;}
.x29{left:29.880000px;}
.x4a{left:33.480000px;}
.x4b{left:35.640000px;}
.x39{left:37.620000px;}
.x30{left:39.780000px;}
.x35{left:44.280000px;}
.x37{left:48.105000px;}
.x27{left:51.294000px;}
.x32{left:52.605000px;}
.x2e{left:55.665000px;}
.x53{left:61.868263px;}
.x2b{left:69.150000px;}
.x16{left:73.980000px;}
.xe{left:75.239973px;}
.x36{left:78.330000px;}
.x31{left:80.670000px;}
.xa{left:83.699973px;}
.x1a{left:84.780000px;}
.x5a{left:87.660000px;}
.x5f{left:89.685000px;}
.x6a{left:91.080000px;}
.x4{left:92.195973px;}
.x5d{left:93.600000px;}
.x6b{left:97.245000px;}
.x69{left:98.310000px;}
.x5{left:100.655987px;}
.x56{left:105.742622px;}
.x55{left:120.370777px;}
.x2{left:127.655987px;}
.x1b{left:131.795987px;}
.x62{left:133.415987px;}
.x4f{left:135.395987px;}
.x15{left:136.845000px;}
.x4d{left:138.455987px;}
.x1c{left:139.895987px;}
.x61{left:141.155987px;}
.x50{left:142.235987px;}
.x11{left:145.125000px;}
.x4c{left:146.555987px;}
.x19{left:148.005000px;}
.x26{left:149.796000px;}
.x17{left:150.885000px;}
.x3{left:152.129987px;}
.x52{left:153.389987px;}
.xb{left:154.649987px;}
.x4e{left:157.889987px;}
.x10{left:159.525000px;}
.x18{left:162.570000px;}
.x13{left:165.810000px;}
.xf{left:168.330000px;}
.x3a{left:177.150000px;}
.xd{left:181.649987px;}
.x58{left:189.930000px;}
.x8{left:213.509987px;}
.x7{left:249.329987px;}
.x51{left:251.849987px;}
.x24{left:260.129987px;}
.x3b{left:265.890000px;}
.x22{left:267.509987px;}
.x66{left:274.306773px;}
.x63{left:281.954987px;}
.x59{left:290.775000px;}
.x20{left:300.314987px;}
.x6{left:304.634987px;}
.x28{left:317.415000px;}
.x42{left:318.495000px;}
.x68{left:326.010312px;}
.x65{left:328.214987px;}
.x12{left:335.955000px;}
.x21{left:342.434987px;}
.x1d{left:347.294987px;}
.x1e{left:349.274987px;}
.x23{left:354.134987px;}
.x3d{left:370.875000px;}
.x5b{left:389.595000px;}
.x38{left:415.154987px;}
.x45{left:432.075000px;}
.x2a{left:434.415000px;}
.x57{left:443.181172px;}
.x9{left:446.474987px;}
.x3e{left:493.485000px;}
.x5c{left:496.185000px;}
.x14{left:538.845000px;}
.x47{left:560.625000px;}
.x54{left:566.923287px;}
.x67{left:568.839550px;}
.x25{left:584.384987px;}
.x5e{left:597.885000px;}
.x2c{left:615.165000px;}
.x1f{left:617.144987px;}
.x40{left:627.945000px;}
.x49{left:710.070000px;}
.x60{left:748.769987px;}
.x1{left:757.229987px;}
@media print{
.v4{vertical-align:-56.320000pt;}
.v5{vertical-align:-24.042390pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.680000pt;}
.v6{vertical-align:35.932907pt;}
.ls2d{letter-spacing:-0.866094pt;}
.ls27{letter-spacing:-0.865767pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.361067pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.102400pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.033280pt;}
.ls21{letter-spacing:-0.023040pt;}
.ls2e{letter-spacing:-0.021233pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.133120pt;}
.ls35{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.220267pt;}
.ls3{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.380160pt;}
.ls14{letter-spacing:1.024000pt;}
.ls36{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.454042pt;}
.ls25{letter-spacing:1.512100pt;}
.ls19{letter-spacing:1.921920pt;}
.ls16{letter-spacing:1.984000pt;}
.ls10{letter-spacing:2.290560pt;}
.ls1a{letter-spacing:2.561920pt;}
.lsb{letter-spacing:2.930560pt;}
.ls33{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.840000pt;}
.ls34{letter-spacing:4.480000pt;}
.ls39{letter-spacing:5.120000pt;}
.ls7{letter-spacing:13.573120pt;}
.ls30{letter-spacing:13.920000pt;}
.ls13{letter-spacing:14.464000pt;}
.ls17{letter-spacing:17.536000pt;}
.ls2f{letter-spacing:18.816000pt;}
.ls32{letter-spacing:19.840000pt;}
.ls0{letter-spacing:28.928000pt;}
.ls1d{letter-spacing:45.546667pt;}
.ls1b{letter-spacing:87.424000pt;}
.ls18{letter-spacing:110.442667pt;}
.ls11{letter-spacing:110.464000pt;}
.ls2a{letter-spacing:114.887535pt;}
.ls29{letter-spacing:124.293120pt;}
.ls24{letter-spacing:156.293120pt;}
.lsa{letter-spacing:166.528000pt;}
.ws1b{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-55.919771pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws23{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.592000pt;}
.ws15{word-spacing:-14.528000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws25{word-spacing:-14.400000pt;}
.ws14{word-spacing:-14.336000pt;}
.ws8{word-spacing:-14.272000pt;}
.ws12{word-spacing:-14.208000pt;}
.ws9{word-spacing:-14.144000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws22{word-spacing:-13.952000pt;}
.ws24{word-spacing:-13.888000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws21{word-spacing:-13.575910pt;}
.ws1f{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.306880pt;}
.ws19{word-spacing:-13.283840pt;}
.ws16{word-spacing:-13.273600pt;}
.ws1a{word-spacing:-13.160747pt;}
.ws1c{word-spacing:-12.624213pt;}
.ws1e{word-spacing:-12.220497pt;}
.ws10{word-spacing:-9.996800pt;}
.ws18{word-spacing:-8.389120pt;}
.wsd{word-spacing:-0.896000pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.192000pt;}
.wsc{word-spacing:1.642667pt;}
.ws11{word-spacing:3.392000pt;}
.wsb{word-spacing:3.520000pt;}
.wsa{word-spacing:20.864000pt;}
.ws13{word-spacing:20.992000pt;}
.ws20{word-spacing:46.174237pt;}
._25{margin-left:-3.824094pt;}
._1b{margin-left:-2.816000pt;}
._0{margin-left:-1.221120pt;}
._1{width:1.056000pt;}
._7{width:2.752000pt;}
._c{width:4.037120pt;}
._3{width:4.970667pt;}
._2{width:6.080000pt;}
._15{width:6.976000pt;}
._8{width:8.064000pt;}
._9{width:9.226667pt;}
._5{width:10.816000pt;}
._4{width:11.840000pt;}
._6{width:13.109333pt;}
._18{width:15.541760pt;}
._b{width:16.479573pt;}
._a{width:17.642667pt;}
._17{width:19.392000pt;}
._16{width:20.352000pt;}
._21{width:21.418667pt;}
._19{width:22.336000pt;}
._e{width:23.407787pt;}
._d{width:24.512000pt;}
._f{width:25.418667pt;}
._13{width:26.816000pt;}
._12{width:27.946667pt;}
._10{width:29.120000pt;}
._11{width:30.650453pt;}
._23{width:31.552000pt;}
._22{width:32.448000pt;}
._24{width:33.397333pt;}
._1d{width:34.496000pt;}
._29{width:36.160000pt;}
._1a{width:37.888000pt;}
._2c{width:39.941120pt;}
._2b{width:41.344000pt;}
._20{width:43.584000pt;}
._28{width:63.661537pt;}
._27{width:76.298476pt;}
._1e{width:87.264000pt;}
._26{width:92.223423pt;}
._2a{width:112.682667pt;}
._1c{width:137.498453pt;}
._1f{width:174.496000pt;}
._14{width:1677.941333pt;}
.fsa{font-size:35.996368pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:43.958621pt;}
.fs4{font-size:45.440000pt;}
.fs6{font-size:51.930061pt;}
.fs9{font-size:51.949653pt;}
.fsb{font-size:51.972073pt;}
.fs7{font-size:55.919771pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:0.160000pt;}
.y6f{bottom:1.440000pt;}
.y75{bottom:3.360000pt;}
.y131{bottom:3.520000pt;}
.y134{bottom:4.000000pt;}
.y73{bottom:4.320000pt;}
.y78{bottom:4.360000pt;}
.y112{bottom:4.800000pt;}
.yaa{bottom:5.280000pt;}
.yad{bottom:5.600000pt;}
.yab{bottom:5.920000pt;}
.y132{bottom:6.240000pt;}
.y113{bottom:6.560000pt;}
.ye5{bottom:8.000000pt;}
.ye9{bottom:8.160000pt;}
.y114{bottom:8.960000pt;}
.y71{bottom:9.600000pt;}
.y10b{bottom:10.001191pt;}
.y12a{bottom:13.017621pt;}
.ya8{bottom:15.360000pt;}
.yb0{bottom:15.400000pt;}
.ye3{bottom:20.960000pt;}
.ydd{bottom:21.120000pt;}
.yac{bottom:25.120000pt;}
.ya9{bottom:25.440000pt;}
.y10c{bottom:25.988957pt;}
.ye0{bottom:26.080000pt;}
.y121{bottom:30.034166pt;}
.y76{bottom:33.760000pt;}
.ydc{bottom:38.240000pt;}
.ydf{bottom:38.400000pt;}
.ye2{bottom:38.880000pt;}
.ye7{bottom:39.080000pt;}
.y12c{bottom:40.014199pt;}
.y122{bottom:41.036947pt;}
.y109{bottom:43.000084pt;}
.yfe{bottom:43.997513pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.960000pt;}
.yff{bottom:80.986112pt;}
.y123{bottom:90.042081pt;}
.y26{bottom:99.040000pt;}
.y152{bottom:100.960000pt;}
.y82{bottom:103.840000pt;}
.y51{bottom:110.080000pt;}
.ya6{bottom:113.600000pt;}
.y11f{bottom:114.560000pt;}
.y160{bottom:115.040000pt;}
.y100{bottom:116.998229pt;}
.yd9{bottom:117.280000pt;}
.y25{bottom:121.600000pt;}
.y151{bottom:123.360000pt;}
.y81{bottom:126.400000pt;}
.y50{bottom:132.480000pt;}
.y18d{bottom:133.920000pt;}
.y12b{bottom:134.058197pt;}
.ya5{bottom:136.800000pt;}
.y124{bottom:139.067171pt;}
.y24{bottom:144.000000pt;}
.y150{bottom:145.920000pt;}
.y11e{bottom:148.480000pt;}
.y80{bottom:148.800000pt;}
.y15f{bottom:150.906667pt;}
.y101{bottom:152.995384pt;}
.y4f{bottom:155.066667pt;}
.yd8{bottom:156.346667pt;}
.y17c{bottom:156.506667pt;}
.ya4{bottom:160.186667pt;}
.y23{bottom:166.586667pt;}
.y14f{bottom:168.346667pt;}
.y11d{bottom:169.146667pt;}
.y7f{bottom:171.226667pt;}
.yc8{bottom:171.386667pt;}
.yd7{bottom:175.866667pt;}
.y4e{bottom:177.466667pt;}
.y17b{bottom:178.906667pt;}
.ya3{bottom:182.586667pt;}
.y11c{bottom:183.066667pt;}
.y120{bottom:183.200000pt;}
.y15e{bottom:186.586667pt;}
.y125{bottom:188.079290pt;}
.y102{bottom:188.982566pt;}
.y22{bottom:188.986667pt;}
.y14e{bottom:190.906667pt;}
.y18c{bottom:192.186667pt;}
.y7e{bottom:193.626667pt;}
.yc7{bottom:193.786667pt;}
.yd6{bottom:195.386667pt;}
.y4d{bottom:200.026667pt;}
.y17a{bottom:201.466667pt;}
.ya1{bottom:204.986667pt;}
.ya2{bottom:205.626667pt;}
.y15d{bottom:209.146667pt;}
.y21{bottom:211.386667pt;}
.y111{bottom:213.306667pt;}
.y18b{bottom:214.746667pt;}
.yd5{bottom:214.906667pt;}
.y4c{bottom:222.426667pt;}
.y103{bottom:224.979722pt;}
.y9f{bottom:227.546667pt;}
.ya0{bottom:228.186667pt;}
.yc6{bottom:229.626667pt;}
.y15c{bottom:231.546667pt;}
.y7d{bottom:232.186667pt;}
.y20{bottom:233.946667pt;}
.yd4{bottom:234.426667pt;}
.y14d{bottom:235.706667pt;}
.y126{bottom:237.101386pt;}
.y179{bottom:237.146667pt;}
.y4b{bottom:244.826667pt;}
.y6b{bottom:249.946667pt;}
.y9e{bottom:250.266667pt;}
.yd3{bottom:253.946667pt;}
.y1f{bottom:256.346667pt;}
.y178{bottom:259.706667pt;}
.y104{bottom:260.986852pt;}
.yc5{bottom:265.306667pt;}
.y4a{bottom:267.386667pt;}
.y6e{bottom:267.880000pt;}
.y14c{bottom:271.546667pt;}
.y6a{bottom:272.346667pt;}
.y18a{bottom:272.986667pt;}
.y177{bottom:282.106667pt;}
.y9c{bottom:285.946667pt;}
.y127{bottom:286.103527pt;}
.y9d{bottom:286.586667pt;}
.y6d{bottom:287.400000pt;}
.yc4{bottom:287.866667pt;}
.y7c{bottom:288.026667pt;}
.y49{bottom:289.786667pt;}
.y1e{bottom:292.186667pt;}
.y14b{bottom:293.946667pt;}
.y189{bottom:295.386667pt;}
.y105{bottom:296.984007pt;}
.y15b{bottom:303.066667pt;}
.y69{bottom:308.186667pt;}
.y7b{bottom:308.666667pt;}
.y48{bottom:312.186667pt;}
.y14a{bottom:316.506667pt;}
.y176{bottom:317.946667pt;}
.y9a{bottom:321.946667pt;}
.y9b{bottom:322.586667pt;}
.yc3{bottom:323.706667pt;}
.y15a{bottom:325.626667pt;}
.y1d{bottom:328.026667pt;}
.y7a{bottom:329.146667pt;}
.y110{bottom:329.978863pt;}
.y106{bottom:332.971189pt;}
.y12f{bottom:333.139994pt;}
.y47{bottom:334.746667pt;}
.y128{bottom:335.135602pt;}
.y149{bottom:338.906667pt;}
.y175{bottom:340.346667pt;}
.y68{bottom:344.026667pt;}
.yc2{bottom:346.106667pt;}
.y159{bottom:348.026667pt;}
.y10f{bottom:348.989830pt;}
.y79{bottom:350.426667pt;}
.y12e{bottom:352.158133pt;}
.y188{bottom:353.626667pt;}
.y46{bottom:357.146667pt;}
.y99{bottom:358.106667pt;}
.y148{bottom:361.466667pt;}
.y1c{bottom:363.706667pt;}
.y77{bottom:365.626667pt;}
.y67{bottom:366.426667pt;}
.y10e{bottom:366.973446pt;}
.yc1{bottom:368.546667pt;}
.y107{bottom:368.968345pt;}
.y158{bottom:370.626667pt;}
.y12d{bottom:371.146338pt;}
.y174{bottom:376.226667pt;}
.y45{bottom:379.746667pt;}
.y98{bottom:380.706667pt;}
.y129{bottom:383.169872pt;}
.y147{bottom:383.906667pt;}
.y74{bottom:385.186667pt;}
.y10d{bottom:385.974439pt;}
.y1b{bottom:386.306667pt;}
.y66{bottom:388.866667pt;}
.yc0{bottom:391.106667pt;}
.y157{bottom:393.026667pt;}
.y173{bottom:398.626667pt;}
.y44{bottom:402.146667pt;}
.y97{bottom:403.106667pt;}
.y10a{bottom:404.975417pt;}
.y108{bottom:404.975476pt;}
.y146{bottom:406.306667pt;}
.y18f{bottom:412.066667pt;}
.ybf{bottom:413.506667pt;}
.y156{bottom:415.426667pt;}
.y1a{bottom:421.986667pt;}
.y43{bottom:424.546667pt;}
.y65{bottom:424.706667pt;}
.y145{bottom:428.866667pt;}
.y172{bottom:434.466667pt;}
.ybe{bottom:435.906667pt;}
.y155{bottom:437.986667pt;}
.y95{bottom:438.946667pt;}
.y96{bottom:439.586667pt;}
.y19{bottom:444.546667pt;}
.yf5{bottom:445.666667pt;}
.y42{bottom:447.106667pt;}
.y144{bottom:451.266667pt;}
.y171{bottom:456.866667pt;}
.ybd{bottom:458.466667pt;}
.y154{bottom:460.386667pt;}
.y64{bottom:460.546667pt;}
.y18{bottom:466.946667pt;}
.y41{bottom:469.506667pt;}
.y197{bottom:470.306667pt;}
.y143{bottom:473.666667pt;}
.yfc{bottom:474.466667pt;}
.y94{bottom:474.786667pt;}
.y170{bottom:479.426667pt;}
.yf4{bottom:482.146667pt;}
.y153{bottom:482.786667pt;}
.y63{bottom:482.946667pt;}
.y17{bottom:489.506667pt;}
.yd2{bottom:492.066667pt;}
.y18e{bottom:492.706667pt;}
.ybc{bottom:494.306667pt;}
.y142{bottom:496.226667pt;}
.y92{bottom:497.186667pt;}
.y93{bottom:497.826667pt;}
.y16f{bottom:501.826667pt;}
.yf3{bottom:502.786667pt;}
.y40{bottom:505.346667pt;}
.y196{bottom:505.986667pt;}
.yfb{bottom:511.106667pt;}
.y16{bottom:511.906667pt;}
.yd1{bottom:514.466667pt;}
.y187{bottom:515.106667pt;}
.ybb{bottom:516.706667pt;}
.y141{bottom:518.626667pt;}
.y91{bottom:519.906667pt;}
.yf2{bottom:523.426667pt;}
.y3f{bottom:527.746667pt;}
.y62{bottom:527.906667pt;}
.y195{bottom:528.546667pt;}
.yfa{bottom:531.586667pt;}
.y15{bottom:534.306667pt;}
.yd0{bottom:536.866667pt;}
.y16e{bottom:537.666667pt;}
.yba{bottom:539.106667pt;}
.y140{bottom:541.186667pt;}
.yf1{bottom:543.906667pt;}
.y3e{bottom:550.306667pt;}
.y194{bottom:550.946667pt;}
.yf9{bottom:552.226667pt;}
.y90{bottom:555.746667pt;}
.y14{bottom:556.866667pt;}
.ycf{bottom:559.426667pt;}
.y16d{bottom:560.066667pt;}
.yb9{bottom:561.666667pt;}
.y13f{bottom:563.586667pt;}
.y61{bottom:563.746667pt;}
.yf0{bottom:564.546667pt;}
.y3d{bottom:572.706667pt;}
.yf8{bottom:572.866667pt;}
.y186{bottom:573.346667pt;}
.y8f{bottom:578.146667pt;}
.y13{bottom:579.266667pt;}
.yce{bottom:581.826667pt;}
.y16c{bottom:582.626667pt;}
.yb8{bottom:584.066667pt;}
.yef{bottom:585.213333pt;}
.y13e{bottom:586.013333pt;}
.y193{bottom:586.813333pt;}
.yf7{bottom:593.373333pt;}
.y3c{bottom:595.133333pt;}
.y185{bottom:595.933333pt;}
.y60{bottom:599.453333pt;}
.y8e{bottom:600.573333pt;}
.y12{bottom:601.693333pt;}
.y11b{bottom:603.293333pt;}
.yb7{bottom:606.493333pt;}
.yf6{bottom:607.453333pt;}
.yfd{bottom:607.466667pt;}
.y13d{bottom:608.573333pt;}
.y192{bottom:609.213333pt;}
.yed{bottom:615.773333pt;}
.y3b{bottom:617.693333pt;}
.y16b{bottom:618.333333pt;}
.y5f{bottom:622.013333pt;}
.y11a{bottom:622.813333pt;}
.y8d{bottom:623.133333pt;}
.y11{bottom:624.253333pt;}
.yb6{bottom:629.053333pt;}
.y13c{bottom:630.973333pt;}
.y184{bottom:631.773333pt;}
.y3a{bottom:640.093333pt;}
.y16a{bottom:640.893333pt;}
.yee{bottom:642.493333pt;}
.y5e{bottom:644.413333pt;}
.y191{bottom:645.053333pt;}
.y8c{bottom:645.533333pt;}
.y10{bottom:646.653333pt;}
.y13b{bottom:653.373333pt;}
.y183{bottom:654.173333pt;}
.y119{bottom:662.333333pt;}
.y39{bottom:662.653333pt;}
.yb5{bottom:664.893333pt;}
.y190{bottom:667.453333pt;}
.y8b{bottom:667.933333pt;}
.yf{bottom:669.213333pt;}
.y13a{bottom:675.933333pt;}
.y169{bottom:676.573333pt;}
.y5d{bottom:680.253333pt;}
.y118{bottom:682.973333pt;}
.y38{bottom:685.053333pt;}
.y182{bottom:690.013333pt;}
.y8a{bottom:690.493333pt;}
.ye{bottom:691.613333pt;}
.yec{bottom:695.933333pt;}
.y139{bottom:698.333333pt;}
.y168{bottom:699.133333pt;}
.yb4{bottom:700.093333pt;}
.y117{bottom:703.613333pt;}
.y72{bottom:706.013333pt;}
.y37{bottom:707.453333pt;}
.y181{bottom:712.413333pt;}
.yd{bottom:714.013333pt;}
.y5c{bottom:715.933333pt;}
.yb3{bottom:720.573333pt;}
.y138{bottom:720.893333pt;}
.yea{bottom:722.653333pt;}
.y6c{bottom:725.533333pt;}
.y89{bottom:726.333333pt;}
.y36{bottom:730.013333pt;}
.y167{bottom:734.813333pt;}
.yc{bottom:736.573333pt;}
.y116{bottom:737.533333pt;}
.y5b{bottom:738.493333pt;}
.yb2{bottom:741.213333pt;}
.y137{bottom:743.293333pt;}
.y180{bottom:748.253333pt;}
.yeb{bottom:749.373333pt;}
.y133{bottom:751.453333pt;}
.y35{bottom:752.413333pt;}
.yb1{bottom:755.773333pt;}
.y166{bottom:757.373333pt;}
.yb{bottom:758.973333pt;}
.y5a{bottom:760.893333pt;}
.y88{bottom:764.733333pt;}
.y136{bottom:765.693333pt;}
.y130{bottom:769.213333pt;}
.y17f{bottom:770.653333pt;}
.y34{bottom:774.813333pt;}
.ye6{bottom:776.093333pt;}
.y165{bottom:779.773333pt;}
.ya{bottom:781.373333pt;}
.y59{bottom:783.453333pt;}
.y87{bottom:787.133333pt;}
.y135{bottom:788.253333pt;}
.y17e{bottom:793.213333pt;}
.ycd{bottom:797.373333pt;}
.yaf{bottom:798.013333pt;}
.ye8{bottom:803.013333pt;}
.y9{bottom:803.973333pt;}
.y58{bottom:805.893333pt;}
.y33{bottom:810.693333pt;}
.y164{bottom:815.653333pt;}
.ycc{bottom:819.813333pt;}
.y86{bottom:825.733333pt;}
.y57{bottom:828.293333pt;}
.y17d{bottom:828.933333pt;}
.ye1{bottom:829.733333pt;}
.y32{bottom:833.253333pt;}
.y163{bottom:838.053333pt;}
.y8{bottom:839.813333pt;}
.yae{bottom:840.293333pt;}
.ycb{bottom:842.373333pt;}
.y85{bottom:848.133333pt;}
.y56{bottom:851.493333pt;}
.y31{bottom:855.653333pt;}
.ye4{bottom:856.453333pt;}
.yca{bottom:864.773333pt;}
.y84{bottom:870.533333pt;}
.y55{bottom:873.893333pt;}
.y7{bottom:875.493333pt;}
.y30{bottom:878.053333pt;}
.ya7{bottom:882.693333pt;}
.yde{bottom:883.173333pt;}
.yc9{bottom:887.173333pt;}
.y162{bottom:896.293333pt;}
.y2f{bottom:900.613333pt;}
.y83{bottom:907.013333pt;}
.y54{bottom:909.733333pt;}
.y6{bottom:911.333333pt;}
.y2e{bottom:923.013333pt;}
.y53{bottom:932.133333pt;}
.ydb{bottom:936.133333pt;}
.y2d{bottom:945.413333pt;}
.y5{bottom:947.173333pt;}
.y52{bottom:954.533333pt;}
.y2c{bottom:967.973333pt;}
.y161{bottom:977.093333pt;}
.y4{bottom:984.133333pt;}
.y2b{bottom:990.373333pt;}
.yda{bottom:993.413333pt;}
.y3{bottom:1010.213333pt;}
.y2a{bottom:1012.933333pt;}
.y115{bottom:1014.213333pt;}
.y29{bottom:1057.426667pt;}
.y28{bottom:1084.093333pt;}
.y27{bottom:1097.426667pt;}
.h28{height:17.760000pt;}
.hc{height:19.520000pt;}
.he{height:19.552000pt;}
.h1b{height:25.920000pt;}
.h19{height:26.080000pt;}
.h8{height:27.179688pt;}
.h13{height:41.600000pt;}
.h15{height:41.632000pt;}
.h5{height:51.500000pt;}
.h17{height:52.160000pt;}
.h18{height:52.800000pt;}
.h1a{height:52.832000pt;}
.h1d{height:54.161431pt;}
.h20{height:54.181864pt;}
.h26{height:54.205248pt;}
.h2{height:58.563750pt;}
.hf{height:60.288750pt;}
.h10{height:61.096250pt;}
.h11{height:61.975625pt;}
.h14{height:62.971250pt;}
.h6{height:63.656250pt;}
.h9{height:63.843750pt;}
.h4{height:65.531250pt;}
.ha{height:65.781915pt;}
.h7{height:66.625000pt;}
.h12{height:68.875938pt;}
.h25{height:73.464020pt;}
.h21{height:73.475994pt;}
.h24{height:73.543845pt;}
.h22{height:73.571783pt;}
.h23{height:73.583757pt;}
.h16{height:74.477812pt;}
.h3{height:76.671562pt;}
.h29{height:76.964840pt;}
.h1e{height:238.426667pt;}
.h27{height:258.946667pt;}
.hb{height:302.626667pt;}
.hd{height:320.826667pt;}
.h1f{height:420.160000pt;}
.h1c{height:420.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:14.720000pt;}
.w1f{width:14.880000pt;}
.w12{width:46.240000pt;}
.w11{width:46.432000pt;}
.w13{width:54.080000pt;}
.w14{width:54.272000pt;}
.w15{width:59.360000pt;}
.wb{width:66.880000pt;}
.w16{width:72.672000pt;}
.w17{width:72.800000pt;}
.wc{width:78.560000pt;}
.w1a{width:87.840000pt;}
.w19{width:89.632000pt;}
.w1c{width:90.400000pt;}
.wd{width:92.992000pt;}
.w1d{width:93.792000pt;}
.w1b{width:94.752000pt;}
.w8{width:103.200000pt;}
.we{width:108.672000pt;}
.wa{width:113.952000pt;}
.wf{width:119.040000pt;}
.w10{width:145.786667pt;}
.w7{width:148.346667pt;}
.w4{width:148.986667pt;}
.w9{width:160.026667pt;}
.w6{width:165.306667pt;}
.w5{width:180.346667pt;}
.w18{width:554.728546pt;}
.w20{width:559.649625pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:6.080000pt;}
.x64{left:7.360000pt;}
.x2d{left:8.480000pt;}
.x44{left:10.080000pt;}
.x43{left:12.160000pt;}
.x33{left:13.754667pt;}
.x2f{left:14.874667pt;}
.x34{left:15.994667pt;}
.x46{left:17.920000pt;}
.x48{left:20.320000pt;}
.xc{left:22.377333pt;}
.x3c{left:23.560000pt;}
.x3f{left:25.280000pt;}
.x29{left:26.560000pt;}
.x4a{left:29.760000pt;}
.x4b{left:31.680000pt;}
.x39{left:33.440000pt;}
.x30{left:35.360000pt;}
.x35{left:39.360000pt;}
.x37{left:42.760000pt;}
.x27{left:45.594667pt;}
.x32{left:46.760000pt;}
.x2e{left:49.480000pt;}
.x53{left:54.994012pt;}
.x2b{left:61.466667pt;}
.x16{left:65.760000pt;}
.xe{left:66.879976pt;}
.x36{left:69.626667pt;}
.x31{left:71.706667pt;}
.xa{left:74.399976pt;}
.x1a{left:75.360000pt;}
.x5a{left:77.920000pt;}
.x5f{left:79.720000pt;}
.x6a{left:80.960000pt;}
.x4{left:81.951976pt;}
.x5d{left:83.200000pt;}
.x6b{left:86.440000pt;}
.x69{left:87.386667pt;}
.x5{left:89.471988pt;}
.x56{left:93.993442pt;}
.x55{left:106.996246pt;}
.x2{left:113.471988pt;}
.x1b{left:117.151988pt;}
.x62{left:118.591988pt;}
.x4f{left:120.351988pt;}
.x15{left:121.640000pt;}
.x4d{left:123.071988pt;}
.x1c{left:124.351988pt;}
.x61{left:125.471988pt;}
.x50{left:126.431988pt;}
.x11{left:129.000000pt;}
.x4c{left:130.271988pt;}
.x19{left:131.560000pt;}
.x26{left:133.152000pt;}
.x17{left:134.120000pt;}
.x3{left:135.226655pt;}
.x52{left:136.346655pt;}
.xb{left:137.466655pt;}
.x4e{left:140.346655pt;}
.x10{left:141.800000pt;}
.x18{left:144.506667pt;}
.x13{left:147.386667pt;}
.xf{left:149.626667pt;}
.x3a{left:157.466667pt;}
.xd{left:161.466655pt;}
.x58{left:168.826667pt;}
.x8{left:189.786655pt;}
.x7{left:221.626655pt;}
.x51{left:223.866655pt;}
.x24{left:231.226655pt;}
.x3b{left:236.346667pt;}
.x22{left:237.786655pt;}
.x66{left:243.828243pt;}
.x63{left:250.626655pt;}
.x59{left:258.466667pt;}
.x20{left:266.946655pt;}
.x6{left:270.786655pt;}
.x28{left:282.146667pt;}
.x42{left:283.106667pt;}
.x68{left:289.786944pt;}
.x65{left:291.746655pt;}
.x12{left:298.626667pt;}
.x21{left:304.386655pt;}
.x1d{left:308.706655pt;}
.x1e{left:310.466655pt;}
.x23{left:314.786655pt;}
.x3d{left:329.666667pt;}
.x5b{left:346.306667pt;}
.x38{left:369.026655pt;}
.x45{left:384.066667pt;}
.x2a{left:386.146667pt;}
.x57{left:393.938819pt;}
.x9{left:396.866655pt;}
.x3e{left:438.653333pt;}
.x5c{left:441.053333pt;}
.x14{left:478.973333pt;}
.x47{left:498.333333pt;}
.x54{left:503.931811pt;}
.x67{left:505.635156pt;}
.x25{left:519.453322pt;}
.x5e{left:531.453333pt;}
.x2c{left:546.813333pt;}
.x1f{left:548.573322pt;}
.x40{left:558.173333pt;}
.x49{left:631.173333pt;}
.x60{left:665.573322pt;}
.x1{left:673.093322pt;}
}

