
    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_e9e3bd06ffba58bfdfead7f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_f58a1808d073429c2dacdebe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_da4dabeedaa95881b1420a8e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_7dd64f9928c5d81be59a4cb6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_732c6c6415a745d1b2d13c22.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_2c32336193dbbcd76adab8b2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e65d567aa81fbb953af54657.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_78bce102fe955cccbcf962d3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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;}
.ls11{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-0.864000px;}
.ls16{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.170400px;}
.lsa{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls12{letter-spacing:2.880000px;}
.lse{letter-spacing:3.600000px;}
.ls8{letter-spacing:9.378720px;}
.ls9{letter-spacing:25.524000px;}
.ls15{letter-spacing:28.800000px;}
.ls4{letter-spacing:29.664000px;}
.ls3{letter-spacing:33.984000px;}
.ls13{letter-spacing:42.480000px;}
.ls1{letter-spacing:59.616000px;}
.ls10{letter-spacing:64.224000px;}
.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;}
}
.ws1{word-spacing:-72.288000px;}
.ws10{word-spacing:-66.230400px;}
.ws11{word-spacing:-66.060000px;}
.ws4{word-spacing:-24.300000px;}
.ws9{word-spacing:-23.940000px;}
.ws8{word-spacing:-18.792000px;}
.wsf{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.wsb{word-spacing:-15.226440px;}
.wsc{word-spacing:-14.970240px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-21.428640px;}
._10{margin-left:-2.473440px;}
._0{margin-left:-1.249920px;}
._1{width:1.342080px;}
._8{width:2.508000px;}
._4{width:3.551520px;}
._6{width:4.944480px;}
._7{width:6.182400px;}
._9{width:7.259520px;}
._c{width:8.283840px;}
._a{width:9.864000px;}
._b{width:11.329920px;}
._11{width:12.368160px;}
._5{width:13.464000px;}
._e{width:14.832000px;}
._f{width:16.693920px;}
._20{width:19.008000px;}
._3{width:20.016000px;}
._d{width:21.960000px;}
._21{width:23.016000px;}
._1c{width:24.850560px;}
._1b{width:26.248800px;}
._2{width:28.080000px;}
._1f{width:29.187840px;}
._24{width:30.985920px;}
._18{width:32.250240px;}
._17{width:33.433920px;}
._23{width:34.565760px;}
._22{width:35.928000px;}
._12{width:37.296000px;}
._13{width:38.520000px;}
._25{width:39.960000px;}
._15{width:41.523840px;}
._14{width:42.696000px;}
._16{width:44.208000px;}
._19{width:55.224000px;}
._1a{width:56.247360px;}
._1e{width:77.929920px;}
._1d{width:79.272000px;}
._26{width:156.000000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.240000px;}
.fs3{font-size:167.760000px;}
.fs9{font-size:264.240000px;}
.fs5{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:17.640000px;}
.y3d{bottom:17.805000px;}
.y22{bottom:17.820000px;}
.y36{bottom:39.960000px;}
.y27{bottom:40.005000px;}
.y3c{bottom:52.050000px;}
.y2{bottom:57.600000px;}
.y35{bottom:62.280000px;}
.y26{bottom:62.325000px;}
.y28{bottom:62.505000px;}
.y3b{bottom:74.190000px;}
.y1{bottom:77.760000px;}
.y34{bottom:84.600000px;}
.y3a{bottom:96.510000px;}
.y33{bottom:106.920000px;}
.y71{bottom:110.700000px;}
.y9f{bottom:110.880000px;}
.y250{bottom:117.360000px;}
.y20f{bottom:119.520000px;}
.y46{bottom:119.700000px;}
.y1f9{bottom:127.080000px;}
.y169{bottom:128.160000px;}
.y147{bottom:128.880000px;}
.y32{bottom:129.270000px;}
.y39{bottom:131.070000px;}
.y11{bottom:131.400000px;}
.ye8{bottom:131.580000px;}
.y70{bottom:132.840000px;}
.y9e{bottom:133.200000px;}
.y1e{bottom:133.740000px;}
.y180{bottom:134.100000px;}
.y1a4{bottom:139.860000px;}
.y123{bottom:140.040000px;}
.y1d9{bottom:140.760000px;}
.y1b9{bottom:141.120000px;}
.yc7{bottom:144.720000px;}
.y233{bottom:147.780000px;}
.y168{bottom:150.480000px;}
.y24f{bottom:151.020000px;}
.y146{bottom:151.200000px;}
.y31{bottom:151.770000px;}
.y20e{bottom:153.720000px;}
.ye7{bottom:153.900000px;}
.y6f{bottom:155.160000px;}
.y9d{bottom:155.520000px;}
.y17f{bottom:157.680000px;}
.y45{bottom:159.840000px;}
.y1f8{bottom:161.460000px;}
.y122{bottom:162.180000px;}
.yc6{bottom:167.040000px;}
.y232{bottom:170.100000px;}
.y145{bottom:173.520000px;}
.y30{bottom:174.090000px;}
.y1d8{bottom:175.140000px;}
.y1b8{bottom:175.500000px;}
.y1a3{bottom:175.680000px;}
.y6e{bottom:177.480000px;}
.y9c{bottom:177.840000px;}
.y10{bottom:180.720000px;}
.y17e{bottom:181.440000px;}
.y121{bottom:184.500000px;}
.y24e{bottom:184.860000px;}
.y167{bottom:185.040000px;}
.y20d{bottom:188.100000px;}
.ye6{bottom:188.460000px;}
.yc5{bottom:189.540000px;}
.y231{bottom:192.600000px;}
.y44{bottom:194.220000px;}
.y144{bottom:195.840000px;}
.y2f{bottom:196.410000px;}
.y1a2{bottom:199.260000px;}
.y6d{bottom:199.800000px;}
.y9b{bottom:200.160000px;}
.y17d{bottom:205.380000px;}
.y166{bottom:207.180000px;}
.y1d7{bottom:209.520000px;}
.y1b7{bottom:209.880000px;}
.ye5{bottom:210.600000px;}
.yc4{bottom:211.860000px;}
.y230{bottom:214.920000px;}
.y1f7{bottom:217.980000px;}
.y143{bottom:218.160000px;}
.y24d{bottom:218.520000px;}
.y2e{bottom:218.730000px;}
.y120{bottom:219.060000px;}
.y6c{bottom:222.120000px;}
.y9a{bottom:222.480000px;}
.y1a1{bottom:223.200000px;}
.y43{bottom:228.630000px;}
.y17c{bottom:229.170000px;}
.y165{bottom:229.530000px;}
.yf{bottom:229.890000px;}
.y1b6{bottom:232.050000px;}
.ye4{bottom:232.950000px;}
.yc3{bottom:234.210000px;}
.y1d{bottom:235.110000px;}
.y22f{bottom:237.270000px;}
.y142{bottom:240.510000px;}
.y2d{bottom:241.050000px;}
.y37{bottom:241.230000px;}
.y1d6{bottom:243.750000px;}
.y6b{bottom:244.470000px;}
.y20c{bottom:244.650000px;}
.y99{bottom:245.010000px;}
.y1a0{bottom:246.990000px;}
.y164{bottom:252.030000px;}
.y24c{bottom:252.390000px;}
.y1f6{bottom:252.570000px;}
.y17b{bottom:252.930000px;}
.ye3{bottom:255.270000px;}
.yc2{bottom:256.530000px;}
.y22e{bottom:259.590000px;}
.y42{bottom:262.830000px;}
.y1d5{bottom:265.890000px;}
.y1b5{bottom:266.610000px;}
.y6a{bottom:266.790000px;}
.y98{bottom:267.330000px;}
.y19f{bottom:270.750000px;}
.y163{bottom:274.350000px;}
.y1f5{bottom:274.710000px;}
.y11f{bottom:275.610000px;}
.y17a{bottom:276.690000px;}
.ye2{bottom:277.590000px;}
.yc1{bottom:278.850000px;}
.ye{bottom:279.210000px;}
.y22d{bottom:281.910000px;}
.y141{bottom:285.150000px;}
.y24b{bottom:286.050000px;}
.y1b4{bottom:288.750000px;}
.y69{bottom:289.110000px;}
.y97{bottom:289.650000px;}
.y19e{bottom:294.510000px;}
.y162{bottom:296.670000px;}
.y1f4{bottom:297.030000px;}
.y41{bottom:297.210000px;}
.y11e{bottom:297.930000px;}
.ye1{bottom:299.910000px;}
.y1d4{bottom:300.450000px;}
.y179{bottom:300.630000px;}
.yc0{bottom:301.170000px;}
.y101{bottom:301.350000px;}
.y22c{bottom:303.870000px;}
.y140{bottom:307.470000px;}
.y96{bottom:311.970000px;}
.y20b{bottom:313.590000px;}
.y19d{bottom:318.450000px;}
.y161{bottom:318.990000px;}
.y24a{bottom:319.890000px;}
.ye0{bottom:322.230000px;}
.y1b3{bottom:323.310000px;}
.ybf{bottom:323.490000px;}
.y68{bottom:323.670000px;}
.y178{bottom:324.390000px;}
.yd{bottom:327.990000px;}
.y13f{bottom:329.970000px;}
.y40{bottom:331.590000px;}
.y11d{bottom:332.310000px;}
.y95{bottom:334.290000px;}
.y1d3{bottom:334.830000px;}
.y1c{bottom:336.450000px;}
.y22b{bottom:338.790000px;}
.y160{bottom:341.310000px;}
.y19c{bottom:342.210000px;}
.ydf{bottom:344.550000px;}
.y1b2{bottom:345.450000px;}
.y67{bottom:345.810000px;}
.y177{bottom:348.150000px;}
.y20a{bottom:352.110000px;}
.y13e{bottom:352.290000px;}
.y249{bottom:353.550000px;}
.y11c{bottom:354.450000px;}
.y1f3{bottom:355.530000px;}
.y94{bottom:356.610000px;}
.y1d2{bottom:356.970000px;}
.ybe{bottom:358.050000px;}
.y3f{bottom:365.970000px;}
.yde{bottom:366.870000px;}
.y66{bottom:368.130000px;}
.y22a{bottom:373.170000px;}
.y13d{bottom:374.610000px;}
.y15f{bottom:375.870000px;}
.yc{bottom:377.310000px;}
.y1f2{bottom:377.670000px;}
.y93{bottom:378.930000px;}
.y1b1{bottom:380.010000px;}
.ybd{bottom:380.190000px;}
.y176{bottom:384.150000px;}
.y248{bottom:387.210000px;}
.y11b{bottom:389.010000px;}
.ydd{bottom:389.370000px;}
.y65{bottom:390.450000px;}
.y209{bottom:390.990000px;}
.y1d1{bottom:391.530000px;}
.y229{bottom:395.310000px;}
.y13c{bottom:396.930000px;}
.y15e{bottom:398.010000px;}
.y92{bottom:401.250000px;}
.y3e{bottom:401.970000px;}
.ybc{bottom:402.510000px;}
.y175{bottom:407.730000px;}
.y11a{bottom:411.150000px;}
.y1f1{bottom:412.230000px;}
.y64{bottom:412.770000px;}
.y1b0{bottom:413.850000px;}
.y228{bottom:417.630000px;}
.y13b{bottom:419.250000px;}
.y15d{bottom:420.330000px;}
.y247{bottom:421.050000px;}
.y91{bottom:423.570000px;}
.ydc{bottom:423.750000px;}
.y38{bottom:424.305000px;}
.ybb{bottom:424.830000px;}
.y19b{bottom:425.550000px;}
.y1d0{bottom:425.910000px;}
.yb{bottom:426.810000px;}
.y208{bottom:429.690000px;}
.y174{bottom:431.490000px;}
.y119{bottom:433.470000px;}
.y100{bottom:435.270000px;}
.y1b{bottom:437.790000px;}
.y227{bottom:439.950000px;}
.y13a{bottom:441.570000px;}
.y15c{bottom:442.650000px;}
.y90{bottom:445.890000px;}
.y1f0{bottom:446.430000px;}
.y63{bottom:447.330000px;}
.y1cf{bottom:448.050000px;}
.y1af{bottom:449.850000px;}
.y246{bottom:454.710000px;}
.y118{bottom:455.835000px;}
.yff{bottom:457.635000px;}
.yba{bottom:459.435000px;}
.y19a{bottom:461.595000px;}
.y226{bottom:462.315000px;}
.y139{bottom:463.935000px;}
.y15b{bottom:465.015000px;}
.y8f{bottom:468.435000px;}
.y207{bottom:468.615000px;}
.y1ef{bottom:468.795000px;}
.y62{bottom:469.515000px;}
.ya{bottom:475.815000px;}
.yfe{bottom:479.955000px;}
.yb9{bottom:481.575000px;}
.y1ce{bottom:482.115000px;}
.y225{bottom:484.635000px;}
.y199{bottom:485.175000px;}
.y15a{bottom:487.335000px;}
.y245{bottom:488.595000px;}
.y117{bottom:490.395000px;}
.y8e{bottom:490.755000px;}
.y61{bottom:491.835000px;}
.y138{bottom:498.495000px;}
.yfd{bottom:502.275000px;}
.y1ee{bottom:503.175000px;}
.yb8{bottom:503.895000px;}
.y224{bottom:506.955000px;}
.y206{bottom:507.315000px;}
.y198{bottom:509.115000px;}
.y159{bottom:509.655000px;}
.y173{bottom:509.835000px;}
.y116{bottom:512.535000px;}
.y8d{bottom:513.075000px;}
.y60{bottom:514.335000px;}
.y1cd{bottom:516.855000px;}
.y137{bottom:520.635000px;}
.y244{bottom:522.255000px;}
.yfc{bottom:524.595000px;}
.y1ae{bottom:524.775000px;}
.y9{bottom:524.955000px;}
.y1ed{bottom:525.315000px;}
.yb7{bottom:526.215000px;}
.y223{bottom:529.275000px;}
.y205{bottom:531.255000px;}
.y197{bottom:532.875000px;}
.y115{bottom:534.855000px;}
.y8c{bottom:535.395000px;}
.y1a{bottom:539.175000px;}
.y158{bottom:544.215000px;}
.yfb{bottom:546.915000px;}
.yb6{bottom:548.535000px;}
.y5f{bottom:548.715000px;}
.y1cc{bottom:551.235000px;}
.y222{bottom:551.595000px;}
.y136{bottom:555.195000px;}
.y243{bottom:556.095000px;}
.y196{bottom:556.635000px;}
.y114{bottom:557.175000px;}
.y8b{bottom:557.715000px;}
.y1ec{bottom:559.875000px;}
.y157{bottom:566.355000px;}
.yfa{bottom:569.235000px;}
.y204{bottom:569.955000px;}
.yb5{bottom:570.855000px;}
.y2c{bottom:571.935000px;}
.y221{bottom:573.915000px;}
.y8{bottom:574.635000px;}
.y135{bottom:577.335000px;}
.y113{bottom:579.675000px;}
.y8a{bottom:580.035000px;}
.y195{bottom:580.395000px;}
.y1eb{bottom:582.015000px;}
.y5e{bottom:583.095000px;}
.y1cb{bottom:585.615000px;}
.y156{bottom:588.675000px;}
.y242{bottom:589.755000px;}
.yf9{bottom:591.555000px;}
.yb4{bottom:593.175000px;}
.y220{bottom:596.235000px;}
.y134{bottom:599.655000px;}
.y89{bottom:602.355000px;}
.y5d{bottom:605.235000px;}
.y1ca{bottom:607.755000px;}
.y203{bottom:608.835000px;}
.yf8{bottom:613.875000px;}
.y112{bottom:614.055000px;}
.ydb{bottom:614.595000px;}
.yb3{bottom:615.675000px;}
.y194{bottom:616.395000px;}
.y1ea{bottom:616.575000px;}
.y21f{bottom:618.735000px;}
.y133{bottom:621.975000px;}
.y155{bottom:623.235000px;}
.y241{bottom:623.415000px;}
.y88{bottom:624.675000px;}
.y1ad{bottom:626.115000px;}
.y7{bottom:627.015000px;}
.yf7{bottom:636.195000px;}
.yda{bottom:636.735000px;}
.yb2{bottom:637.995000px;}
.y1e9{bottom:638.715000px;}
.y5c{bottom:639.795000px;}
.y193{bottom:639.975000px;}
.y19{bottom:640.515000px;}
.y21e{bottom:641.055000px;}
.y1c9{bottom:642.315000px;}
.y132{bottom:644.295000px;}
.y154{bottom:645.375000px;}
.y87{bottom:646.995000px;}
.y202{bottom:647.535000px;}
.y1ac{bottom:648.255000px;}
.y240{bottom:657.255000px;}
.yf6{bottom:658.695000px;}
.yd9{bottom:659.055000px;}
.yb1{bottom:660.315000px;}
.y5b{bottom:661.935000px;}
.y21d{bottom:663.375000px;}
.y192{bottom:663.915000px;}
.y153{bottom:667.695000px;}
.y86{bottom:669.315000px;}
.y1ab{bottom:670.575000px;}
.y1e8{bottom:673.275000px;}
.y1c8{bottom:676.515000px;}
.y25a{bottom:677.415000px;}
.y131{bottom:679.035000px;}
.y111{bottom:681.015000px;}
.yd8{bottom:681.375000px;}
.yb0{bottom:682.635000px;}
.y5a{bottom:684.255000px;}
.y21c{bottom:685.695000px;}
.y201{bottom:686.445000px;}
.y191{bottom:687.705000px;}
.y152{bottom:690.045000px;}
.y23f{bottom:690.945000px;}
.y6{bottom:691.125000px;}
.y85{bottom:691.665000px;}
.yf5{bottom:693.105000px;}
.y1e7{bottom:695.445000px;}
.y1c7{bottom:698.685000px;}
.y172{bottom:702.285000px;}
.yd7{bottom:703.725000px;}
.y1aa{bottom:705.165000px;}
.y59{bottom:706.605000px;}
.y21b{bottom:708.045000px;}
.y190{bottom:711.465000px;}
.y151{bottom:712.365000px;}
.y130{bottom:712.545000px;}
.y84{bottom:714.165000px;}
.yf4{bottom:715.245000px;}
.y110{bottom:715.425000px;}
.yaf{bottom:717.225000px;}
.y1c6{bottom:721.005000px;}
.y171{bottom:724.425000px;}
.y23e{bottom:724.605000px;}
.y200{bottom:725.325000px;}
.yd6{bottom:726.045000px;}
.y1a9{bottom:727.305000px;}
.y58{bottom:728.925000px;}
.y1e6{bottom:730.005000px;}
.y21a{bottom:730.365000px;}
.y12f{bottom:734.685000px;}
.y18f{bottom:735.225000px;}
.y83{bottom:736.485000px;}
.y10f{bottom:737.565000px;}
.yae{bottom:739.365000px;}
.y18{bottom:741.885000px;}
.y5{bottom:743.325000px;}
.y1c5{bottom:743.505000px;}
.y170{bottom:746.745000px;}
.yd5{bottom:748.365000px;}
.y1a8{bottom:749.625000px;}
.yf3{bottom:749.805000px;}
.y57{bottom:751.245000px;}
.y219{bottom:752.685000px;}
.y12e{bottom:757.005000px;}
.y23d{bottom:758.625000px;}
.y82{bottom:758.805000px;}
.y10e{bottom:760.065000px;}
.y259{bottom:760.605000px;}
.yad{bottom:761.685000px;}
.y1ff{bottom:764.025000px;}
.y1e5{bottom:764.205000px;}
.y1c4{bottom:765.825000px;}
.y16f{bottom:769.065000px;}
.yd4{bottom:770.685000px;}
.y18e{bottom:771.225000px;}
.yf2{bottom:771.945000px;}
.y56{bottom:773.565000px;}
.y218{bottom:774.645000px;}
.y12d{bottom:779.505000px;}
.y81{bottom:781.125000px;}
.y10d{bottom:782.385000px;}
.yac{bottom:784.005000px;}
.y1e4{bottom:786.525000px;}
.y1c3{bottom:788.145000px;}
.y16e{bottom:791.385000px;}
.yd3{bottom:793.005000px;}
.y23c{bottom:793.185000px;}
.yf1{bottom:794.265000px;}
.y18d{bottom:794.985000px;}
.y55{bottom:796.065000px;}
.y12c{bottom:801.825000px;}
.y1fe{bottom:802.905000px;}
.y80{bottom:803.445000px;}
.yab{bottom:806.325000px;}
.y1a7{bottom:806.505000px;}
.y4{bottom:807.405000px;}
.y217{bottom:809.205000px;}
.y258{bottom:809.925000px;}
.yd2{bottom:815.505000px;}
.yf0{bottom:816.585000px;}
.y10c{bottom:816.765000px;}
.y54{bottom:818.385000px;}
.y18c{bottom:818.745000px;}
.y1e3{bottom:820.905000px;}
.y1c2{bottom:822.705000px;}
.y12b{bottom:824.145000px;}
.y7f{bottom:825.765000px;}
.y16d{bottom:825.945000px;}
.y23b{bottom:827.565000px;}
.yaa{bottom:828.645000px;}
.y2b{bottom:829.725000px;}
.y150{bottom:836.205000px;}
.y1fd{bottom:837.285000px;}
.yd1{bottom:837.825000px;}
.y10b{bottom:839.085000px;}
.y53{bottom:840.705000px;}
.y18b{bottom:842.505000px;}
.y1e2{bottom:843.045000px;}
.y17{bottom:843.225000px;}
.y216{bottom:843.945000px;}
.y7e{bottom:848.085000px;}
.y23a{bottom:849.705000px;}
.ya9{bottom:850.965000px;}
.yef{bottom:851.145000px;}
.y1c1{bottom:856.905000px;}
.y14f{bottom:858.525000px;}
.y12a{bottom:858.705000px;}
.y257{bottom:859.065000px;}
.yd0{bottom:860.145000px;}
.y10a{bottom:861.405000px;}
.y52{bottom:863.025000px;}
.y29{bottom:864.105000px;}
.y18a{bottom:866.265000px;}
.y7d{bottom:870.405000px;}
.y3{bottom:870.765000px;}
.y1fc{bottom:871.665000px;}
.y239{bottom:872.025000px;}
.ya8{bottom:873.285000px;}
.y1e1{bottom:877.605000px;}
.y215{bottom:878.145000px;}
.y1c0{bottom:879.045000px;}
.y129{bottom:880.845000px;}
.ycf{bottom:882.465000px;}
.y109{bottom:883.725000px;}
.y51{bottom:885.345000px;}
.y189{bottom:890.205000px;}
.y7c{bottom:892.725000px;}
.y238{bottom:894.525000px;}
.ya7{bottom:895.605000px;}
.y25{bottom:898.305000px;}
.y214{bottom:900.465000px;}
.y1bf{bottom:901.365000px;}
.y128{bottom:903.165000px;}
.y16c{bottom:904.965000px;}
.y108{bottom:906.045000px;}
.y50{bottom:907.665000px;}
.y1a6{bottom:907.845000px;}
.y1fb{bottom:910.365000px;}
.y1e0{bottom:911.985000px;}
.y188{bottom:913.965000px;}
.y237{bottom:916.890000px;}
.yce{bottom:917.070000px;}
.yee{bottom:917.970000px;}
.y1be{bottom:923.910000px;}
.y14e{bottom:925.530000px;}
.y16b{bottom:927.150000px;}
.y7b{bottom:927.330000px;}
.y4f{bottom:930.030000px;}
.ya6{bottom:930.210000px;}
.y16{bottom:932.190000px;}
.y1df{bottom:934.170000px;}
.y213{bottom:934.530000px;}
.y127{bottom:937.590000px;}
.y187{bottom:937.770000px;}
.y256{bottom:938.670000px;}
.ycd{bottom:939.210000px;}
.yed{bottom:940.470000px;}
.y107{bottom:940.650000px;}
.y7a{bottom:949.470000px;}
.ya5{bottom:952.350000px;}
.y1bd{bottom:957.930000px;}
.y126{bottom:959.910000px;}
.y14d{bottom:960.090000px;}
.y236{bottom:961.170000px;}
.ycc{bottom:961.530000px;}
.yec{bottom:962.790000px;}
.y4e{bottom:964.590000px;}
.y1de{bottom:968.370000px;}
.y1fa{bottom:968.730000px;}
.y212{bottom:968.910000px;}
.y79{bottom:971.790000px;}
.y255{bottom:972.330000px;}
.ya4{bottom:974.670000px;}
.y24{bottom:977.370000px;}
.y15{bottom:981.330000px;}
.y125{bottom:982.230000px;}
.y235{bottom:983.490000px;}
.ycb{bottom:983.850000px;}
.y106{bottom:985.110000px;}
.y186{bottom:985.290000px;}
.y4d{bottom:986.730000px;}
.y1bc{bottom:992.670000px;}
.y78{bottom:994.110000px;}
.ya3{bottom:996.990000px;}
.yeb{bottom:998.610000px;}
.y1dd{bottom:1003.110000px;}
.y211{bottom:1003.830000px;}
.y14c{bottom:1004.550000px;}
.yca{bottom:1006.170000px;}
.y105{bottom:1007.430000px;}
.y4c{bottom:1009.050000px;}
.y185{bottom:1009.230000px;}
.y23{bottom:1011.750000px;}
.y1bb{bottom:1014.810000px;}
.y124{bottom:1016.250000px;}
.y77{bottom:1016.430000px;}
.ya2{bottom:1019.490000px;}
.y14b{bottom:1026.870000px;}
.yc9{bottom:1028.490000px;}
.y14{bottom:1030.650000px;}
.y4b{bottom:1031.370000px;}
.y1dc{bottom:1037.310000px;}
.y16a{bottom:1038.930000px;}
.yea{bottom:1039.110000px;}
.y254{bottom:1039.830000px;}
.y104{bottom:1043.250000px;}
.y184{bottom:1045.230000px;}
.y21{bottom:1046.130000px;}
.y1ba{bottom:1049.010000px;}
.yc8{bottom:1050.450000px;}
.y234{bottom:1050.810000px;}
.y76{bottom:1050.990000px;}
.y4a{bottom:1053.690000px;}
.y1a5{bottom:1053.870000px;}
.ya1{bottom:1055.310000px;}
.y14a{bottom:1061.430000px;}
.y183{bottom:1068.810000px;}
.y1db{bottom:1071.690000px;}
.y75{bottom:1073.130000px;}
.ye9{bottom:1073.310000px;}
.y253{bottom:1073.670000px;}
.y49{bottom:1076.010000px;}
.y13{bottom:1079.790000px;}
.y149{bottom:1083.570000px;}
.y103{bottom:1083.750000px;}
.y182{bottom:1092.570000px;}
.y74{bottom:1095.450000px;}
.ya0{bottom:1095.630000px;}
.y48{bottom:1098.330000px;}
.y20{bottom:1099.950000px;}
.y148{bottom:1105.890000px;}
.y1da{bottom:1106.070000px;}
.y252{bottom:1107.330000px;}
.y181{bottom:1116.330000px;}
.y73{bottom:1117.770000px;}
.y102{bottom:1117.950000px;}
.y12{bottom:1129.110000px;}
.y47{bottom:1134.330000px;}
.y1f{bottom:1140.090000px;}
.y72{bottom:1140.270000px;}
.y210{bottom:1140.450000px;}
.y251{bottom:1141.170000px;}
.he{height:34.200000px;}
.hb{height:34.365000px;}
.hf{height:34.380000px;}
.h13{height:64.546875px;}
.h2{height:65.884219px;}
.h16{height:70.628906px;}
.h12{height:70.664062px;}
.h9{height:72.562500px;}
.h15{height:74.004654px;}
.hc{height:74.953125px;}
.hd{height:79.042500px;}
.h17{height:82.676953px;}
.ha{height:96.508125px;}
.h14{height:99.687656px;}
.h5{height:118.008984px;}
.h6{height:121.179375px;}
.h11{height:147.621000px;}
.h3{height:157.460625px;}
.h4{height:169.070625px;}
.h10{height:257.790000px;}
.h18{height:275.077969px;}
.h8{height:290.250000px;}
.h7{height:299.812500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:235.680000px;}
.w2{width:418.384500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.905000px;}
.x16{left:35.083500px;}
.x11{left:62.083500px;}
.x14{left:89.083500px;}
.x10{left:119.566500px;}
.x2{left:127.656000px;}
.x15{left:143.128500px;}
.x18{left:154.650000px;}
.xd{left:163.290000px;}
.x4{left:168.150000px;}
.x19{left:178.590000px;}
.x17{left:181.650000px;}
.x1a{left:190.650000px;}
.x3{left:205.410000px;}
.x9{left:209.010000px;}
.x1b{left:217.650000px;}
.x1e{left:227.370000px;}
.x1d{left:235.650000px;}
.xe{left:241.230000px;}
.xa{left:246.630000px;}
.xb{left:270.255000px;}
.x7{left:288.975000px;}
.x5{left:308.955000px;}
.x6{left:323.535000px;}
.xc{left:382.395000px;}
.xf{left:403.095000px;}
.x8{left:446.505000px;}
.x12{left:537.960000px;}
.x1c{left:748.800000px;}
.x1{left:757.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.151467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls12{letter-spacing:2.560000pt;}
.lse{letter-spacing:3.200000pt;}
.ls8{letter-spacing:8.336640pt;}
.ls9{letter-spacing:22.688000pt;}
.ls15{letter-spacing:25.600000pt;}
.ls4{letter-spacing:26.368000pt;}
.ls3{letter-spacing:30.208000pt;}
.ls13{letter-spacing:37.760000pt;}
.ls1{letter-spacing:52.992000pt;}
.ls10{letter-spacing:57.088000pt;}
.ws1{word-spacing:-64.256000pt;}
.ws10{word-spacing:-58.871467pt;}
.ws11{word-spacing:-58.720000pt;}
.ws4{word-spacing:-21.600000pt;}
.ws9{word-spacing:-21.280000pt;}
.ws8{word-spacing:-16.704000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.wsb{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.306880pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-19.047680pt;}
._10{margin-left:-2.198613pt;}
._0{margin-left:-1.111040pt;}
._1{width:1.192960pt;}
._8{width:2.229333pt;}
._4{width:3.156907pt;}
._6{width:4.395093pt;}
._7{width:5.495467pt;}
._9{width:6.452907pt;}
._c{width:7.363413pt;}
._a{width:8.768000pt;}
._b{width:10.071040pt;}
._11{width:10.993920pt;}
._5{width:11.968000pt;}
._e{width:13.184000pt;}
._f{width:14.839040pt;}
._20{width:16.896000pt;}
._3{width:17.792000pt;}
._d{width:19.520000pt;}
._21{width:20.458667pt;}
._1c{width:22.089387pt;}
._1b{width:23.332267pt;}
._2{width:24.960000pt;}
._1f{width:25.944747pt;}
._24{width:27.543040pt;}
._18{width:28.666880pt;}
._17{width:29.719040pt;}
._23{width:30.725120pt;}
._22{width:31.936000pt;}
._12{width:33.152000pt;}
._13{width:34.240000pt;}
._25{width:35.520000pt;}
._15{width:36.910080pt;}
._14{width:37.952000pt;}
._16{width:39.296000pt;}
._19{width:49.088000pt;}
._1a{width:49.997653pt;}
._1e{width:69.271040pt;}
._1d{width:70.464000pt;}
._26{width:138.666667pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.880000pt;}
.fs3{font-size:149.120000pt;}
.fs9{font-size:234.880000pt;}
.fs5{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:15.680000pt;}
.y3d{bottom:15.826667pt;}
.y22{bottom:15.840000pt;}
.y36{bottom:35.520000pt;}
.y27{bottom:35.560000pt;}
.y3c{bottom:46.266667pt;}
.y2{bottom:51.200000pt;}
.y35{bottom:55.360000pt;}
.y26{bottom:55.400000pt;}
.y28{bottom:55.560000pt;}
.y3b{bottom:65.946667pt;}
.y1{bottom:69.120000pt;}
.y34{bottom:75.200000pt;}
.y3a{bottom:85.786667pt;}
.y33{bottom:95.040000pt;}
.y71{bottom:98.400000pt;}
.y9f{bottom:98.560000pt;}
.y250{bottom:104.320000pt;}
.y20f{bottom:106.240000pt;}
.y46{bottom:106.400000pt;}
.y1f9{bottom:112.960000pt;}
.y169{bottom:113.920000pt;}
.y147{bottom:114.560000pt;}
.y32{bottom:114.906667pt;}
.y39{bottom:116.506667pt;}
.y11{bottom:116.800000pt;}
.ye8{bottom:116.960000pt;}
.y70{bottom:118.080000pt;}
.y9e{bottom:118.400000pt;}
.y1e{bottom:118.880000pt;}
.y180{bottom:119.200000pt;}
.y1a4{bottom:124.320000pt;}
.y123{bottom:124.480000pt;}
.y1d9{bottom:125.120000pt;}
.y1b9{bottom:125.440000pt;}
.yc7{bottom:128.640000pt;}
.y233{bottom:131.360000pt;}
.y168{bottom:133.760000pt;}
.y24f{bottom:134.240000pt;}
.y146{bottom:134.400000pt;}
.y31{bottom:134.906667pt;}
.y20e{bottom:136.640000pt;}
.ye7{bottom:136.800000pt;}
.y6f{bottom:137.920000pt;}
.y9d{bottom:138.240000pt;}
.y17f{bottom:140.160000pt;}
.y45{bottom:142.080000pt;}
.y1f8{bottom:143.520000pt;}
.y122{bottom:144.160000pt;}
.yc6{bottom:148.480000pt;}
.y232{bottom:151.200000pt;}
.y145{bottom:154.240000pt;}
.y30{bottom:154.746667pt;}
.y1d8{bottom:155.680000pt;}
.y1b8{bottom:156.000000pt;}
.y1a3{bottom:156.160000pt;}
.y6e{bottom:157.760000pt;}
.y9c{bottom:158.080000pt;}
.y10{bottom:160.640000pt;}
.y17e{bottom:161.280000pt;}
.y121{bottom:164.000000pt;}
.y24e{bottom:164.320000pt;}
.y167{bottom:164.480000pt;}
.y20d{bottom:167.200000pt;}
.ye6{bottom:167.520000pt;}
.yc5{bottom:168.480000pt;}
.y231{bottom:171.200000pt;}
.y44{bottom:172.640000pt;}
.y144{bottom:174.080000pt;}
.y2f{bottom:174.586667pt;}
.y1a2{bottom:177.120000pt;}
.y6d{bottom:177.600000pt;}
.y9b{bottom:177.920000pt;}
.y17d{bottom:182.560000pt;}
.y166{bottom:184.160000pt;}
.y1d7{bottom:186.240000pt;}
.y1b7{bottom:186.560000pt;}
.ye5{bottom:187.200000pt;}
.yc4{bottom:188.320000pt;}
.y230{bottom:191.040000pt;}
.y1f7{bottom:193.760000pt;}
.y143{bottom:193.920000pt;}
.y24d{bottom:194.240000pt;}
.y2e{bottom:194.426667pt;}
.y120{bottom:194.720000pt;}
.y6c{bottom:197.440000pt;}
.y9a{bottom:197.760000pt;}
.y1a1{bottom:198.400000pt;}
.y43{bottom:203.226667pt;}
.y17c{bottom:203.706667pt;}
.y165{bottom:204.026667pt;}
.yf{bottom:204.346667pt;}
.y1b6{bottom:206.266667pt;}
.ye4{bottom:207.066667pt;}
.yc3{bottom:208.186667pt;}
.y1d{bottom:208.986667pt;}
.y22f{bottom:210.906667pt;}
.y142{bottom:213.786667pt;}
.y2d{bottom:214.266667pt;}
.y37{bottom:214.426667pt;}
.y1d6{bottom:216.666667pt;}
.y6b{bottom:217.306667pt;}
.y20c{bottom:217.466667pt;}
.y99{bottom:217.786667pt;}
.y1a0{bottom:219.546667pt;}
.y164{bottom:224.026667pt;}
.y24c{bottom:224.346667pt;}
.y1f6{bottom:224.506667pt;}
.y17b{bottom:224.826667pt;}
.ye3{bottom:226.906667pt;}
.yc2{bottom:228.026667pt;}
.y22e{bottom:230.746667pt;}
.y42{bottom:233.626667pt;}
.y1d5{bottom:236.346667pt;}
.y1b5{bottom:236.986667pt;}
.y6a{bottom:237.146667pt;}
.y98{bottom:237.626667pt;}
.y19f{bottom:240.666667pt;}
.y163{bottom:243.866667pt;}
.y1f5{bottom:244.186667pt;}
.y11f{bottom:244.986667pt;}
.y17a{bottom:245.946667pt;}
.ye2{bottom:246.746667pt;}
.yc1{bottom:247.866667pt;}
.ye{bottom:248.186667pt;}
.y22d{bottom:250.586667pt;}
.y141{bottom:253.466667pt;}
.y24b{bottom:254.266667pt;}
.y1b4{bottom:256.666667pt;}
.y69{bottom:256.986667pt;}
.y97{bottom:257.466667pt;}
.y19e{bottom:261.786667pt;}
.y162{bottom:263.706667pt;}
.y1f4{bottom:264.026667pt;}
.y41{bottom:264.186667pt;}
.y11e{bottom:264.826667pt;}
.ye1{bottom:266.586667pt;}
.y1d4{bottom:267.066667pt;}
.y179{bottom:267.226667pt;}
.yc0{bottom:267.706667pt;}
.y101{bottom:267.866667pt;}
.y22c{bottom:270.106667pt;}
.y140{bottom:273.306667pt;}
.y96{bottom:277.306667pt;}
.y20b{bottom:278.746667pt;}
.y19d{bottom:283.066667pt;}
.y161{bottom:283.546667pt;}
.y24a{bottom:284.346667pt;}
.ye0{bottom:286.426667pt;}
.y1b3{bottom:287.386667pt;}
.ybf{bottom:287.546667pt;}
.y68{bottom:287.706667pt;}
.y178{bottom:288.346667pt;}
.yd{bottom:291.546667pt;}
.y13f{bottom:293.306667pt;}
.y40{bottom:294.746667pt;}
.y11d{bottom:295.386667pt;}
.y95{bottom:297.146667pt;}
.y1d3{bottom:297.626667pt;}
.y1c{bottom:299.066667pt;}
.y22b{bottom:301.146667pt;}
.y160{bottom:303.386667pt;}
.y19c{bottom:304.186667pt;}
.ydf{bottom:306.266667pt;}
.y1b2{bottom:307.066667pt;}
.y67{bottom:307.386667pt;}
.y177{bottom:309.466667pt;}
.y20a{bottom:312.986667pt;}
.y13e{bottom:313.146667pt;}
.y249{bottom:314.266667pt;}
.y11c{bottom:315.066667pt;}
.y1f3{bottom:316.026667pt;}
.y94{bottom:316.986667pt;}
.y1d2{bottom:317.306667pt;}
.ybe{bottom:318.266667pt;}
.y3f{bottom:325.306667pt;}
.yde{bottom:326.106667pt;}
.y66{bottom:327.226667pt;}
.y22a{bottom:331.706667pt;}
.y13d{bottom:332.986667pt;}
.y15f{bottom:334.106667pt;}
.yc{bottom:335.386667pt;}
.y1f2{bottom:335.706667pt;}
.y93{bottom:336.826667pt;}
.y1b1{bottom:337.786667pt;}
.ybd{bottom:337.946667pt;}
.y176{bottom:341.466667pt;}
.y248{bottom:344.186667pt;}
.y11b{bottom:345.786667pt;}
.ydd{bottom:346.106667pt;}
.y65{bottom:347.066667pt;}
.y209{bottom:347.546667pt;}
.y1d1{bottom:348.026667pt;}
.y229{bottom:351.386667pt;}
.y13c{bottom:352.826667pt;}
.y15e{bottom:353.786667pt;}
.y92{bottom:356.666667pt;}
.y3e{bottom:357.306667pt;}
.ybc{bottom:357.786667pt;}
.y175{bottom:362.426667pt;}
.y11a{bottom:365.466667pt;}
.y1f1{bottom:366.426667pt;}
.y64{bottom:366.906667pt;}
.y1b0{bottom:367.866667pt;}
.y228{bottom:371.226667pt;}
.y13b{bottom:372.666667pt;}
.y15d{bottom:373.626667pt;}
.y247{bottom:374.266667pt;}
.y91{bottom:376.506667pt;}
.ydc{bottom:376.666667pt;}
.y38{bottom:377.160000pt;}
.ybb{bottom:377.626667pt;}
.y19b{bottom:378.266667pt;}
.y1d0{bottom:378.586667pt;}
.yb{bottom:379.386667pt;}
.y208{bottom:381.946667pt;}
.y174{bottom:383.546667pt;}
.y119{bottom:385.306667pt;}
.y100{bottom:386.906667pt;}
.y1b{bottom:389.146667pt;}
.y227{bottom:391.066667pt;}
.y13a{bottom:392.506667pt;}
.y15c{bottom:393.466667pt;}
.y90{bottom:396.346667pt;}
.y1f0{bottom:396.826667pt;}
.y63{bottom:397.626667pt;}
.y1cf{bottom:398.266667pt;}
.y1af{bottom:399.866667pt;}
.y246{bottom:404.186667pt;}
.y118{bottom:405.186667pt;}
.yff{bottom:406.786667pt;}
.yba{bottom:408.386667pt;}
.y19a{bottom:410.306667pt;}
.y226{bottom:410.946667pt;}
.y139{bottom:412.386667pt;}
.y15b{bottom:413.346667pt;}
.y8f{bottom:416.386667pt;}
.y207{bottom:416.546667pt;}
.y1ef{bottom:416.706667pt;}
.y62{bottom:417.346667pt;}
.ya{bottom:422.946667pt;}
.yfe{bottom:426.626667pt;}
.yb9{bottom:428.066667pt;}
.y1ce{bottom:428.546667pt;}
.y225{bottom:430.786667pt;}
.y199{bottom:431.266667pt;}
.y15a{bottom:433.186667pt;}
.y245{bottom:434.306667pt;}
.y117{bottom:435.906667pt;}
.y8e{bottom:436.226667pt;}
.y61{bottom:437.186667pt;}
.y138{bottom:443.106667pt;}
.yfd{bottom:446.466667pt;}
.y1ee{bottom:447.266667pt;}
.yb8{bottom:447.906667pt;}
.y224{bottom:450.626667pt;}
.y206{bottom:450.946667pt;}
.y198{bottom:452.546667pt;}
.y159{bottom:453.026667pt;}
.y173{bottom:453.186667pt;}
.y116{bottom:455.586667pt;}
.y8d{bottom:456.066667pt;}
.y60{bottom:457.186667pt;}
.y1cd{bottom:459.426667pt;}
.y137{bottom:462.786667pt;}
.y244{bottom:464.226667pt;}
.yfc{bottom:466.306667pt;}
.y1ae{bottom:466.466667pt;}
.y9{bottom:466.626667pt;}
.y1ed{bottom:466.946667pt;}
.yb7{bottom:467.746667pt;}
.y223{bottom:470.466667pt;}
.y205{bottom:472.226667pt;}
.y197{bottom:473.666667pt;}
.y115{bottom:475.426667pt;}
.y8c{bottom:475.906667pt;}
.y1a{bottom:479.266667pt;}
.y158{bottom:483.746667pt;}
.yfb{bottom:486.146667pt;}
.yb6{bottom:487.586667pt;}
.y5f{bottom:487.746667pt;}
.y1cc{bottom:489.986667pt;}
.y222{bottom:490.306667pt;}
.y136{bottom:493.506667pt;}
.y243{bottom:494.306667pt;}
.y196{bottom:494.786667pt;}
.y114{bottom:495.266667pt;}
.y8b{bottom:495.746667pt;}
.y1ec{bottom:497.666667pt;}
.y157{bottom:503.426667pt;}
.yfa{bottom:505.986667pt;}
.y204{bottom:506.626667pt;}
.yb5{bottom:507.426667pt;}
.y2c{bottom:508.386667pt;}
.y221{bottom:510.146667pt;}
.y8{bottom:510.786667pt;}
.y135{bottom:513.186667pt;}
.y113{bottom:515.266667pt;}
.y8a{bottom:515.586667pt;}
.y195{bottom:515.906667pt;}
.y1eb{bottom:517.346667pt;}
.y5e{bottom:518.306667pt;}
.y1cb{bottom:520.546667pt;}
.y156{bottom:523.266667pt;}
.y242{bottom:524.226667pt;}
.yf9{bottom:525.826667pt;}
.yb4{bottom:527.266667pt;}
.y220{bottom:529.986667pt;}
.y134{bottom:533.026667pt;}
.y89{bottom:535.426667pt;}
.y5d{bottom:537.986667pt;}
.y1ca{bottom:540.226667pt;}
.y203{bottom:541.186667pt;}
.yf8{bottom:545.666667pt;}
.y112{bottom:545.826667pt;}
.ydb{bottom:546.306667pt;}
.yb3{bottom:547.266667pt;}
.y194{bottom:547.906667pt;}
.y1ea{bottom:548.066667pt;}
.y21f{bottom:549.986667pt;}
.y133{bottom:552.866667pt;}
.y155{bottom:553.986667pt;}
.y241{bottom:554.146667pt;}
.y88{bottom:555.266667pt;}
.y1ad{bottom:556.546667pt;}
.y7{bottom:557.346667pt;}
.yf7{bottom:565.506667pt;}
.yda{bottom:565.986667pt;}
.yb2{bottom:567.106667pt;}
.y1e9{bottom:567.746667pt;}
.y5c{bottom:568.706667pt;}
.y193{bottom:568.866667pt;}
.y19{bottom:569.346667pt;}
.y21e{bottom:569.826667pt;}
.y1c9{bottom:570.946667pt;}
.y132{bottom:572.706667pt;}
.y154{bottom:573.666667pt;}
.y87{bottom:575.106667pt;}
.y202{bottom:575.586667pt;}
.y1ac{bottom:576.226667pt;}
.y240{bottom:584.226667pt;}
.yf6{bottom:585.506667pt;}
.yd9{bottom:585.826667pt;}
.yb1{bottom:586.946667pt;}
.y5b{bottom:588.386667pt;}
.y21d{bottom:589.666667pt;}
.y192{bottom:590.146667pt;}
.y153{bottom:593.506667pt;}
.y86{bottom:594.946667pt;}
.y1ab{bottom:596.066667pt;}
.y1e8{bottom:598.466667pt;}
.y1c8{bottom:601.346667pt;}
.y25a{bottom:602.146667pt;}
.y131{bottom:603.586667pt;}
.y111{bottom:605.346667pt;}
.yd8{bottom:605.666667pt;}
.yb0{bottom:606.786667pt;}
.y5a{bottom:608.226667pt;}
.y21c{bottom:609.506667pt;}
.y201{bottom:610.173333pt;}
.y191{bottom:611.293333pt;}
.y152{bottom:613.373333pt;}
.y23f{bottom:614.173333pt;}
.y6{bottom:614.333333pt;}
.y85{bottom:614.813333pt;}
.yf5{bottom:616.093333pt;}
.y1e7{bottom:618.173333pt;}
.y1c7{bottom:621.053333pt;}
.y172{bottom:624.253333pt;}
.yd7{bottom:625.533333pt;}
.y1aa{bottom:626.813333pt;}
.y59{bottom:628.093333pt;}
.y21b{bottom:629.373333pt;}
.y190{bottom:632.413333pt;}
.y151{bottom:633.213333pt;}
.y130{bottom:633.373333pt;}
.y84{bottom:634.813333pt;}
.yf4{bottom:635.773333pt;}
.y110{bottom:635.933333pt;}
.yaf{bottom:637.533333pt;}
.y1c6{bottom:640.893333pt;}
.y171{bottom:643.933333pt;}
.y23e{bottom:644.093333pt;}
.y200{bottom:644.733333pt;}
.yd6{bottom:645.373333pt;}
.y1a9{bottom:646.493333pt;}
.y58{bottom:647.933333pt;}
.y1e6{bottom:648.893333pt;}
.y21a{bottom:649.213333pt;}
.y12f{bottom:653.053333pt;}
.y18f{bottom:653.533333pt;}
.y83{bottom:654.653333pt;}
.y10f{bottom:655.613333pt;}
.yae{bottom:657.213333pt;}
.y18{bottom:659.453333pt;}
.y5{bottom:660.733333pt;}
.y1c5{bottom:660.893333pt;}
.y170{bottom:663.773333pt;}
.yd5{bottom:665.213333pt;}
.y1a8{bottom:666.333333pt;}
.yf3{bottom:666.493333pt;}
.y57{bottom:667.773333pt;}
.y219{bottom:669.053333pt;}
.y12e{bottom:672.893333pt;}
.y23d{bottom:674.333333pt;}
.y82{bottom:674.493333pt;}
.y10e{bottom:675.613333pt;}
.y259{bottom:676.093333pt;}
.yad{bottom:677.053333pt;}
.y1ff{bottom:679.133333pt;}
.y1e5{bottom:679.293333pt;}
.y1c4{bottom:680.733333pt;}
.y16f{bottom:683.613333pt;}
.yd4{bottom:685.053333pt;}
.y18e{bottom:685.533333pt;}
.yf2{bottom:686.173333pt;}
.y56{bottom:687.613333pt;}
.y218{bottom:688.573333pt;}
.y12d{bottom:692.893333pt;}
.y81{bottom:694.333333pt;}
.y10d{bottom:695.453333pt;}
.yac{bottom:696.893333pt;}
.y1e4{bottom:699.133333pt;}
.y1c3{bottom:700.573333pt;}
.y16e{bottom:703.453333pt;}
.yd3{bottom:704.893333pt;}
.y23c{bottom:705.053333pt;}
.yf1{bottom:706.013333pt;}
.y18d{bottom:706.653333pt;}
.y55{bottom:707.613333pt;}
.y12c{bottom:712.733333pt;}
.y1fe{bottom:713.693333pt;}
.y80{bottom:714.173333pt;}
.yab{bottom:716.733333pt;}
.y1a7{bottom:716.893333pt;}
.y4{bottom:717.693333pt;}
.y217{bottom:719.293333pt;}
.y258{bottom:719.933333pt;}
.yd2{bottom:724.893333pt;}
.yf0{bottom:725.853333pt;}
.y10c{bottom:726.013333pt;}
.y54{bottom:727.453333pt;}
.y18c{bottom:727.773333pt;}
.y1e3{bottom:729.693333pt;}
.y1c2{bottom:731.293333pt;}
.y12b{bottom:732.573333pt;}
.y7f{bottom:734.013333pt;}
.y16d{bottom:734.173333pt;}
.y23b{bottom:735.613333pt;}
.yaa{bottom:736.573333pt;}
.y2b{bottom:737.533333pt;}
.y150{bottom:743.293333pt;}
.y1fd{bottom:744.253333pt;}
.yd1{bottom:744.733333pt;}
.y10b{bottom:745.853333pt;}
.y53{bottom:747.293333pt;}
.y18b{bottom:748.893333pt;}
.y1e2{bottom:749.373333pt;}
.y17{bottom:749.533333pt;}
.y216{bottom:750.173333pt;}
.y7e{bottom:753.853333pt;}
.y23a{bottom:755.293333pt;}
.ya9{bottom:756.413333pt;}
.yef{bottom:756.573333pt;}
.y1c1{bottom:761.693333pt;}
.y14f{bottom:763.133333pt;}
.y12a{bottom:763.293333pt;}
.y257{bottom:763.613333pt;}
.yd0{bottom:764.573333pt;}
.y10a{bottom:765.693333pt;}
.y52{bottom:767.133333pt;}
.y29{bottom:768.093333pt;}
.y18a{bottom:770.013333pt;}
.y7d{bottom:773.693333pt;}
.y3{bottom:774.013333pt;}
.y1fc{bottom:774.813333pt;}
.y239{bottom:775.133333pt;}
.ya8{bottom:776.253333pt;}
.y1e1{bottom:780.093333pt;}
.y215{bottom:780.573333pt;}
.y1c0{bottom:781.373333pt;}
.y129{bottom:782.973333pt;}
.ycf{bottom:784.413333pt;}
.y109{bottom:785.533333pt;}
.y51{bottom:786.973333pt;}
.y189{bottom:791.293333pt;}
.y7c{bottom:793.533333pt;}
.y238{bottom:795.133333pt;}
.ya7{bottom:796.093333pt;}
.y25{bottom:798.493333pt;}
.y214{bottom:800.413333pt;}
.y1bf{bottom:801.213333pt;}
.y128{bottom:802.813333pt;}
.y16c{bottom:804.413333pt;}
.y108{bottom:805.373333pt;}
.y50{bottom:806.813333pt;}
.y1a6{bottom:806.973333pt;}
.y1fb{bottom:809.213333pt;}
.y1e0{bottom:810.653333pt;}
.y188{bottom:812.413333pt;}
.y237{bottom:815.013333pt;}
.yce{bottom:815.173333pt;}
.yee{bottom:815.973333pt;}
.y1be{bottom:821.253333pt;}
.y14e{bottom:822.693333pt;}
.y16b{bottom:824.133333pt;}
.y7b{bottom:824.293333pt;}
.y4f{bottom:826.693333pt;}
.ya6{bottom:826.853333pt;}
.y16{bottom:828.613333pt;}
.y1df{bottom:830.373333pt;}
.y213{bottom:830.693333pt;}
.y127{bottom:833.413333pt;}
.y187{bottom:833.573333pt;}
.y256{bottom:834.373333pt;}
.ycd{bottom:834.853333pt;}
.yed{bottom:835.973333pt;}
.y107{bottom:836.133333pt;}
.y7a{bottom:843.973333pt;}
.ya5{bottom:846.533333pt;}
.y1bd{bottom:851.493333pt;}
.y126{bottom:853.253333pt;}
.y14d{bottom:853.413333pt;}
.y236{bottom:854.373333pt;}
.ycc{bottom:854.693333pt;}
.yec{bottom:855.813333pt;}
.y4e{bottom:857.413333pt;}
.y1de{bottom:860.773333pt;}
.y1fa{bottom:861.093333pt;}
.y212{bottom:861.253333pt;}
.y79{bottom:863.813333pt;}
.y255{bottom:864.293333pt;}
.ya4{bottom:866.373333pt;}
.y24{bottom:868.773333pt;}
.y15{bottom:872.293333pt;}
.y125{bottom:873.093333pt;}
.y235{bottom:874.213333pt;}
.ycb{bottom:874.533333pt;}
.y106{bottom:875.653333pt;}
.y186{bottom:875.813333pt;}
.y4d{bottom:877.093333pt;}
.y1bc{bottom:882.373333pt;}
.y78{bottom:883.653333pt;}
.ya3{bottom:886.213333pt;}
.yeb{bottom:887.653333pt;}
.y1dd{bottom:891.653333pt;}
.y211{bottom:892.293333pt;}
.y14c{bottom:892.933333pt;}
.yca{bottom:894.373333pt;}
.y105{bottom:895.493333pt;}
.y4c{bottom:896.933333pt;}
.y185{bottom:897.093333pt;}
.y23{bottom:899.333333pt;}
.y1bb{bottom:902.053333pt;}
.y124{bottom:903.333333pt;}
.y77{bottom:903.493333pt;}
.ya2{bottom:906.213333pt;}
.y14b{bottom:912.773333pt;}
.yc9{bottom:914.213333pt;}
.y14{bottom:916.133333pt;}
.y4b{bottom:916.773333pt;}
.y1dc{bottom:922.053333pt;}
.y16a{bottom:923.493333pt;}
.yea{bottom:923.653333pt;}
.y254{bottom:924.293333pt;}
.y104{bottom:927.333333pt;}
.y184{bottom:929.093333pt;}
.y21{bottom:929.893333pt;}
.y1ba{bottom:932.453333pt;}
.yc8{bottom:933.733333pt;}
.y234{bottom:934.053333pt;}
.y76{bottom:934.213333pt;}
.y4a{bottom:936.613333pt;}
.y1a5{bottom:936.773333pt;}
.ya1{bottom:938.053333pt;}
.y14a{bottom:943.493333pt;}
.y183{bottom:950.053333pt;}
.y1db{bottom:952.613333pt;}
.y75{bottom:953.893333pt;}
.ye9{bottom:954.053333pt;}
.y253{bottom:954.373333pt;}
.y49{bottom:956.453333pt;}
.y13{bottom:959.813333pt;}
.y149{bottom:963.173333pt;}
.y103{bottom:963.333333pt;}
.y182{bottom:971.173333pt;}
.y74{bottom:973.733333pt;}
.ya0{bottom:973.893333pt;}
.y48{bottom:976.293333pt;}
.y20{bottom:977.733333pt;}
.y148{bottom:983.013333pt;}
.y1da{bottom:983.173333pt;}
.y252{bottom:984.293333pt;}
.y181{bottom:992.293333pt;}
.y73{bottom:993.573333pt;}
.y102{bottom:993.733333pt;}
.y12{bottom:1003.653333pt;}
.y47{bottom:1008.293333pt;}
.y1f{bottom:1013.413333pt;}
.y72{bottom:1013.573333pt;}
.y210{bottom:1013.733333pt;}
.y251{bottom:1014.373333pt;}
.he{height:30.400000pt;}
.hb{height:30.546667pt;}
.hf{height:30.560000pt;}
.h13{height:57.375000pt;}
.h2{height:58.563750pt;}
.h16{height:62.781250pt;}
.h12{height:62.812500pt;}
.h9{height:64.500000pt;}
.h15{height:65.781915pt;}
.hc{height:66.625000pt;}
.hd{height:70.260000pt;}
.h17{height:73.490625pt;}
.ha{height:85.785000pt;}
.h14{height:88.611250pt;}
.h5{height:104.896875pt;}
.h6{height:107.715000pt;}
.h11{height:131.218667pt;}
.h3{height:139.965000pt;}
.h4{height:150.285000pt;}
.h10{height:229.146667pt;}
.h18{height:244.513750pt;}
.h8{height:258.000000pt;}
.h7{height:266.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:209.493333pt;}
.w2{width:371.897333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.026667pt;}
.x16{left:31.185333pt;}
.x11{left:55.185333pt;}
.x14{left:79.185333pt;}
.x10{left:106.281333pt;}
.x2{left:113.472000pt;}
.x15{left:127.225333pt;}
.x18{left:137.466667pt;}
.xd{left:145.146667pt;}
.x4{left:149.466667pt;}
.x19{left:158.746667pt;}
.x17{left:161.466667pt;}
.x1a{left:169.466667pt;}
.x3{left:182.586667pt;}
.x9{left:185.786667pt;}
.x1b{left:193.466667pt;}
.x1e{left:202.106667pt;}
.x1d{left:209.466667pt;}
.xe{left:214.426667pt;}
.xa{left:219.226667pt;}
.xb{left:240.226667pt;}
.x7{left:256.866667pt;}
.x5{left:274.626667pt;}
.x6{left:287.586667pt;}
.xc{left:339.906667pt;}
.xf{left:358.306667pt;}
.x8{left:396.893333pt;}
.x12{left:478.186667pt;}
.x1c{left:665.600000pt;}
.x1{left:673.120000pt;}
}

