
    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_d721f4674351c077ddd0e6dc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_52fa19a944a7b9e831b35f85.woff')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_438335135c7544e5e2f55c6d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_82abfa7db948c85150aa42c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_abc007e60869fe6e087e1d70.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e3dac510e543ef8191aa1700.woff')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_e9fc8eeeab6e3bdb47bc878a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.606000px;}
.ls2{letter-spacing:-0.544200px;}
.lsf{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.294000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.118200px;}
.ls11{letter-spacing:0.155400px;}
.ls1a{letter-spacing:0.155520px;}
.ls4{letter-spacing:0.193200px;}
.ls3{letter-spacing:0.227400px;}
.ls1c{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.564600px;}
.ls8{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.685440px;}
.ls6{letter-spacing:0.696960px;}
.ls15{letter-spacing:0.714000px;}
.ls13{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.278000px;}
.ls10{letter-spacing:1.632000px;}
.ls1e{letter-spacing:2.004000px;}
.ls5{letter-spacing:2.160000px;}
.lse{letter-spacing:2.376000px;}
.ls19{letter-spacing:6.065280px;}
.ls7{letter-spacing:146.874720px;}
.ls9{letter-spacing:151.194720px;}
.ls17{letter-spacing:169.902720px;}
.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;}
}
.ws7{word-spacing:-19.026720px;}
.wsc{word-spacing:-18.287760px;}
.ws1{word-spacing:-18.138360px;}
.wse{word-spacing:-17.884800px;}
.ws3{word-spacing:-17.801160px;}
.ws4{word-spacing:-17.766960px;}
.wsa{word-spacing:-17.729160px;}
.ws5{word-spacing:-17.691960px;}
.ws8{word-spacing:-17.573760px;}
.wsd{word-spacing:-17.109960px;}
.ws9{word-spacing:-17.069760px;}
.ws2{word-spacing:-17.029560px;}
.wsf{word-spacing:-16.967760px;}
.ws6{word-spacing:-16.913760px;}
.wsb{word-spacing:-16.853760px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-11.476320px;}
._7{margin-left:-9.393600px;}
._4{margin-left:-5.380320px;}
._1a{margin-left:-4.173120px;}
._5{margin-left:-3.131040px;}
._12{margin-left:-2.088960px;}
._2{margin-left:-1.088640px;}
._0{width:1.244160px;}
._1{width:3.171840px;}
._3{width:4.508160px;}
._d{width:5.512320px;}
._11{width:6.783360px;}
._10{width:8.242560px;}
._1b{width:9.331200px;}
._f{width:10.342080px;}
._a{width:11.741760px;}
._b{width:12.908160px;}
._c{width:14.074560px;}
._8{width:15.240960px;}
._9{width:16.251840px;}
._15{width:19.341120px;}
._1c{width:21.306240px;}
._1d{width:23.250240px;}
._14{width:24.960960px;}
._13{width:26.205120px;}
._e{width:28.149120px;}
._20{width:29.237760px;}
._27{width:31.026240px;}
._26{width:32.114880px;}
._16{width:33.825600px;}
._17{width:34.909440px;}
._18{width:35.925120px;}
._25{width:36.936000px;}
._19{width:38.023680px;}
._24{width:39.336000px;}
._2a{width:41.285760px;}
._1e{width:43.234560px;}
._1f{width:45.235200px;}
._23{width:46.956480px;}
._2d{width:48.517440px;}
._2e{width:49.714560px;}
._22{width:51.166080px;}
._21{width:52.399680px;}
._42{width:53.423520px;}
._43{width:54.898560px;}
._28{width:57.542400px;}
._29{width:58.786560px;}
._3a{width:60.175680px;}
._4d{width:69.284160px;}
._4c{width:70.906560px;}
._3e{width:79.704000px;}
._3f{width:80.714880px;}
._50{width:82.814400px;}
._2c{width:84.364800px;}
._2b{width:85.691520px;}
._3b{width:86.744640px;}
._38{width:87.946560px;}
._36{width:88.957440px;}
._37{width:90.046080px;}
._51{width:94.509120px;}
._31{width:117.058560px;}
._30{width:118.087680px;}
._41{width:131.339040px;}
._40{width:132.570240px;}
._32{width:154.820160px;}
._33{width:156.453120px;}
._39{width:178.215360px;}
._4f{width:187.790400px;}
._4e{width:189.112320px;}
._46{width:190.942080px;}
._45{width:191.983680px;}
._44{width:193.073280px;}
._49{width:211.963200px;}
._3d{width:219.360960px;}
._3c{width:221.372160px;}
._52{width:225.659520px;}
._4b{width:430.168320px;}
._4a{width:431.441280px;}
._47{width:463.999680px;}
._48{width:465.315840px;}
._35{width:719.887680px;}
._34{width:1550.357760px;}
._2f{width:1722.850560px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y1c1{bottom:5.400000px;}
.y221{bottom:5.760000px;}
.y187{bottom:9.000000px;}
.y18e{bottom:9.030000px;}
.y1a9{bottom:9.036000px;}
.y21d{bottom:19.125000px;}
.y21f{bottom:20.925000px;}
.y1d6{bottom:29.160000px;}
.y1fa{bottom:29.520000px;}
.y18d{bottom:36.360000px;}
.y18b{bottom:36.390000px;}
.y196{bottom:36.399000px;}
.y190{bottom:36.405000px;}
.y21c{bottom:38.565000px;}
.y21e{bottom:40.365000px;}
.y21b{bottom:43.245000px;}
.y1d5{bottom:52.920000px;}
.y208{bottom:52.965000px;}
.y1f9{bottom:53.280000px;}
.y1b{bottom:57.276000px;}
.y1ab{bottom:63.720000px;}
.y18a{bottom:63.750000px;}
.y1a8{bottom:63.759000px;}
.y195{bottom:64.119000px;}
.y1a{bottom:76.356000px;}
.y1d4{bottom:76.680000px;}
.y207{bottom:76.725000px;}
.y1e2{bottom:77.040000px;}
.y1b0{bottom:91.080000px;}
.y189{bottom:91.110000px;}
.y1a7{bottom:91.119000px;}
.y194{bottom:91.479000px;}
.y1d3{bottom:100.470000px;}
.y206{bottom:100.485000px;}
.y1e1{bottom:100.800000px;}
.y107{bottom:111.276000px;}
.y19{bottom:112.356000px;}
.y99{bottom:114.156000px;}
.yed{bottom:115.956000px;}
.y1a5{bottom:118.470000px;}
.y192{bottom:118.476000px;}
.y1af{bottom:118.485000px;}
.y193{bottom:118.839000px;}
.y1e4{bottom:120.276000px;}
.y12b{bottom:122.076000px;}
.y146{bottom:123.156000px;}
.y1d2{bottom:124.230000px;}
.y205{bottom:124.245000px;}
.y1f8{bottom:124.560000px;}
.y1e0{bottom:124.590000px;}
.y130{bottom:126.396000px;}
.y1a6{bottom:127.116000px;}
.y183{bottom:128.916000px;}
.y101{bottom:131.112000px;}
.y1be{bottom:131.472000px;}
.y7d{bottom:132.912000px;}
.y229{bottom:133.632000px;}
.y218{bottom:134.712000px;}
.y3c{bottom:135.792000px;}
.y24f{bottom:136.152000px;}
.ydc{bottom:137.952000px;}
.y1e3{bottom:138.672000px;}
.y61{bottom:139.392000px;}
.y16e{bottom:140.472000px;}
.y12f{bottom:140.832000px;}
.y10d{bottom:142.632000px;}
.y18{bottom:143.712000px;}
.y1ae{bottom:145.845000px;}
.yac{bottom:145.872000px;}
.y1a4{bottom:145.875000px;}
.y106{bottom:147.312000px;}
.y1d1{bottom:147.990000px;}
.y204{bottom:148.005000px;}
.y1f7{bottom:148.350000px;}
.y98{bottom:149.832000px;}
.yec{bottom:151.995000px;}
.y12a{bottom:157.755000px;}
.y145{bottom:158.835000px;}
.y238{bottom:159.195000px;}
.y1df{bottom:162.075000px;}
.y158{bottom:162.435000px;}
.y3b{bottom:163.155000px;}
.y182{bottom:164.595000px;}
.y60{bottom:166.755000px;}
.y7c{bottom:168.555000px;}
.y228{bottom:169.275000px;}
.y217{bottom:170.715000px;}
.y1d0{bottom:172.110000px;}
.y203{bottom:172.155000px;}
.yc3{bottom:172.515000px;}
.y174{bottom:173.235000px;}
.ydb{bottom:173.595000px;}
.y16d{bottom:176.115000px;}
.yd2{bottom:178.275000px;}
.yab{bottom:181.515000px;}
.y17{bottom:182.595000px;}
.y105{bottom:182.955000px;}
.y97{bottom:185.835000px;}
.y1bd{bottom:186.555000px;}
.yeb{bottom:187.635000px;}
.y3a{bottom:190.515000px;}
.y129{bottom:193.395000px;}
.y5f{bottom:194.115000px;}
.y144{bottom:194.835000px;}
.y1cf{bottom:195.870000px;}
.y202{bottom:195.915000px;}
.y157{bottom:198.075000px;}
.y181{bottom:200.595000px;}
.y100{bottom:202.755000px;}
.y7b{bottom:204.195000px;}
.y173{bottom:204.915000px;}
.y227{bottom:205.275000px;}
.y216{bottom:206.355000px;}
.y24e{bottom:207.795000px;}
.yc2{bottom:208.515000px;}
.yda{bottom:209.235000px;}
.y16c{bottom:212.115000px;}
.yd1{bottom:213.915000px;}
.yaa{bottom:217.515000px;}
.y39{bottom:217.875000px;}
.y16{bottom:218.595000px;}
.y1ce{bottom:219.630000px;}
.y201{bottom:219.675000px;}
.y1f6{bottom:219.990000px;}
.y5e{bottom:221.475000px;}
.y1ff{bottom:221.835000px;}
.yea{bottom:223.275000px;}
.y226{bottom:227.595000px;}
.y128{bottom:229.035000px;}
.y143{bottom:230.475000px;}
.y172{bottom:231.195000px;}
.y156{bottom:233.715000px;}
.y180{bottom:236.235000px;}
.yff{bottom:238.395000px;}
.y7a{bottom:240.195000px;}
.y215{bottom:241.995000px;}
.y225{bottom:242.355000px;}
.y1cd{bottom:243.435000px;}
.y1f5{bottom:243.750000px;}
.yc1{bottom:244.155000px;}
.yd9{bottom:244.875000px;}
.y38{bottom:245.235000px;}
.y1bc{bottom:245.595000px;}
.y16b{bottom:247.755000px;}
.y5d{bottom:248.835000px;}
.yd0{bottom:249.555000px;}
.y10f{bottom:251.715000px;}
.ya9{bottom:253.155000px;}
.y1fe{bottom:253.515000px;}
.y15{bottom:254.235000px;}
.y96{bottom:257.115000px;}
.ye9{bottom:258.915000px;}
.y127{bottom:262.515000px;}
.y142{bottom:266.145000px;}
.y1cc{bottom:267.195000px;}
.y224{bottom:267.225000px;}
.y1f4{bottom:267.540000px;}
.y155{bottom:269.385000px;}
.y17f{bottom:271.905000px;}
.y37{bottom:272.625000px;}
.yfe{bottom:274.065000px;}
.y79{bottom:275.865000px;}
.y5c{bottom:276.225000px;}
.y214{bottom:277.665000px;}
.y24d{bottom:279.105000px;}
.yc0{bottom:279.825000px;}
.yd8{bottom:280.545000px;}
.y1bb{bottom:281.265000px;}
.y16a{bottom:283.425000px;}
.ycf{bottom:285.225000px;}
.ya8{bottom:288.825000px;}
.y1fd{bottom:289.185000px;}
.y14{bottom:289.905000px;}
.y1cb{bottom:290.955000px;}
.y1f3{bottom:291.300000px;}
.y223{bottom:291.705000px;}
.y95{bottom:292.785000px;}
.ye8{bottom:294.585000px;}
.y126{bottom:298.545000px;}
.y36{bottom:299.985000px;}
.y141{bottom:301.785000px;}
.y5b{bottom:303.945000px;}
.y154{bottom:305.025000px;}
.y17e{bottom:307.545000px;}
.yfd{bottom:309.705000px;}
.y78{bottom:311.505000px;}
.y213{bottom:313.305000px;}
.y1ca{bottom:314.715000px;}
.y24c{bottom:314.745000px;}
.y1f2{bottom:315.060000px;}
.ybf{bottom:315.465000px;}
.y191{bottom:315.825000px;}
.y222{bottom:316.185000px;}
.yd7{bottom:316.545000px;}
.y1ba{bottom:317.265000px;}
.y169{bottom:319.065000px;}
.yce{bottom:321.225000px;}
.y1de{bottom:321.585000px;}
.ya7{bottom:324.465000px;}
.y1fc{bottom:324.825000px;}
.y13{bottom:325.545000px;}
.y35{bottom:327.345000px;}
.ye7{bottom:327.705000px;}
.y94{bottom:328.425000px;}
.y119{bottom:330.225000px;}
.y5a{bottom:331.305000px;}
.y140{bottom:337.425000px;}
.y237{bottom:337.785000px;}
.y1c9{bottom:338.475000px;}
.y1f1{bottom:338.820000px;}
.y125{bottom:339.585000px;}
.y153{bottom:340.665000px;}
.y17d{bottom:343.185000px;}
.yfc{bottom:345.345000px;}
.y77{bottom:347.145000px;}
.y212{bottom:348.945000px;}
.y24b{bottom:350.745000px;}
.ybe{bottom:351.105000px;}
.yd6{bottom:352.185000px;}
.y1b9{bottom:352.905000px;}
.y34{bottom:354.705000px;}
.ycd{bottom:356.865000px;}
.y1dd{bottom:358.305000px;}
.y59{bottom:358.665000px;}
.ya6{bottom:360.105000px;}
.y1fb{bottom:360.465000px;}
.y12{bottom:361.185000px;}
.ye6{bottom:361.545000px;}
.y1f0{bottom:362.580000px;}
.y1c8{bottom:362.625000px;}
.y93{bottom:364.425000px;}
.y220{bottom:365.145000px;}
.y118{bottom:366.225000px;}
.y13f{bottom:373.065000px;}
.y236{bottom:373.425000px;}
.y152{bottom:376.665000px;}
.y124{bottom:378.465000px;}
.y17c{bottom:379.185000px;}
.yfb{bottom:381.345000px;}
.y33{bottom:382.065000px;}
.y76{bottom:382.785000px;}
.y211{bottom:384.945000px;}
.y1dc{bottom:385.665000px;}
.y58{bottom:386.025000px;}
.y1ef{bottom:386.340000px;}
.y1c7{bottom:386.385000px;}
.ybd{bottom:386.745000px;}
.y18f{bottom:387.105000px;}
.yd5{bottom:387.825000px;}
.y1b8{bottom:388.545000px;}
.y21a{bottom:389.985000px;}
.y168{bottom:390.345000px;}
.y92{bottom:391.785000px;}
.ycc{bottom:392.505000px;}
.ya5{bottom:395.745000px;}
.y11{bottom:397.185000px;}
.y117{bottom:401.910000px;}
.y1e8{bottom:406.230000px;}
.y13e{bottom:409.110000px;}
.y32{bottom:409.470000px;}
.y1c6{bottom:410.145000px;}
.y1ee{bottom:410.505000px;}
.y151{bottom:412.350000px;}
.y57{bottom:413.430000px;}
.y123{bottom:414.150000px;}
.y17b{bottom:414.870000px;}
.yfa{bottom:417.030000px;}
.y1db{bottom:417.390000px;}
.y75{bottom:418.830000px;}
.y210{bottom:420.630000px;}
.y24a{bottom:422.070000px;}
.ybc{bottom:422.790000px;}
.yd4{bottom:423.510000px;}
.y1b7{bottom:424.230000px;}
.y167{bottom:426.390000px;}
.ycb{bottom:428.190000px;}
.y91{bottom:428.910000px;}
.ya4{bottom:431.790000px;}
.y10{bottom:432.870000px;}
.y1c5{bottom:433.905000px;}
.y1a3{bottom:433.950000px;}
.y1ed{bottom:434.265000px;}
.y31{bottom:437.190000px;}
.y116{bottom:437.550000px;}
.y219{bottom:439.350000px;}
.y56{bottom:440.790000px;}
.y13d{bottom:444.750000px;}
.y150{bottom:447.990000px;}
.y122{bottom:449.790000px;}
.y17a{bottom:450.510000px;}
.yf9{bottom:452.670000px;}
.y1da{bottom:453.030000px;}
.y74{bottom:454.470000px;}
.y20f{bottom:456.270000px;}
.y1c4{bottom:457.665000px;}
.y249{bottom:457.710000px;}
.y1ec{bottom:458.025000px;}
.ybb{bottom:458.430000px;}
.yd3{bottom:459.150000px;}
.y1b6{bottom:459.870000px;}
.y166{bottom:462.030000px;}
.yca{bottom:463.830000px;}
.y30{bottom:464.550000px;}
.ya3{bottom:467.430000px;}
.y55{bottom:468.150000px;}
.yf{bottom:468.510000px;}
.y115{bottom:473.190000px;}
.y171{bottom:475.710000px;}
.y1a2{bottom:477.510000px;}
.y13c{bottom:480.390000px;}
.y1c3{bottom:481.425000px;}
.y1eb{bottom:481.785000px;}
.y14f{bottom:483.630000px;}
.y121{bottom:485.430000px;}
.y179{bottom:486.150000px;}
.yf8{bottom:488.310000px;}
.y1d9{bottom:489.030000px;}
.y73{bottom:490.110000px;}
.y2f{bottom:491.910000px;}
.y248{bottom:493.350000px;}
.yba{bottom:494.070000px;}
.y90{bottom:495.150000px;}
.y54{bottom:495.510000px;}
.y184{bottom:497.670000px;}
.y1a1{bottom:498.390000px;}
.yc9{bottom:499.470000px;}
.ya2{bottom:503.070000px;}
.ye{bottom:504.150000px;}
.y1ea{bottom:505.545000px;}
.y170{bottom:507.030000px;}
.y114{bottom:508.830000px;}
.y13b{bottom:516.030000px;}
.y2e{bottom:519.270000px;}
.y120{bottom:521.070000px;}
.y178{bottom:521.790000px;}
.y53{bottom:522.870000px;}
.yf7{bottom:523.950000px;}
.y1d8{bottom:524.670000px;}
.y72{bottom:525.750000px;}
.y20e{bottom:527.550000px;}
.y165{bottom:528.630000px;}
.y247{bottom:528.990000px;}
.y1e9{bottom:529.335000px;}
.yb9{bottom:529.710000px;}
.y1a0{bottom:530.070000px;}
.y8f{bottom:530.790000px;}
.y1b5{bottom:531.510000px;}
.y16f{bottom:534.780000px;}
.yc8{bottom:535.500000px;}
.y104{bottom:537.660000px;}
.ya1{bottom:538.740000px;}
.yd{bottom:539.820000px;}
.ye5{bottom:540.180000px;}
.y113{bottom:544.860000px;}
.y1d7{bottom:547.020000px;}
.y2d{bottom:547.380000px;}
.y12e{bottom:547.740000px;}
.y52{bottom:551.340000px;}
.y13a{bottom:551.700000px;}
.y235{bottom:552.060000px;}
.y14e{bottom:555.300000px;}
.y11f{bottom:557.100000px;}
.y177{bottom:557.460000px;}
.yf6{bottom:559.620000px;}
.y71{bottom:561.420000px;}
.y20d{bottom:563.580000px;}
.y164{bottom:564.300000px;}
.y246{bottom:565.020000px;}
.yb8{bottom:565.380000px;}
.y19f{bottom:565.740000px;}
.y8e{bottom:566.460000px;}
.y1b4{bottom:567.180000px;}
.y1c2{bottom:570.420000px;}
.yc7{bottom:571.140000px;}
.y18c{bottom:573.660000px;}
.ya0{bottom:574.380000px;}
.y12d{bottom:575.100000px;}
.yc{bottom:575.460000px;}
.ye4{bottom:575.820000px;}
.y112{bottom:577.980000px;}
.y51{bottom:582.660000px;}
.y139{bottom:587.700000px;}
.y14d{bottom:590.940000px;}
.y11e{bottom:592.740000px;}
.yf5{bottom:593.100000px;}
.y176{bottom:593.460000px;}
.y70{bottom:597.420000px;}
.y20c{bottom:599.220000px;}
.y163{bottom:600.300000px;}
.y245{bottom:600.660000px;}
.yb7{bottom:601.380000px;}
.y8d{bottom:602.100000px;}
.y1b3{bottom:602.820000px;}
.yc6{bottom:606.780000px;}
.y2c{bottom:607.500000px;}
.y9f{bottom:610.380000px;}
.yb{bottom:611.460000px;}
.y50{bottom:613.260000px;}
.y138{bottom:623.340000px;}
.y11d{bottom:624.060000px;}
.yf4{bottom:626.580000px;}
.y6f{bottom:633.060000px;}
.y20b{bottom:634.860000px;}
.y162{bottom:635.940000px;}
.y244{bottom:636.300000px;}
.yb6{bottom:637.020000px;}
.y8c{bottom:637.740000px;}
.y1b2{bottom:638.460000px;}
.y175{bottom:640.260000px;}
.y4f{bottom:640.620000px;}
.y2b{bottom:642.420000px;}
.y188{bottom:644.940000px;}
.y9e{bottom:646.020000px;}
.ya{bottom:647.100000px;}
.y11c{bottom:650.340000px;}
.y137{bottom:658.980000px;}
.yf3{bottom:662.220000px;}
.y1b1{bottom:664.020000px;}
.y4e{bottom:668.010000px;}
.y6e{bottom:668.730000px;}
.y161{bottom:671.610000px;}
.y243{bottom:671.970000px;}
.yb5{bottom:672.690000px;}
.y8b{bottom:673.410000px;}
.y11a{bottom:675.570000px;}
.y2a{bottom:677.370000px;}
.yc5{bottom:678.090000px;}
.y9d{bottom:681.690000px;}
.y20a{bottom:682.050000px;}
.y9{bottom:682.770000px;}
.y1ad{bottom:687.090000px;}
.y136{bottom:694.650000px;}
.y4d{bottom:695.370000px;}
.yf2{bottom:697.890000px;}
.y6d{bottom:704.370000px;}
.y160{bottom:707.250000px;}
.y242{bottom:707.610000px;}
.yb4{bottom:708.330000px;}
.y8a{bottom:709.410000px;}
.yc4{bottom:711.570000px;}
.y29{bottom:711.930000px;}
.y103{bottom:714.090000px;}
.y9c{bottom:717.330000px;}
.y8{bottom:718.410000px;}
.y4c{bottom:722.730000px;}
.y135{bottom:730.290000px;}
.y234{bottom:730.650000px;}
.yf1{bottom:733.530000px;}
.y209{bottom:737.490000px;}
.y6c{bottom:740.010000px;}
.y15f{bottom:740.370000px;}
.y241{bottom:743.610000px;}
.yb3{bottom:743.970000px;}
.y19e{bottom:744.330000px;}
.y89{bottom:745.050000px;}
.y28{bottom:746.850000px;}
.y102{bottom:747.210000px;}
.y10c{bottom:749.730000px;}
.y4b{bottom:750.450000px;}
.y9b{bottom:752.970000px;}
.y7{bottom:754.050000px;}
.ye3{bottom:754.410000px;}
.y200{bottom:760.890000px;}
.y134{bottom:765.930000px;}
.y233{bottom:766.290000px;}
.yf0{bottom:769.530000px;}
.y186{bottom:770.970000px;}
.y15e{bottom:774.210000px;}
.y6b{bottom:775.650000px;}
.y4a{bottom:777.810000px;}
.y240{bottom:779.250000px;}
.yb2{bottom:779.610000px;}
.y19d{bottom:779.970000px;}
.y88{bottom:780.690000px;}
.y27{bottom:781.770000px;}
.y12c{bottom:782.850000px;}
.y10b{bottom:785.370000px;}
.y111{bottom:787.530000px;}
.y6{bottom:790.050000px;}
.y133{bottom:797.610000px;}
.y232{bottom:801.975000px;}
.y49{bottom:805.215000px;}
.y26{bottom:809.175000px;}
.y15d{bottom:809.895000px;}
.y19c{bottom:811.335000px;}
.y6a{bottom:811.695000px;}
.y23f{bottom:814.935000px;}
.yb1{bottom:815.655000px;}
.y87{bottom:816.375000px;}
.y10e{bottom:818.535000px;}
.y185{bottom:820.335000px;}
.y10a{bottom:821.055000px;}
.y9a{bottom:822.135000px;}
.y132{bottom:825.015000px;}
.y5{bottom:825.735000px;}
.y48{bottom:832.575000px;}
.y19b{bottom:834.735000px;}
.y231{bottom:837.615000px;}
.y14c{bottom:840.855000px;}
.y25{bottom:844.095000px;}
.y15c{bottom:845.535000px;}
.y69{bottom:847.335000px;}
.y23e{bottom:850.575000px;}
.yb0{bottom:851.295000px;}
.y86{bottom:852.015000px;}
.yef{bottom:852.375000px;}
.y109{bottom:856.695000px;}
.ye2{bottom:858.855000px;}
.y47{bottom:859.935000px;}
.y4{bottom:861.375000px;}
.y1ac{bottom:867.855000px;}
.y24{bottom:871.455000px;}
.y230{bottom:873.255000px;}
.y14b{bottom:876.495000px;}
.y15b{bottom:881.175000px;}
.y68{bottom:882.975000px;}
.yaf{bottom:884.415000px;}
.y23d{bottom:886.215000px;}
.y46{bottom:887.295000px;}
.y85{bottom:888.015000px;}
.y3{bottom:888.735000px;}
.y110{bottom:890.175000px;}
.ye1{bottom:892.335000px;}
.yee{bottom:893.775000px;}
.y19a{bottom:906.015000px;}
.y23{bottom:906.375000px;}
.y22f{bottom:908.895000px;}
.y2{bottom:909.975000px;}
.y14a{bottom:912.135000px;}
.y45{bottom:914.655000px;}
.y15a{bottom:916.815000px;}
.y67{bottom:918.615000px;}
.y23c{bottom:921.855000px;}
.y84{bottom:923.655000px;}
.ye0{bottom:928.335000px;}
.yae{bottom:929.415000px;}
.y22{bottom:941.325000px;}
.y44{bottom:942.045000px;}
.y22e{bottom:944.925000px;}
.y149{bottom:948.165000px;}
.y159{bottom:950.325000px;}
.y66{bottom:954.285000px;}
.y23b{bottom:957.885000px;}
.y83{bottom:959.325000px;}
.ydf{bottom:964.005000px;}
.y43{bottom:969.405000px;}
.y1e7{bottom:970.485000px;}
.y21{bottom:976.245000px;}
.y199{bottom:977.325000px;}
.y22d{bottom:980.565000px;}
.y23a{bottom:989.205000px;}
.y65{bottom:990.285000px;}
.y1aa{bottom:993.885000px;}
.y82{bottom:994.965000px;}
.y148{bottom:995.325000px;}
.y42{bottom:996.765000px;}
.y108{bottom:997.125000px;}
.yad{bottom:997.485000px;}
.y11b{bottom:998.925000px;}
.yde{bottom:999.645000px;}
.y1e6{bottom:1007.205000px;}
.y20{bottom:1011.165000px;}
.y22c{bottom:1016.205000px;}
.y41{bottom:1024.125000px;}
.y64{bottom:1025.925000px;}
.y81{bottom:1030.605000px;}
.ydd{bottom:1032.765000px;}
.y239{bottom:1033.125000px;}
.y1e5{bottom:1034.565000px;}
.y147{bottom:1036.365000px;}
.y1f{bottom:1046.085000px;}
.y198{bottom:1048.605000px;}
.y40{bottom:1051.485000px;}
.y22b{bottom:1051.845000px;}
.y63{bottom:1061.565000px;}
.y80{bottom:1066.290000px;}
.y3f{bottom:1078.890000px;}
.y1e{bottom:1080.690000px;}
.y1c0{bottom:1086.810000px;}
.y22a{bottom:1087.530000px;}
.y197{bottom:1092.570000px;}
.y62{bottom:1097.250000px;}
.y7f{bottom:1102.290000px;}
.y3e{bottom:1106.250000px;}
.y1d{bottom:1108.050000px;}
.y1bf{bottom:1123.530000px;}
.y3d{bottom:1134.690000px;}
.y1c{bottom:1135.050000px;}
.y7e{bottom:1137.930000px;}
.y1{bottom:1140.810000px;}
.y131{bottom:1141.890000px;}
.h18{height:4.750313px;}
.h19{height:15.438516px;}
.h12{height:23.760000px;}
.h1a{height:24.120000px;}
.h1b{height:24.156000px;}
.h9{height:27.360000px;}
.hc{height:27.396000px;}
.h17{height:44.676000px;}
.h8{height:52.890469px;}
.hb{height:54.720000px;}
.hd{height:54.756000px;}
.h4{height:64.129219px;}
.h3{height:68.002031px;}
.h2{height:69.086250px;}
.h7{height:74.004654px;}
.h5{height:74.817422px;}
.h6{height:81.101250px;}
.h10{height:82.116000px;}
.ha{height:109.476000px;}
.he{height:137.196000px;}
.h14{height:142.956000px;}
.h11{height:164.190000px;}
.hf{height:164.235000px;}
.h16{height:309.345000px;}
.h13{height:499.830000px;}
.h15{height:547.710000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:30.960000px;}
.w10{width:30.996000px;}
.we{width:31.320000px;}
.wf{width:31.356000px;}
.w9{width:41.436000px;}
.w8{width:42.480000px;}
.w7{width:149.472000px;}
.wa{width:211.065000px;}
.w6{width:213.195000px;}
.w5{width:222.225000px;}
.w3{width:337.110000px;}
.w4{width:337.470000px;}
.wb{width:460.980000px;}
.wc{width:477.570000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.480000px;}
.x2e{left:7.560000px;}
.x30{left:11.880000px;}
.x26{left:17.640000px;}
.x2d{left:119.916000px;}
.x1c{left:120.996000px;}
.x1{left:127.475987px;}
.x7{left:128.555987px;}
.x20{left:129.995987px;}
.x8{left:134.711987px;}
.x18{left:136.511987px;}
.x9{left:137.591987px;}
.x5{left:140.111987px;}
.xe{left:144.071987px;}
.x2a{left:146.231987px;}
.x2b{left:153.794987px;}
.x29{left:158.114987px;}
.x6{left:173.234987px;}
.x1b{left:177.914987px;}
.x35{left:181.514987px;}
.x10{left:186.914987px;}
.xb{left:208.514987px;}
.x15{left:220.784987px;}
.x3{left:243.104987px;}
.x12{left:246.704987px;}
.xa{left:292.424987px;}
.x16{left:299.984987px;}
.x21{left:323.069987px;}
.x28{left:333.510000px;}
.x19{left:334.589987px;}
.x22{left:345.030000px;}
.x1f{left:363.749987px;}
.x2c{left:366.269987px;}
.x13{left:377.429987px;}
.x27{left:379.229987px;}
.x4{left:448.019987px;}
.x1e{left:459.540000px;}
.xc{left:528.689987px;}
.x2{left:557.849987px;}
.x23{left:559.650000px;}
.x2f{left:598.215000px;}
.x31{left:629.895000px;}
.x32{left:661.935000px;}
.x1a{left:677.444987px;}
.x33{left:694.005000px;}
.x24{left:710.565000px;}
.x11{left:723.164987px;}
.x34{left:725.685000px;}
.xf{left:747.284987px;}
.x17{left:751.244987px;}
.x25{left:754.485000px;}
.xd{left:756.689987px;}
.x14{left:759.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.538667pt;}
.ls2{letter-spacing:-0.483733pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.261333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.105067pt;}
.ls11{letter-spacing:0.138133pt;}
.ls1a{letter-spacing:0.138240pt;}
.ls4{letter-spacing:0.171733pt;}
.ls3{letter-spacing:0.202133pt;}
.ls1c{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.501867pt;}
.ls8{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.609280pt;}
.ls6{letter-spacing:0.619520pt;}
.ls15{letter-spacing:0.634667pt;}
.ls13{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.832000pt;}
.ls12{letter-spacing:1.136000pt;}
.ls10{letter-spacing:1.450667pt;}
.ls1e{letter-spacing:1.781333pt;}
.ls5{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.112000pt;}
.ls19{letter-spacing:5.391360pt;}
.ls7{letter-spacing:130.555307pt;}
.ls9{letter-spacing:134.395307pt;}
.ls17{letter-spacing:151.024640pt;}
.ws7{word-spacing:-16.912640pt;}
.wsc{word-spacing:-16.255787pt;}
.ws1{word-spacing:-16.122987pt;}
.wse{word-spacing:-15.897600pt;}
.ws3{word-spacing:-15.823253pt;}
.ws4{word-spacing:-15.792853pt;}
.wsa{word-spacing:-15.759253pt;}
.ws5{word-spacing:-15.726187pt;}
.ws8{word-spacing:-15.621120pt;}
.wsd{word-spacing:-15.208853pt;}
.ws9{word-spacing:-15.173120pt;}
.ws2{word-spacing:-15.137387pt;}
.wsf{word-spacing:-15.082453pt;}
.ws6{word-spacing:-15.034453pt;}
.wsb{word-spacing:-14.981120pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-10.201173pt;}
._7{margin-left:-8.349867pt;}
._4{margin-left:-4.782507pt;}
._1a{margin-left:-3.709440pt;}
._5{margin-left:-2.783147pt;}
._12{margin-left:-1.856853pt;}
._2{margin-left:-0.967680pt;}
._0{width:1.105920pt;}
._1{width:2.819413pt;}
._3{width:4.007253pt;}
._d{width:4.899840pt;}
._11{width:6.029653pt;}
._10{width:7.326720pt;}
._1b{width:8.294400pt;}
._f{width:9.192960pt;}
._a{width:10.437120pt;}
._b{width:11.473920pt;}
._c{width:12.510720pt;}
._8{width:13.547520pt;}
._9{width:14.446080pt;}
._15{width:17.192107pt;}
._1c{width:18.938880pt;}
._1d{width:20.666880pt;}
._14{width:22.187520pt;}
._13{width:23.293440pt;}
._e{width:25.021440pt;}
._20{width:25.989120pt;}
._27{width:27.578880pt;}
._26{width:28.546560pt;}
._16{width:30.067200pt;}
._17{width:31.030613pt;}
._18{width:31.933440pt;}
._25{width:32.832000pt;}
._19{width:33.798827pt;}
._24{width:34.965333pt;}
._2a{width:36.698453pt;}
._1e{width:38.430720pt;}
._1f{width:40.209067pt;}
._23{width:41.739093pt;}
._2d{width:43.126613pt;}
._2e{width:44.190720pt;}
._22{width:45.480960pt;}
._21{width:46.577493pt;}
._42{width:47.487573pt;}
._43{width:48.798720pt;}
._28{width:51.148800pt;}
._29{width:52.254720pt;}
._3a{width:53.489493pt;}
._4d{width:61.585920pt;}
._4c{width:63.028053pt;}
._3e{width:70.848000pt;}
._3f{width:71.746560pt;}
._50{width:73.612800pt;}
._2c{width:74.990933pt;}
._2b{width:76.170240pt;}
._3b{width:77.106347pt;}
._38{width:78.174720pt;}
._36{width:79.073280pt;}
._37{width:80.040960pt;}
._51{width:84.008107pt;}
._31{width:104.052053pt;}
._30{width:104.966827pt;}
._41{width:116.745813pt;}
._40{width:117.840213pt;}
._32{width:137.617920pt;}
._33{width:139.069440pt;}
._39{width:158.413653pt;}
._4f{width:166.924800pt;}
._4e{width:168.099840pt;}
._46{width:169.726293pt;}
._45{width:170.652160pt;}
._44{width:171.620693pt;}
._49{width:188.411733pt;}
._3d{width:194.987520pt;}
._3c{width:196.775253pt;}
._52{width:200.586240pt;}
._4b{width:382.371840pt;}
._4a{width:383.503360pt;}
._47{width:412.444160pt;}
._48{width:413.614080pt;}
._35{width:639.900160pt;}
._34{width:1378.095787pt;}
._2f{width:1531.422720pt;}
.fs5{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y1c1{bottom:4.800000pt;}
.y221{bottom:5.120000pt;}
.y187{bottom:8.000000pt;}
.y18e{bottom:8.026667pt;}
.y1a9{bottom:8.032000pt;}
.y21d{bottom:17.000000pt;}
.y21f{bottom:18.600000pt;}
.y1d6{bottom:25.920000pt;}
.y1fa{bottom:26.240000pt;}
.y18d{bottom:32.320000pt;}
.y18b{bottom:32.346667pt;}
.y196{bottom:32.354667pt;}
.y190{bottom:32.360000pt;}
.y21c{bottom:34.280000pt;}
.y21e{bottom:35.880000pt;}
.y21b{bottom:38.440000pt;}
.y1d5{bottom:47.040000pt;}
.y208{bottom:47.080000pt;}
.y1f9{bottom:47.360000pt;}
.y1b{bottom:50.912000pt;}
.y1ab{bottom:56.640000pt;}
.y18a{bottom:56.666667pt;}
.y1a8{bottom:56.674667pt;}
.y195{bottom:56.994667pt;}
.y1a{bottom:67.872000pt;}
.y1d4{bottom:68.160000pt;}
.y207{bottom:68.200000pt;}
.y1e2{bottom:68.480000pt;}
.y1b0{bottom:80.960000pt;}
.y189{bottom:80.986667pt;}
.y1a7{bottom:80.994667pt;}
.y194{bottom:81.314667pt;}
.y1d3{bottom:89.306667pt;}
.y206{bottom:89.320000pt;}
.y1e1{bottom:89.600000pt;}
.y107{bottom:98.912000pt;}
.y19{bottom:99.872000pt;}
.y99{bottom:101.472000pt;}
.yed{bottom:103.072000pt;}
.y1a5{bottom:105.306667pt;}
.y192{bottom:105.312000pt;}
.y1af{bottom:105.320000pt;}
.y193{bottom:105.634667pt;}
.y1e4{bottom:106.912000pt;}
.y12b{bottom:108.512000pt;}
.y146{bottom:109.472000pt;}
.y1d2{bottom:110.426667pt;}
.y205{bottom:110.440000pt;}
.y1f8{bottom:110.720000pt;}
.y1e0{bottom:110.746667pt;}
.y130{bottom:112.352000pt;}
.y1a6{bottom:112.992000pt;}
.y183{bottom:114.592000pt;}
.y101{bottom:116.544000pt;}
.y1be{bottom:116.864000pt;}
.y7d{bottom:118.144000pt;}
.y229{bottom:118.784000pt;}
.y218{bottom:119.744000pt;}
.y3c{bottom:120.704000pt;}
.y24f{bottom:121.024000pt;}
.ydc{bottom:122.624000pt;}
.y1e3{bottom:123.264000pt;}
.y61{bottom:123.904000pt;}
.y16e{bottom:124.864000pt;}
.y12f{bottom:125.184000pt;}
.y10d{bottom:126.784000pt;}
.y18{bottom:127.744000pt;}
.y1ae{bottom:129.640000pt;}
.yac{bottom:129.664000pt;}
.y1a4{bottom:129.666667pt;}
.y106{bottom:130.944000pt;}
.y1d1{bottom:131.546667pt;}
.y204{bottom:131.560000pt;}
.y1f7{bottom:131.866667pt;}
.y98{bottom:133.184000pt;}
.yec{bottom:135.106667pt;}
.y12a{bottom:140.226667pt;}
.y145{bottom:141.186667pt;}
.y238{bottom:141.506667pt;}
.y1df{bottom:144.066667pt;}
.y158{bottom:144.386667pt;}
.y3b{bottom:145.026667pt;}
.y182{bottom:146.306667pt;}
.y60{bottom:148.226667pt;}
.y7c{bottom:149.826667pt;}
.y228{bottom:150.466667pt;}
.y217{bottom:151.746667pt;}
.y1d0{bottom:152.986667pt;}
.y203{bottom:153.026667pt;}
.yc3{bottom:153.346667pt;}
.y174{bottom:153.986667pt;}
.ydb{bottom:154.306667pt;}
.y16d{bottom:156.546667pt;}
.yd2{bottom:158.466667pt;}
.yab{bottom:161.346667pt;}
.y17{bottom:162.306667pt;}
.y105{bottom:162.626667pt;}
.y97{bottom:165.186667pt;}
.y1bd{bottom:165.826667pt;}
.yeb{bottom:166.786667pt;}
.y3a{bottom:169.346667pt;}
.y129{bottom:171.906667pt;}
.y5f{bottom:172.546667pt;}
.y144{bottom:173.186667pt;}
.y1cf{bottom:174.106667pt;}
.y202{bottom:174.146667pt;}
.y157{bottom:176.066667pt;}
.y181{bottom:178.306667pt;}
.y100{bottom:180.226667pt;}
.y7b{bottom:181.506667pt;}
.y173{bottom:182.146667pt;}
.y227{bottom:182.466667pt;}
.y216{bottom:183.426667pt;}
.y24e{bottom:184.706667pt;}
.yc2{bottom:185.346667pt;}
.yda{bottom:185.986667pt;}
.y16c{bottom:188.546667pt;}
.yd1{bottom:190.146667pt;}
.yaa{bottom:193.346667pt;}
.y39{bottom:193.666667pt;}
.y16{bottom:194.306667pt;}
.y1ce{bottom:195.226667pt;}
.y201{bottom:195.266667pt;}
.y1f6{bottom:195.546667pt;}
.y5e{bottom:196.866667pt;}
.y1ff{bottom:197.186667pt;}
.yea{bottom:198.466667pt;}
.y226{bottom:202.306667pt;}
.y128{bottom:203.586667pt;}
.y143{bottom:204.866667pt;}
.y172{bottom:205.506667pt;}
.y156{bottom:207.746667pt;}
.y180{bottom:209.986667pt;}
.yff{bottom:211.906667pt;}
.y7a{bottom:213.506667pt;}
.y215{bottom:215.106667pt;}
.y225{bottom:215.426667pt;}
.y1cd{bottom:216.386667pt;}
.y1f5{bottom:216.666667pt;}
.yc1{bottom:217.026667pt;}
.yd9{bottom:217.666667pt;}
.y38{bottom:217.986667pt;}
.y1bc{bottom:218.306667pt;}
.y16b{bottom:220.226667pt;}
.y5d{bottom:221.186667pt;}
.yd0{bottom:221.826667pt;}
.y10f{bottom:223.746667pt;}
.ya9{bottom:225.026667pt;}
.y1fe{bottom:225.346667pt;}
.y15{bottom:225.986667pt;}
.y96{bottom:228.546667pt;}
.ye9{bottom:230.146667pt;}
.y127{bottom:233.346667pt;}
.y142{bottom:236.573333pt;}
.y1cc{bottom:237.506667pt;}
.y224{bottom:237.533333pt;}
.y1f4{bottom:237.813333pt;}
.y155{bottom:239.453333pt;}
.y17f{bottom:241.693333pt;}
.y37{bottom:242.333333pt;}
.yfe{bottom:243.613333pt;}
.y79{bottom:245.213333pt;}
.y5c{bottom:245.533333pt;}
.y214{bottom:246.813333pt;}
.y24d{bottom:248.093333pt;}
.yc0{bottom:248.733333pt;}
.yd8{bottom:249.373333pt;}
.y1bb{bottom:250.013333pt;}
.y16a{bottom:251.933333pt;}
.ycf{bottom:253.533333pt;}
.ya8{bottom:256.733333pt;}
.y1fd{bottom:257.053333pt;}
.y14{bottom:257.693333pt;}
.y1cb{bottom:258.626667pt;}
.y1f3{bottom:258.933333pt;}
.y223{bottom:259.293333pt;}
.y95{bottom:260.253333pt;}
.ye8{bottom:261.853333pt;}
.y126{bottom:265.373333pt;}
.y36{bottom:266.653333pt;}
.y141{bottom:268.253333pt;}
.y5b{bottom:270.173333pt;}
.y154{bottom:271.133333pt;}
.y17e{bottom:273.373333pt;}
.yfd{bottom:275.293333pt;}
.y78{bottom:276.893333pt;}
.y213{bottom:278.493333pt;}
.y1ca{bottom:279.746667pt;}
.y24c{bottom:279.773333pt;}
.y1f2{bottom:280.053333pt;}
.ybf{bottom:280.413333pt;}
.y191{bottom:280.733333pt;}
.y222{bottom:281.053333pt;}
.yd7{bottom:281.373333pt;}
.y1ba{bottom:282.013333pt;}
.y169{bottom:283.613333pt;}
.yce{bottom:285.533333pt;}
.y1de{bottom:285.853333pt;}
.ya7{bottom:288.413333pt;}
.y1fc{bottom:288.733333pt;}
.y13{bottom:289.373333pt;}
.y35{bottom:290.973333pt;}
.ye7{bottom:291.293333pt;}
.y94{bottom:291.933333pt;}
.y119{bottom:293.533333pt;}
.y5a{bottom:294.493333pt;}
.y140{bottom:299.933333pt;}
.y237{bottom:300.253333pt;}
.y1c9{bottom:300.866667pt;}
.y1f1{bottom:301.173333pt;}
.y125{bottom:301.853333pt;}
.y153{bottom:302.813333pt;}
.y17d{bottom:305.053333pt;}
.yfc{bottom:306.973333pt;}
.y77{bottom:308.573333pt;}
.y212{bottom:310.173333pt;}
.y24b{bottom:311.773333pt;}
.ybe{bottom:312.093333pt;}
.yd6{bottom:313.053333pt;}
.y1b9{bottom:313.693333pt;}
.y34{bottom:315.293333pt;}
.ycd{bottom:317.213333pt;}
.y1dd{bottom:318.493333pt;}
.y59{bottom:318.813333pt;}
.ya6{bottom:320.093333pt;}
.y1fb{bottom:320.413333pt;}
.y12{bottom:321.053333pt;}
.ye6{bottom:321.373333pt;}
.y1f0{bottom:322.293333pt;}
.y1c8{bottom:322.333333pt;}
.y93{bottom:323.933333pt;}
.y220{bottom:324.573333pt;}
.y118{bottom:325.533333pt;}
.y13f{bottom:331.613333pt;}
.y236{bottom:331.933333pt;}
.y152{bottom:334.813333pt;}
.y124{bottom:336.413333pt;}
.y17c{bottom:337.053333pt;}
.yfb{bottom:338.973333pt;}
.y33{bottom:339.613333pt;}
.y76{bottom:340.253333pt;}
.y211{bottom:342.173333pt;}
.y1dc{bottom:342.813333pt;}
.y58{bottom:343.133333pt;}
.y1ef{bottom:343.413333pt;}
.y1c7{bottom:343.453333pt;}
.ybd{bottom:343.773333pt;}
.y18f{bottom:344.093333pt;}
.yd5{bottom:344.733333pt;}
.y1b8{bottom:345.373333pt;}
.y21a{bottom:346.653333pt;}
.y168{bottom:346.973333pt;}
.y92{bottom:348.253333pt;}
.ycc{bottom:348.893333pt;}
.ya5{bottom:351.773333pt;}
.y11{bottom:353.053333pt;}
.y117{bottom:357.253333pt;}
.y1e8{bottom:361.093333pt;}
.y13e{bottom:363.653333pt;}
.y32{bottom:363.973333pt;}
.y1c6{bottom:364.573333pt;}
.y1ee{bottom:364.893333pt;}
.y151{bottom:366.533333pt;}
.y57{bottom:367.493333pt;}
.y123{bottom:368.133333pt;}
.y17b{bottom:368.773333pt;}
.yfa{bottom:370.693333pt;}
.y1db{bottom:371.013333pt;}
.y75{bottom:372.293333pt;}
.y210{bottom:373.893333pt;}
.y24a{bottom:375.173333pt;}
.ybc{bottom:375.813333pt;}
.yd4{bottom:376.453333pt;}
.y1b7{bottom:377.093333pt;}
.y167{bottom:379.013333pt;}
.ycb{bottom:380.613333pt;}
.y91{bottom:381.253333pt;}
.ya4{bottom:383.813333pt;}
.y10{bottom:384.773333pt;}
.y1c5{bottom:385.693333pt;}
.y1a3{bottom:385.733333pt;}
.y1ed{bottom:386.013333pt;}
.y31{bottom:388.613333pt;}
.y116{bottom:388.933333pt;}
.y219{bottom:390.533333pt;}
.y56{bottom:391.813333pt;}
.y13d{bottom:395.333333pt;}
.y150{bottom:398.213333pt;}
.y122{bottom:399.813333pt;}
.y17a{bottom:400.453333pt;}
.yf9{bottom:402.373333pt;}
.y1da{bottom:402.693333pt;}
.y74{bottom:403.973333pt;}
.y20f{bottom:405.573333pt;}
.y1c4{bottom:406.813333pt;}
.y249{bottom:406.853333pt;}
.y1ec{bottom:407.133333pt;}
.ybb{bottom:407.493333pt;}
.yd3{bottom:408.133333pt;}
.y1b6{bottom:408.773333pt;}
.y166{bottom:410.693333pt;}
.yca{bottom:412.293333pt;}
.y30{bottom:412.933333pt;}
.ya3{bottom:415.493333pt;}
.y55{bottom:416.133333pt;}
.yf{bottom:416.453333pt;}
.y115{bottom:420.613333pt;}
.y171{bottom:422.853333pt;}
.y1a2{bottom:424.453333pt;}
.y13c{bottom:427.013333pt;}
.y1c3{bottom:427.933333pt;}
.y1eb{bottom:428.253333pt;}
.y14f{bottom:429.893333pt;}
.y121{bottom:431.493333pt;}
.y179{bottom:432.133333pt;}
.yf8{bottom:434.053333pt;}
.y1d9{bottom:434.693333pt;}
.y73{bottom:435.653333pt;}
.y2f{bottom:437.253333pt;}
.y248{bottom:438.533333pt;}
.yba{bottom:439.173333pt;}
.y90{bottom:440.133333pt;}
.y54{bottom:440.453333pt;}
.y184{bottom:442.373333pt;}
.y1a1{bottom:443.013333pt;}
.yc9{bottom:443.973333pt;}
.ya2{bottom:447.173333pt;}
.ye{bottom:448.133333pt;}
.y1ea{bottom:449.373333pt;}
.y170{bottom:450.693333pt;}
.y114{bottom:452.293333pt;}
.y13b{bottom:458.693333pt;}
.y2e{bottom:461.573333pt;}
.y120{bottom:463.173333pt;}
.y178{bottom:463.813333pt;}
.y53{bottom:464.773333pt;}
.yf7{bottom:465.733333pt;}
.y1d8{bottom:466.373333pt;}
.y72{bottom:467.333333pt;}
.y20e{bottom:468.933333pt;}
.y165{bottom:469.893333pt;}
.y247{bottom:470.213333pt;}
.y1e9{bottom:470.520000pt;}
.yb9{bottom:470.853333pt;}
.y1a0{bottom:471.173333pt;}
.y8f{bottom:471.813333pt;}
.y1b5{bottom:472.453333pt;}
.y16f{bottom:475.360000pt;}
.yc8{bottom:476.000000pt;}
.y104{bottom:477.920000pt;}
.ya1{bottom:478.880000pt;}
.yd{bottom:479.840000pt;}
.ye5{bottom:480.160000pt;}
.y113{bottom:484.320000pt;}
.y1d7{bottom:486.240000pt;}
.y2d{bottom:486.560000pt;}
.y12e{bottom:486.880000pt;}
.y52{bottom:490.080000pt;}
.y13a{bottom:490.400000pt;}
.y235{bottom:490.720000pt;}
.y14e{bottom:493.600000pt;}
.y11f{bottom:495.200000pt;}
.y177{bottom:495.520000pt;}
.yf6{bottom:497.440000pt;}
.y71{bottom:499.040000pt;}
.y20d{bottom:500.960000pt;}
.y164{bottom:501.600000pt;}
.y246{bottom:502.240000pt;}
.yb8{bottom:502.560000pt;}
.y19f{bottom:502.880000pt;}
.y8e{bottom:503.520000pt;}
.y1b4{bottom:504.160000pt;}
.y1c2{bottom:507.040000pt;}
.yc7{bottom:507.680000pt;}
.y18c{bottom:509.920000pt;}
.ya0{bottom:510.560000pt;}
.y12d{bottom:511.200000pt;}
.yc{bottom:511.520000pt;}
.ye4{bottom:511.840000pt;}
.y112{bottom:513.760000pt;}
.y51{bottom:517.920000pt;}
.y139{bottom:522.400000pt;}
.y14d{bottom:525.280000pt;}
.y11e{bottom:526.880000pt;}
.yf5{bottom:527.200000pt;}
.y176{bottom:527.520000pt;}
.y70{bottom:531.040000pt;}
.y20c{bottom:532.640000pt;}
.y163{bottom:533.600000pt;}
.y245{bottom:533.920000pt;}
.yb7{bottom:534.560000pt;}
.y8d{bottom:535.200000pt;}
.y1b3{bottom:535.840000pt;}
.yc6{bottom:539.360000pt;}
.y2c{bottom:540.000000pt;}
.y9f{bottom:542.560000pt;}
.yb{bottom:543.520000pt;}
.y50{bottom:545.120000pt;}
.y138{bottom:554.080000pt;}
.y11d{bottom:554.720000pt;}
.yf4{bottom:556.960000pt;}
.y6f{bottom:562.720000pt;}
.y20b{bottom:564.320000pt;}
.y162{bottom:565.280000pt;}
.y244{bottom:565.600000pt;}
.yb6{bottom:566.240000pt;}
.y8c{bottom:566.880000pt;}
.y1b2{bottom:567.520000pt;}
.y175{bottom:569.120000pt;}
.y4f{bottom:569.440000pt;}
.y2b{bottom:571.040000pt;}
.y188{bottom:573.280000pt;}
.y9e{bottom:574.240000pt;}
.ya{bottom:575.200000pt;}
.y11c{bottom:578.080000pt;}
.y137{bottom:585.760000pt;}
.yf3{bottom:588.640000pt;}
.y1b1{bottom:590.240000pt;}
.y4e{bottom:593.786667pt;}
.y6e{bottom:594.426667pt;}
.y161{bottom:596.986667pt;}
.y243{bottom:597.306667pt;}
.yb5{bottom:597.946667pt;}
.y8b{bottom:598.586667pt;}
.y11a{bottom:600.506667pt;}
.y2a{bottom:602.106667pt;}
.yc5{bottom:602.746667pt;}
.y9d{bottom:605.946667pt;}
.y20a{bottom:606.266667pt;}
.y9{bottom:606.906667pt;}
.y1ad{bottom:610.746667pt;}
.y136{bottom:617.466667pt;}
.y4d{bottom:618.106667pt;}
.yf2{bottom:620.346667pt;}
.y6d{bottom:626.106667pt;}
.y160{bottom:628.666667pt;}
.y242{bottom:628.986667pt;}
.yb4{bottom:629.626667pt;}
.y8a{bottom:630.586667pt;}
.yc4{bottom:632.506667pt;}
.y29{bottom:632.826667pt;}
.y103{bottom:634.746667pt;}
.y9c{bottom:637.626667pt;}
.y8{bottom:638.586667pt;}
.y4c{bottom:642.426667pt;}
.y135{bottom:649.146667pt;}
.y234{bottom:649.466667pt;}
.yf1{bottom:652.026667pt;}
.y209{bottom:655.546667pt;}
.y6c{bottom:657.786667pt;}
.y15f{bottom:658.106667pt;}
.y241{bottom:660.986667pt;}
.yb3{bottom:661.306667pt;}
.y19e{bottom:661.626667pt;}
.y89{bottom:662.266667pt;}
.y28{bottom:663.866667pt;}
.y102{bottom:664.186667pt;}
.y10c{bottom:666.426667pt;}
.y4b{bottom:667.066667pt;}
.y9b{bottom:669.306667pt;}
.y7{bottom:670.266667pt;}
.ye3{bottom:670.586667pt;}
.y200{bottom:676.346667pt;}
.y134{bottom:680.826667pt;}
.y233{bottom:681.146667pt;}
.yf0{bottom:684.026667pt;}
.y186{bottom:685.306667pt;}
.y15e{bottom:688.186667pt;}
.y6b{bottom:689.466667pt;}
.y4a{bottom:691.386667pt;}
.y240{bottom:692.666667pt;}
.yb2{bottom:692.986667pt;}
.y19d{bottom:693.306667pt;}
.y88{bottom:693.946667pt;}
.y27{bottom:694.906667pt;}
.y12c{bottom:695.866667pt;}
.y10b{bottom:698.106667pt;}
.y111{bottom:700.026667pt;}
.y6{bottom:702.266667pt;}
.y133{bottom:708.986667pt;}
.y232{bottom:712.866667pt;}
.y49{bottom:715.746667pt;}
.y26{bottom:719.266667pt;}
.y15d{bottom:719.906667pt;}
.y19c{bottom:721.186667pt;}
.y6a{bottom:721.506667pt;}
.y23f{bottom:724.386667pt;}
.yb1{bottom:725.026667pt;}
.y87{bottom:725.666667pt;}
.y10e{bottom:727.586667pt;}
.y185{bottom:729.186667pt;}
.y10a{bottom:729.826667pt;}
.y9a{bottom:730.786667pt;}
.y132{bottom:733.346667pt;}
.y5{bottom:733.986667pt;}
.y48{bottom:740.066667pt;}
.y19b{bottom:741.986667pt;}
.y231{bottom:744.546667pt;}
.y14c{bottom:747.426667pt;}
.y25{bottom:750.306667pt;}
.y15c{bottom:751.586667pt;}
.y69{bottom:753.186667pt;}
.y23e{bottom:756.066667pt;}
.yb0{bottom:756.706667pt;}
.y86{bottom:757.346667pt;}
.yef{bottom:757.666667pt;}
.y109{bottom:761.506667pt;}
.ye2{bottom:763.426667pt;}
.y47{bottom:764.386667pt;}
.y4{bottom:765.666667pt;}
.y1ac{bottom:771.426667pt;}
.y24{bottom:774.626667pt;}
.y230{bottom:776.226667pt;}
.y14b{bottom:779.106667pt;}
.y15b{bottom:783.266667pt;}
.y68{bottom:784.866667pt;}
.yaf{bottom:786.146667pt;}
.y23d{bottom:787.746667pt;}
.y46{bottom:788.706667pt;}
.y85{bottom:789.346667pt;}
.y3{bottom:789.986667pt;}
.y110{bottom:791.266667pt;}
.ye1{bottom:793.186667pt;}
.yee{bottom:794.466667pt;}
.y19a{bottom:805.346667pt;}
.y23{bottom:805.666667pt;}
.y22f{bottom:807.906667pt;}
.y2{bottom:808.866667pt;}
.y14a{bottom:810.786667pt;}
.y45{bottom:813.026667pt;}
.y15a{bottom:814.946667pt;}
.y67{bottom:816.546667pt;}
.y23c{bottom:819.426667pt;}
.y84{bottom:821.026667pt;}
.ye0{bottom:825.186667pt;}
.yae{bottom:826.146667pt;}
.y22{bottom:836.733333pt;}
.y44{bottom:837.373333pt;}
.y22e{bottom:839.933333pt;}
.y149{bottom:842.813333pt;}
.y159{bottom:844.733333pt;}
.y66{bottom:848.253333pt;}
.y23b{bottom:851.453333pt;}
.y83{bottom:852.733333pt;}
.ydf{bottom:856.893333pt;}
.y43{bottom:861.693333pt;}
.y1e7{bottom:862.653333pt;}
.y21{bottom:867.773333pt;}
.y199{bottom:868.733333pt;}
.y22d{bottom:871.613333pt;}
.y23a{bottom:879.293333pt;}
.y65{bottom:880.253333pt;}
.y1aa{bottom:883.453333pt;}
.y82{bottom:884.413333pt;}
.y148{bottom:884.733333pt;}
.y42{bottom:886.013333pt;}
.y108{bottom:886.333333pt;}
.yad{bottom:886.653333pt;}
.y11b{bottom:887.933333pt;}
.yde{bottom:888.573333pt;}
.y1e6{bottom:895.293333pt;}
.y20{bottom:898.813333pt;}
.y22c{bottom:903.293333pt;}
.y41{bottom:910.333333pt;}
.y64{bottom:911.933333pt;}
.y81{bottom:916.093333pt;}
.ydd{bottom:918.013333pt;}
.y239{bottom:918.333333pt;}
.y1e5{bottom:919.613333pt;}
.y147{bottom:921.213333pt;}
.y1f{bottom:929.853333pt;}
.y198{bottom:932.093333pt;}
.y40{bottom:934.653333pt;}
.y22b{bottom:934.973333pt;}
.y63{bottom:943.613333pt;}
.y80{bottom:947.813333pt;}
.y3f{bottom:959.013333pt;}
.y1e{bottom:960.613333pt;}
.y1c0{bottom:966.053333pt;}
.y22a{bottom:966.693333pt;}
.y197{bottom:971.173333pt;}
.y62{bottom:975.333333pt;}
.y7f{bottom:979.813333pt;}
.y3e{bottom:983.333333pt;}
.y1d{bottom:984.933333pt;}
.y1bf{bottom:998.693333pt;}
.y3d{bottom:1008.613333pt;}
.y1c{bottom:1008.933333pt;}
.y7e{bottom:1011.493333pt;}
.y1{bottom:1014.053333pt;}
.y131{bottom:1015.013333pt;}
.h18{height:4.222500pt;}
.h19{height:13.723125pt;}
.h12{height:21.120000pt;}
.h1a{height:21.440000pt;}
.h1b{height:21.472000pt;}
.h9{height:24.320000pt;}
.hc{height:24.352000pt;}
.h17{height:39.712000pt;}
.h8{height:47.013750pt;}
.hb{height:48.640000pt;}
.hd{height:48.672000pt;}
.h4{height:57.003750pt;}
.h3{height:60.446250pt;}
.h2{height:61.410000pt;}
.h7{height:65.781915pt;}
.h5{height:66.504375pt;}
.h6{height:72.090000pt;}
.h10{height:72.992000pt;}
.ha{height:97.312000pt;}
.he{height:121.952000pt;}
.h14{height:127.072000pt;}
.h11{height:145.946667pt;}
.hf{height:145.986667pt;}
.h16{height:274.973333pt;}
.h13{height:444.293333pt;}
.h15{height:486.853333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:27.520000pt;}
.w10{width:27.552000pt;}
.we{width:27.840000pt;}
.wf{width:27.872000pt;}
.w9{width:36.832000pt;}
.w8{width:37.760000pt;}
.w7{width:132.864000pt;}
.wa{width:187.613333pt;}
.w6{width:189.506667pt;}
.w5{width:197.533333pt;}
.w3{width:299.653333pt;}
.w4{width:299.973333pt;}
.wb{width:409.760000pt;}
.wc{width:424.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.760000pt;}
.x2e{left:6.720000pt;}
.x30{left:10.560000pt;}
.x26{left:15.680000pt;}
.x2d{left:106.592000pt;}
.x1c{left:107.552000pt;}
.x1{left:113.311988pt;}
.x7{left:114.271988pt;}
.x20{left:115.551988pt;}
.x8{left:119.743988pt;}
.x18{left:121.343988pt;}
.x9{left:122.303988pt;}
.x5{left:124.543988pt;}
.xe{left:128.063988pt;}
.x2a{left:129.983988pt;}
.x2b{left:136.706655pt;}
.x29{left:140.546655pt;}
.x6{left:153.986655pt;}
.x1b{left:158.146655pt;}
.x35{left:161.346655pt;}
.x10{left:166.146655pt;}
.xb{left:185.346655pt;}
.x15{left:196.253322pt;}
.x3{left:216.093322pt;}
.x12{left:219.293322pt;}
.xa{left:259.933322pt;}
.x16{left:266.653322pt;}
.x21{left:287.173322pt;}
.x28{left:296.453333pt;}
.x19{left:297.413322pt;}
.x22{left:306.693333pt;}
.x1f{left:323.333322pt;}
.x2c{left:325.573322pt;}
.x13{left:335.493322pt;}
.x27{left:337.093322pt;}
.x4{left:398.239988pt;}
.x1e{left:408.480000pt;}
.xc{left:469.946655pt;}
.x2{left:495.866655pt;}
.x23{left:497.466667pt;}
.x2f{left:531.746667pt;}
.x31{left:559.906667pt;}
.x32{left:588.386667pt;}
.x1a{left:602.173322pt;}
.x33{left:616.893333pt;}
.x24{left:631.613333pt;}
.x11{left:642.813322pt;}
.x34{left:645.053333pt;}
.xf{left:664.253322pt;}
.x17{left:667.773322pt;}
.x25{left:670.653333pt;}
.xd{left:672.613322pt;}
.x14{left:675.493322pt;}
}

