
    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_ed391a633019a33870ec77f4.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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_8e53bca43d7be55477e5aee5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_52240b442062a413635fa946.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c6e21b663d68dff1e544a2b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_18ce38cdaa0ee6dc70c24e3c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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;}
.m1{transform:matrix(0.176437,-0.177116,0.176437,0.177116,0,0);-ms-transform:matrix(0.176437,-0.177116,0.176437,0.177116,0,0);-webkit-transform:matrix(0.176437,-0.177116,0.176437,0.177116,0,0);}
.m3{transform:matrix(0.245928,0.039554,-0.039402,0.246875,0,0);-ms-transform:matrix(0.245928,0.039554,-0.039402,0.246875,0,0);-webkit-transform:matrix(0.245928,0.039554,-0.039402,0.246875,0,0);}
.m4{transform:matrix(0.248210,0.020476,-0.020398,0.249166,0,0);-ms-transform:matrix(0.248210,0.020476,-0.020398,0.249166,0,0);-webkit-transform:matrix(0.248210,0.020476,-0.020398,0.249166,0,0);}
.m2{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-30.240000px;}
.v4{vertical-align:-16.395131px;}
.v3{vertical-align:-2.358961px;}
.v5{vertical-align:-1.228341px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.816823px;}
.v2{vertical-align:30.240000px;}
.lsb{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.272038px;}
.ls5{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.293102px;}
.ls3{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.804465px;}
.ls15{letter-spacing:0.841829px;}
.ls11{letter-spacing:1.068731px;}
.ls14{letter-spacing:1.147233px;}
.ls18{letter-spacing:1.170628px;}
.ls10{letter-spacing:1.367097px;}
.lsf{letter-spacing:1.523330px;}
.lse{letter-spacing:1.532654px;}
.ls17{letter-spacing:1.568775px;}
.ls12{letter-spacing:3.436346px;}
.ls19{letter-spacing:3.807735px;}
.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;}
}
.ws5{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.160000px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.wse{word-spacing:-19.584000px;}
.ws11{word-spacing:-18.720120px;}
.ws10{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws3{word-spacing:-18.109320px;}
.ws0{word-spacing:-16.506480px;}
.wsf{word-spacing:-15.228000px;}
.wsa{word-spacing:-12.858061px;}
.wsd{word-spacing:-12.857211px;}
.wsc{word-spacing:-12.856738px;}
.ws9{word-spacing:-12.833291px;}
.ws1{word-spacing:-11.609280px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:219.307471px;}
._3{margin-left:-2.204640px;}
._2{margin-left:-1.008000px;}
._0{width:1.015920px;}
._1{width:2.211120px;}
._7{width:3.723840px;}
._8{width:4.877280px;}
._e{width:6.179040px;}
._4{width:7.750080px;}
._5{width:9.008640px;}
._b{width:10.458000px;}
._6{width:11.856960px;}
._10{width:13.245120px;}
._15{width:14.249520px;}
._a{width:15.433920px;}
._9{width:17.288640px;}
._18{width:18.360000px;}
._2c{width:19.938240px;}
._19{width:21.406320px;}
._c{width:22.852800px;}
._d{width:23.883840px;}
._29{width:25.704000px;}
._25{width:27.072000px;}
._13{width:28.656000px;}
._12{width:29.952000px;}
._22{width:31.024080px;}
._21{width:32.256000px;}
._17{width:33.264000px;}
._16{width:34.272000px;}
._14{width:35.496000px;}
._26{width:36.792000px;}
._1c{width:38.016000px;}
._20{width:39.456000px;}
._1f{width:40.680000px;}
._11{width:42.768000px;}
._1b{width:46.872000px;}
._1a{width:48.024000px;}
._24{width:49.536000px;}
._23{width:50.616000px;}
._27{width:54.504000px;}
._28{width:55.512000px;}
._2b{width:59.006640px;}
._2a{width:60.474240px;}
._1e{width:80.712000px;}
._1d{width:82.080000px;}
._f{width:844.140000px;}
.fc6{color:rgb(36,63,96);}
.fc5{color:transparent;}
.fc4{color:rgb(34,31,32);}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs3{font-size:41.760000px;}
.fs4{font-size:46.162917px;}
.fs6{font-size:46.247261px;}
.fs7{font-size:46.248961px;}
.fs5{font-size:46.252018px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y114{bottom:2.880000px;}
.y116{bottom:5.400000px;}
.y126{bottom:5.580000px;}
.y11f{bottom:5.760000px;}
.y118{bottom:9.900000px;}
.y122{bottom:10.080000px;}
.y11d{bottom:10.260000px;}
.y11a{bottom:10.440000px;}
.y128{bottom:14.580000px;}
.y113{bottom:18.360000px;}
.y2{bottom:56.340000px;}
.yc6{bottom:91.476000px;}
.yd8{bottom:94.756003px;}
.y102{bottom:97.416000px;}
.yd5{bottom:102.636000px;}
.y111{bottom:106.956000px;}
.y7f{bottom:108.936000px;}
.yc5{bottom:112.176000px;}
.y101{bottom:118.116000px;}
.ya8{bottom:122.076000px;}
.yd4{bottom:123.336000px;}
.yb0{bottom:126.216000px;}
.y110{bottom:127.656000px;}
.y7e{bottom:129.636000px;}
.yc4{bottom:132.876000px;}
.y100{bottom:138.816000px;}
.yd7{bottom:142.306553px;}
.ya7{bottom:142.776000px;}
.yd3{bottom:144.216000px;}
.yaf{bottom:146.916000px;}
.y10f{bottom:148.356000px;}
.y7d{bottom:150.330000px;}
.yc3{bottom:153.570000px;}
.yff{bottom:159.510000px;}
.ya6{bottom:163.470000px;}
.yd2{bottom:164.730000px;}
.yae{bottom:167.610000px;}
.y10e{bottom:169.050000px;}
.y7c{bottom:171.030000px;}
.ydb{bottom:171.850485px;}
.yc2{bottom:174.270000px;}
.yd9{bottom:175.937590px;}
.yfe{bottom:180.210000px;}
.ya5{bottom:184.170000px;}
.yd1{bottom:185.430000px;}
.yad{bottom:188.310000px;}
.y10d{bottom:189.750000px;}
.y7b{bottom:191.730000px;}
.yc1{bottom:194.970000px;}
.yda{bottom:200.541963px;}
.yfd{bottom:200.910000px;}
.ya4{bottom:204.870000px;}
.yd0{bottom:206.130000px;}
.yde{bottom:206.263911px;}
.yac{bottom:209.010000px;}
.y10c{bottom:210.450000px;}
.y7a{bottom:212.430000px;}
.yc0{bottom:215.670000px;}
.ydc{bottom:216.119673px;}
.yfc{bottom:221.610000px;}
.y33{bottom:222.870000px;}
.ydd{bottom:224.317238px;}
.ya3{bottom:225.570000px;}
.ycf{bottom:226.830000px;}
.yab{bottom:229.710000px;}
.y10b{bottom:231.150000px;}
.y79{bottom:233.130000px;}
.ybf{bottom:236.370000px;}
.yfb{bottom:242.310000px;}
.y32{bottom:243.570000px;}
.ya2{bottom:246.270000px;}
.yce{bottom:247.530000px;}
.yaa{bottom:250.410000px;}
.y10a{bottom:251.850000px;}
.y78{bottom:253.830000px;}
.ybe{bottom:257.070000px;}
.yfa{bottom:263.010000px;}
.ycd{bottom:264.090000px;}
.y31{bottom:264.270000px;}
.ya1{bottom:266.970000px;}
.y127{bottom:269.130000px;}
.ya9{bottom:271.110000px;}
.y77{bottom:274.530000px;}
.ybd{bottom:277.770000px;}
.yf9{bottom:283.710000px;}
.y30{bottom:284.970000px;}
.ya0{bottom:287.670000px;}
.y5c{bottom:291.810000px;}
.y76{bottom:295.230000px;}
.ybc{bottom:298.470000px;}
.yf8{bottom:304.410000px;}
.y2f{bottom:305.670000px;}
.y9f{bottom:308.370000px;}
.y125{bottom:309.270000px;}
.y5b{bottom:312.510000px;}
.ybb{bottom:315.210000px;}
.y75{bottom:315.930000px;}
.yf7{bottom:325.110000px;}
.y2e{bottom:326.370000px;}
.y9e{bottom:329.115000px;}
.y124{bottom:330.915000px;}
.y5a{bottom:333.255000px;}
.y84{bottom:333.435000px;}
.y74{bottom:336.675000px;}
.yf6{bottom:345.855000px;}
.y2d{bottom:347.115000px;}
.y9d{bottom:349.815000px;}
.y59{bottom:353.955000px;}
.y73{bottom:357.375000px;}
.y123{bottom:361.335000px;}
.yf5{bottom:366.555000px;}
.y2c{bottom:367.815000px;}
.y9c{bottom:370.515000px;}
.y58{bottom:374.655000px;}
.y72{bottom:378.075000px;}
.yf4{bottom:387.255000px;}
.y2b{bottom:388.515000px;}
.y9b{bottom:391.215000px;}
.y121{bottom:392.295000px;}
.y57{bottom:395.355000px;}
.y71{bottom:398.775000px;}
.yf3{bottom:407.955000px;}
.y2a{bottom:409.215000px;}
.y9a{bottom:411.915000px;}
.y14c{bottom:415.515000px;}
.y56{bottom:416.055000px;}
.y70{bottom:419.475000px;}
.y120{bottom:422.715000px;}
.yf2{bottom:428.655000px;}
.y29{bottom:429.915000px;}
.y99{bottom:432.615000px;}
.y14b{bottom:434.595000px;}
.y55{bottom:436.755000px;}
.y6f{bottom:440.355000px;}
.yf1{bottom:449.355000px;}
.y28{bottom:450.075000px;}
.y11e{bottom:453.135000px;}
.y98{bottom:453.315000px;}
.y14a{bottom:453.495000px;}
.y54{bottom:457.455000px;}
.y6e{bottom:461.055000px;}
.y27{bottom:468.975000px;}
.yf0{bottom:470.055000px;}
.y149{bottom:472.395000px;}
.y97{bottom:474.015000px;}
.y11c{bottom:475.095000px;}
.y53{bottom:478.155000px;}
.y6d{bottom:481.575000px;}
.y26{bottom:488.055000px;}
.yef{bottom:490.755000px;}
.y148{bottom:491.475000px;}
.y96{bottom:494.715000px;}
.y52{bottom:498.855000px;}
.y6c{bottom:502.275000px;}
.y11b{bottom:506.235000px;}
.y25{bottom:506.955000px;}
.y147{bottom:510.375000px;}
.yee{bottom:511.455000px;}
.y95{bottom:515.415000px;}
.y51{bottom:519.555000px;}
.y6b{bottom:522.975000px;}
.y24{bottom:526.035000px;}
.y146{bottom:529.455000px;}
.yed{bottom:532.155000px;}
.ycc{bottom:533.775000px;}
.y94{bottom:536.115000px;}
.y119{bottom:536.475000px;}
.y50{bottom:540.255000px;}
.y6a{bottom:543.675000px;}
.y23{bottom:544.935000px;}
.y145{bottom:548.355000px;}
.yec{bottom:552.855000px;}
.ycb{bottom:554.475000px;}
.y93{bottom:556.815000px;}
.y4f{bottom:560.955000px;}
.y22{bottom:563.835000px;}
.y69{bottom:564.375000px;}
.y144{bottom:567.435000px;}
.y117{bottom:567.615000px;}
.yca{bottom:571.215000px;}
.yeb{bottom:573.555000px;}
.y92{bottom:577.515000px;}
.y4e{bottom:581.655000px;}
.y21{bottom:582.915000px;}
.y68{bottom:585.075000px;}
.y143{bottom:586.335000px;}
.yea{bottom:594.255000px;}
.y115{bottom:598.065000px;}
.y91{bottom:598.245000px;}
.y20{bottom:601.845000px;}
.y4d{bottom:602.385000px;}
.y142{bottom:605.265000px;}
.y67{bottom:605.805000px;}
.ye9{bottom:614.985000px;}
.y90{bottom:618.945000px;}
.y112{bottom:619.485000px;}
.y1f{bottom:620.925000px;}
.y4c{bottom:623.085000px;}
.y141{bottom:624.345000px;}
.y66{bottom:626.505000px;}
.ye8{bottom:635.685000px;}
.y8f{bottom:639.645000px;}
.y1e{bottom:639.825000px;}
.yba{bottom:641.805000px;}
.y140{bottom:643.245000px;}
.y4b{bottom:643.785000px;}
.y65{bottom:647.205000px;}
.ye7{bottom:656.385000px;}
.y1d{bottom:658.725000px;}
.y109{bottom:659.625000px;}
.y8e{bottom:660.345000px;}
.y13f{bottom:662.325000px;}
.yb9{bottom:662.505000px;}
.y4a{bottom:664.485000px;}
.y83{bottom:664.665000px;}
.y64{bottom:667.905000px;}
.ye6{bottom:677.085000px;}
.y1c{bottom:677.805000px;}
.y108{bottom:680.325000px;}
.y8d{bottom:681.045000px;}
.y13e{bottom:681.225000px;}
.yb8{bottom:683.205000px;}
.y49{bottom:685.185000px;}
.y82{bottom:685.365000px;}
.y63{bottom:688.605000px;}
.y1b{bottom:696.705000px;}
.ye5{bottom:697.785000px;}
.y13d{bottom:700.125000px;}
.y107{bottom:701.025000px;}
.y8c{bottom:701.745000px;}
.yb7{bottom:703.905000px;}
.y48{bottom:705.885000px;}
.y81{bottom:706.065000px;}
.y62{bottom:709.305000px;}
.y1a{bottom:715.785000px;}
.ye4{bottom:718.485000px;}
.y13c{bottom:719.205000px;}
.y106{bottom:721.725000px;}
.y8b{bottom:722.445000px;}
.yb6{bottom:724.605000px;}
.y47{bottom:726.585000px;}
.y61{bottom:730.005000px;}
.y19{bottom:734.685000px;}
.y13b{bottom:738.105000px;}
.ye3{bottom:739.185000px;}
.y105{bottom:742.425000px;}
.y8a{bottom:743.145000px;}
.yb5{bottom:745.305000px;}
.y46{bottom:747.285000px;}
.y60{bottom:750.705000px;}
.y18{bottom:753.585000px;}
.y13a{bottom:757.185000px;}
.ye2{bottom:759.885000px;}
.y104{bottom:763.125000px;}
.y89{bottom:763.845000px;}
.yb4{bottom:766.005000px;}
.y45{bottom:767.985000px;}
.y5f{bottom:771.405000px;}
.y17{bottom:772.665000px;}
.y139{bottom:776.085000px;}
.ye1{bottom:780.585000px;}
.yc9{bottom:781.485000px;}
.y103{bottom:783.825000px;}
.y88{bottom:784.545000px;}
.yb3{bottom:786.705000px;}
.y44{bottom:788.685000px;}
.y16{bottom:791.565000px;}
.y5e{bottom:792.105000px;}
.y138{bottom:794.985000px;}
.ye0{bottom:801.285000px;}
.yc8{bottom:802.185000px;}
.y87{bottom:805.245000px;}
.yb2{bottom:807.405000px;}
.y5d{bottom:808.845000px;}
.y43{bottom:809.385000px;}
.y15{bottom:810.645000px;}
.y137{bottom:814.065000px;}
.ydf{bottom:818.025000px;}
.yd6{bottom:818.820000px;}
.yc7{bottom:818.925000px;}
.yb1{bottom:824.145000px;}
.y86{bottom:825.945000px;}
.y14{bottom:829.545000px;}
.y42{bottom:830.085000px;}
.y136{bottom:832.965000px;}
.y85{bottom:842.685000px;}
.y13{bottom:848.445000px;}
.y41{bottom:850.785000px;}
.y135{bottom:852.045000px;}
.y12{bottom:867.570000px;}
.y134{bottom:870.990000px;}
.y40{bottom:871.530000px;}
.y11{bottom:886.470000px;}
.y133{bottom:889.890000px;}
.y80{bottom:892.230000px;}
.y3f{bottom:892.410000px;}
.y10{bottom:905.550000px;}
.y132{bottom:908.970000px;}
.y3e{bottom:912.930000px;}
.yf{bottom:924.450000px;}
.y131{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.ye{bottom:943.530000px;}
.y130{bottom:946.950000px;}
.y3c{bottom:954.330000px;}
.yd{bottom:962.430000px;}
.y12f{bottom:965.850000px;}
.y3b{bottom:975.030000px;}
.yc{bottom:981.870000px;}
.y12e{bottom:984.930000px;}
.y3a{bottom:995.730000px;}
.yb{bottom:1002.570000px;}
.y12d{bottom:1003.830000px;}
.y39{bottom:1016.430000px;}
.y12c{bottom:1022.730000px;}
.ya{bottom:1023.270000px;}
.y38{bottom:1037.130000px;}
.y12b{bottom:1041.810000px;}
.y9{bottom:1043.970000px;}
.y37{bottom:1057.830000px;}
.y12a{bottom:1060.710000px;}
.y8{bottom:1064.310000px;}
.y36{bottom:1078.530000px;}
.y129{bottom:1079.790000px;}
.y7{bottom:1083.390000px;}
.y35{bottom:1099.230000px;}
.y6{bottom:1109.850000px;}
.y34{bottom:1119.930000px;}
.y5{bottom:1128.930000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1161.360000px;}
.y1{bottom:1195.920000px;}
.he{height:20.700000px;}
.h15{height:20.916000px;}
.h12{height:21.240000px;}
.h11{height:29.520000px;}
.h13{height:29.700000px;}
.hf{height:29.736000px;}
.h14{height:30.240000px;}
.h10{height:30.420000px;}
.hc{height:30.960000px;}
.h16{height:39.420000px;}
.h4{height:43.554375px;}
.h8{height:48.146480px;}
.hb{height:48.236221px;}
.h9{height:48.239410px;}
.ha{height:50.242761px;}
.hd{height:56.320312px;}
.h2{height:62.327813px;}
.h6{height:64.546875px;}
.h5{height:69.086250px;}
.h3{height:75.093750px;}
.h7{height:338.312441px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:142.416000px;}
.w3{width:167.430000px;}
.w6{width:182.010000px;}
.w4{width:201.810000px;}
.w2{width:565.113281px;}
.w7{width:695.850000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:11.880000px;}
.x33{left:16.380000px;}
.x2f{left:19.980000px;}
.x36{left:27.720000px;}
.x34{left:29.160000px;}
.x39{left:31.500000px;}
.x29{left:33.840000px;}
.x30{left:35.100000px;}
.x1c{left:36.197262px;}
.x3c{left:39.060000px;}
.x32{left:45.540000px;}
.x1b{left:47.715895px;}
.x2a{left:56.694000px;}
.x38{left:63.720000px;}
.x35{left:67.320000px;}
.x3a{left:71.100000px;}
.x3e{left:72.180000px;}
.x2d{left:74.160000px;}
.x37{left:83.694000px;}
.x3d{left:89.640000px;}
.x3b{left:90.900000px;}
.x28{left:98.676000px;}
.xa{left:106.416000px;}
.x12{left:109.296000px;}
.x18{left:111.276000px;}
.x1d{left:116.803262px;}
.x25{left:126.216000px;}
.x1{left:144.576000px;}
.x3f{left:152.499000px;}
.x1a{left:164.100000px;}
.x6{left:167.430000px;}
.x3{left:175.890000px;}
.x16{left:178.770000px;}
.x5{left:198.390000px;}
.x20{left:202.326375px;}
.x27{left:224.310000px;}
.x7{left:240.690000px;}
.xc{left:249.015000px;}
.xe{left:254.775000px;}
.x10{left:264.855000px;}
.x2b{left:266.835000px;}
.x24{left:280.875000px;}
.x19{left:292.935000px;}
.x8{left:298.695000px;}
.x14{left:313.455000px;}
.x26{left:324.435000px;}
.x1e{left:334.752262px;}
.x21{left:361.891193px;}
.x9{left:401.475000px;}
.x4{left:446.505000px;}
.x22{left:465.526315px;}
.x2e{left:469.365000px;}
.x1f{left:539.533122px;}
.x31{left:612.510000px;}
.x23{left:652.830000px;}
.x17{left:679.470000px;}
.x15{left:689.010000px;}
.xd{left:714.750000px;}
.x13{left:729.000000px;}
.x11{left:732.600000px;}
.x2{left:761.760000px;}
.xf{left:765.540000px;}
.xb{left:766.620000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v4{vertical-align:-14.573449pt;}
.v3{vertical-align:-2.096855pt;}
.v5{vertical-align:-1.091858pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.614954pt;}
.v2{vertical-align:26.880000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.241812pt;}
.ls5{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.260535pt;}
.ls3{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.715080pt;}
.ls15{letter-spacing:0.748292pt;}
.ls11{letter-spacing:0.949983pt;}
.ls14{letter-spacing:1.019763pt;}
.ls18{letter-spacing:1.040559pt;}
.ls10{letter-spacing:1.215198pt;}
.lsf{letter-spacing:1.354071pt;}
.lse{letter-spacing:1.362359pt;}
.ls17{letter-spacing:1.394467pt;}
.ls12{letter-spacing:3.054530pt;}
.ls19{letter-spacing:3.384653pt;}
.ws5{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.920000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.408000pt;}
.ws11{word-spacing:-16.640107pt;}
.ws10{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws3{word-spacing:-16.097173pt;}
.ws0{word-spacing:-14.672427pt;}
.wsf{word-spacing:-13.536000pt;}
.wsa{word-spacing:-11.429388pt;}
.wsd{word-spacing:-11.428632pt;}
.wsc{word-spacing:-11.428212pt;}
.ws9{word-spacing:-11.407370pt;}
.ws1{word-spacing:-10.319360pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:194.939974pt;}
._3{margin-left:-1.959680pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.903040pt;}
._1{width:1.965440pt;}
._7{width:3.310080pt;}
._8{width:4.335360pt;}
._e{width:5.492480pt;}
._4{width:6.888960pt;}
._5{width:8.007680pt;}
._b{width:9.296000pt;}
._6{width:10.539520pt;}
._10{width:11.773440pt;}
._15{width:12.666240pt;}
._a{width:13.719040pt;}
._9{width:15.367680pt;}
._18{width:16.320000pt;}
._2c{width:17.722880pt;}
._19{width:19.027840pt;}
._c{width:20.313600pt;}
._d{width:21.230080pt;}
._29{width:22.848000pt;}
._25{width:24.064000pt;}
._13{width:25.472000pt;}
._12{width:26.624000pt;}
._22{width:27.576960pt;}
._21{width:28.672000pt;}
._17{width:29.568000pt;}
._16{width:30.464000pt;}
._14{width:31.552000pt;}
._26{width:32.704000pt;}
._1c{width:33.792000pt;}
._20{width:35.072000pt;}
._1f{width:36.160000pt;}
._11{width:38.016000pt;}
._1b{width:41.664000pt;}
._1a{width:42.688000pt;}
._24{width:44.032000pt;}
._23{width:44.992000pt;}
._27{width:48.448000pt;}
._28{width:49.344000pt;}
._2b{width:52.450347pt;}
._2a{width:53.754880pt;}
._1e{width:71.744000pt;}
._1d{width:72.960000pt;}
._f{width:750.346667pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:41.033704pt;}
.fs6{font-size:41.108676pt;}
.fs7{font-size:41.110187pt;}
.fs5{font-size:41.112905pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:2.560000pt;}
.y116{bottom:4.800000pt;}
.y126{bottom:4.960000pt;}
.y11f{bottom:5.120000pt;}
.y118{bottom:8.800000pt;}
.y122{bottom:8.960000pt;}
.y11d{bottom:9.120000pt;}
.y11a{bottom:9.280000pt;}
.y128{bottom:12.960000pt;}
.y113{bottom:16.320000pt;}
.y2{bottom:50.080000pt;}
.yc6{bottom:81.312000pt;}
.yd8{bottom:84.227558pt;}
.y102{bottom:86.592000pt;}
.yd5{bottom:91.232000pt;}
.y111{bottom:95.072000pt;}
.y7f{bottom:96.832000pt;}
.yc5{bottom:99.712000pt;}
.y101{bottom:104.992000pt;}
.ya8{bottom:108.512000pt;}
.yd4{bottom:109.632000pt;}
.yb0{bottom:112.192000pt;}
.y110{bottom:113.472000pt;}
.y7e{bottom:115.232000pt;}
.yc4{bottom:118.112000pt;}
.y100{bottom:123.392000pt;}
.yd7{bottom:126.494713pt;}
.ya7{bottom:126.912000pt;}
.yd3{bottom:128.192000pt;}
.yaf{bottom:130.592000pt;}
.y10f{bottom:131.872000pt;}
.y7d{bottom:133.626667pt;}
.yc3{bottom:136.506667pt;}
.yff{bottom:141.786667pt;}
.ya6{bottom:145.306667pt;}
.yd2{bottom:146.426667pt;}
.yae{bottom:148.986667pt;}
.y10e{bottom:150.266667pt;}
.y7c{bottom:152.026667pt;}
.ydb{bottom:152.755986pt;}
.yc2{bottom:154.906667pt;}
.yd9{bottom:156.388969pt;}
.yfe{bottom:160.186667pt;}
.ya5{bottom:163.706667pt;}
.yd1{bottom:164.826667pt;}
.yad{bottom:167.386667pt;}
.y10d{bottom:168.666667pt;}
.y7b{bottom:170.426667pt;}
.yc1{bottom:173.306667pt;}
.yda{bottom:178.259523pt;}
.yfd{bottom:178.586667pt;}
.ya4{bottom:182.106667pt;}
.yd0{bottom:183.226667pt;}
.yde{bottom:183.345698pt;}
.yac{bottom:185.786667pt;}
.y10c{bottom:187.066667pt;}
.y7a{bottom:188.826667pt;}
.yc0{bottom:191.706667pt;}
.ydc{bottom:192.106376pt;}
.yfc{bottom:196.986667pt;}
.y33{bottom:198.106667pt;}
.ydd{bottom:199.393101pt;}
.ya3{bottom:200.506667pt;}
.ycf{bottom:201.626667pt;}
.yab{bottom:204.186667pt;}
.y10b{bottom:205.466667pt;}
.y79{bottom:207.226667pt;}
.ybf{bottom:210.106667pt;}
.yfb{bottom:215.386667pt;}
.y32{bottom:216.506667pt;}
.ya2{bottom:218.906667pt;}
.yce{bottom:220.026667pt;}
.yaa{bottom:222.586667pt;}
.y10a{bottom:223.866667pt;}
.y78{bottom:225.626667pt;}
.ybe{bottom:228.506667pt;}
.yfa{bottom:233.786667pt;}
.ycd{bottom:234.746667pt;}
.y31{bottom:234.906667pt;}
.ya1{bottom:237.306667pt;}
.y127{bottom:239.226667pt;}
.ya9{bottom:240.986667pt;}
.y77{bottom:244.026667pt;}
.ybd{bottom:246.906667pt;}
.yf9{bottom:252.186667pt;}
.y30{bottom:253.306667pt;}
.ya0{bottom:255.706667pt;}
.y5c{bottom:259.386667pt;}
.y76{bottom:262.426667pt;}
.ybc{bottom:265.306667pt;}
.yf8{bottom:270.586667pt;}
.y2f{bottom:271.706667pt;}
.y9f{bottom:274.106667pt;}
.y125{bottom:274.906667pt;}
.y5b{bottom:277.786667pt;}
.ybb{bottom:280.186667pt;}
.y75{bottom:280.826667pt;}
.yf7{bottom:288.986667pt;}
.y2e{bottom:290.106667pt;}
.y9e{bottom:292.546667pt;}
.y124{bottom:294.146667pt;}
.y5a{bottom:296.226667pt;}
.y84{bottom:296.386667pt;}
.y74{bottom:299.266667pt;}
.yf6{bottom:307.426667pt;}
.y2d{bottom:308.546667pt;}
.y9d{bottom:310.946667pt;}
.y59{bottom:314.626667pt;}
.y73{bottom:317.666667pt;}
.y123{bottom:321.186667pt;}
.yf5{bottom:325.826667pt;}
.y2c{bottom:326.946667pt;}
.y9c{bottom:329.346667pt;}
.y58{bottom:333.026667pt;}
.y72{bottom:336.066667pt;}
.yf4{bottom:344.226667pt;}
.y2b{bottom:345.346667pt;}
.y9b{bottom:347.746667pt;}
.y121{bottom:348.706667pt;}
.y57{bottom:351.426667pt;}
.y71{bottom:354.466667pt;}
.yf3{bottom:362.626667pt;}
.y2a{bottom:363.746667pt;}
.y9a{bottom:366.146667pt;}
.y14c{bottom:369.346667pt;}
.y56{bottom:369.826667pt;}
.y70{bottom:372.866667pt;}
.y120{bottom:375.746667pt;}
.yf2{bottom:381.026667pt;}
.y29{bottom:382.146667pt;}
.y99{bottom:384.546667pt;}
.y14b{bottom:386.306667pt;}
.y55{bottom:388.226667pt;}
.y6f{bottom:391.426667pt;}
.yf1{bottom:399.426667pt;}
.y28{bottom:400.066667pt;}
.y11e{bottom:402.786667pt;}
.y98{bottom:402.946667pt;}
.y14a{bottom:403.106667pt;}
.y54{bottom:406.626667pt;}
.y6e{bottom:409.826667pt;}
.y27{bottom:416.866667pt;}
.yf0{bottom:417.826667pt;}
.y149{bottom:419.906667pt;}
.y97{bottom:421.346667pt;}
.y11c{bottom:422.306667pt;}
.y53{bottom:425.026667pt;}
.y6d{bottom:428.066667pt;}
.y26{bottom:433.826667pt;}
.yef{bottom:436.226667pt;}
.y148{bottom:436.866667pt;}
.y96{bottom:439.746667pt;}
.y52{bottom:443.426667pt;}
.y6c{bottom:446.466667pt;}
.y11b{bottom:449.986667pt;}
.y25{bottom:450.626667pt;}
.y147{bottom:453.666667pt;}
.yee{bottom:454.626667pt;}
.y95{bottom:458.146667pt;}
.y51{bottom:461.826667pt;}
.y6b{bottom:464.866667pt;}
.y24{bottom:467.586667pt;}
.y146{bottom:470.626667pt;}
.yed{bottom:473.026667pt;}
.ycc{bottom:474.466667pt;}
.y94{bottom:476.546667pt;}
.y119{bottom:476.866667pt;}
.y50{bottom:480.226667pt;}
.y6a{bottom:483.266667pt;}
.y23{bottom:484.386667pt;}
.y145{bottom:487.426667pt;}
.yec{bottom:491.426667pt;}
.ycb{bottom:492.866667pt;}
.y93{bottom:494.946667pt;}
.y4f{bottom:498.626667pt;}
.y22{bottom:501.186667pt;}
.y69{bottom:501.666667pt;}
.y144{bottom:504.386667pt;}
.y117{bottom:504.546667pt;}
.yca{bottom:507.746667pt;}
.yeb{bottom:509.826667pt;}
.y92{bottom:513.346667pt;}
.y4e{bottom:517.026667pt;}
.y21{bottom:518.146667pt;}
.y68{bottom:520.066667pt;}
.y143{bottom:521.186667pt;}
.yea{bottom:528.226667pt;}
.y115{bottom:531.613333pt;}
.y91{bottom:531.773333pt;}
.y20{bottom:534.973333pt;}
.y4d{bottom:535.453333pt;}
.y142{bottom:538.013333pt;}
.y67{bottom:538.493333pt;}
.ye9{bottom:546.653333pt;}
.y90{bottom:550.173333pt;}
.y112{bottom:550.653333pt;}
.y1f{bottom:551.933333pt;}
.y4c{bottom:553.853333pt;}
.y141{bottom:554.973333pt;}
.y66{bottom:556.893333pt;}
.ye8{bottom:565.053333pt;}
.y8f{bottom:568.573333pt;}
.y1e{bottom:568.733333pt;}
.yba{bottom:570.493333pt;}
.y140{bottom:571.773333pt;}
.y4b{bottom:572.253333pt;}
.y65{bottom:575.293333pt;}
.ye7{bottom:583.453333pt;}
.y1d{bottom:585.533333pt;}
.y109{bottom:586.333333pt;}
.y8e{bottom:586.973333pt;}
.y13f{bottom:588.733333pt;}
.yb9{bottom:588.893333pt;}
.y4a{bottom:590.653333pt;}
.y83{bottom:590.813333pt;}
.y64{bottom:593.693333pt;}
.ye6{bottom:601.853333pt;}
.y1c{bottom:602.493333pt;}
.y108{bottom:604.733333pt;}
.y8d{bottom:605.373333pt;}
.y13e{bottom:605.533333pt;}
.yb8{bottom:607.293333pt;}
.y49{bottom:609.053333pt;}
.y82{bottom:609.213333pt;}
.y63{bottom:612.093333pt;}
.y1b{bottom:619.293333pt;}
.ye5{bottom:620.253333pt;}
.y13d{bottom:622.333333pt;}
.y107{bottom:623.133333pt;}
.y8c{bottom:623.773333pt;}
.yb7{bottom:625.693333pt;}
.y48{bottom:627.453333pt;}
.y81{bottom:627.613333pt;}
.y62{bottom:630.493333pt;}
.y1a{bottom:636.253333pt;}
.ye4{bottom:638.653333pt;}
.y13c{bottom:639.293333pt;}
.y106{bottom:641.533333pt;}
.y8b{bottom:642.173333pt;}
.yb6{bottom:644.093333pt;}
.y47{bottom:645.853333pt;}
.y61{bottom:648.893333pt;}
.y19{bottom:653.053333pt;}
.y13b{bottom:656.093333pt;}
.ye3{bottom:657.053333pt;}
.y105{bottom:659.933333pt;}
.y8a{bottom:660.573333pt;}
.yb5{bottom:662.493333pt;}
.y46{bottom:664.253333pt;}
.y60{bottom:667.293333pt;}
.y18{bottom:669.853333pt;}
.y13a{bottom:673.053333pt;}
.ye2{bottom:675.453333pt;}
.y104{bottom:678.333333pt;}
.y89{bottom:678.973333pt;}
.yb4{bottom:680.893333pt;}
.y45{bottom:682.653333pt;}
.y5f{bottom:685.693333pt;}
.y17{bottom:686.813333pt;}
.y139{bottom:689.853333pt;}
.ye1{bottom:693.853333pt;}
.yc9{bottom:694.653333pt;}
.y103{bottom:696.733333pt;}
.y88{bottom:697.373333pt;}
.yb3{bottom:699.293333pt;}
.y44{bottom:701.053333pt;}
.y16{bottom:703.613333pt;}
.y5e{bottom:704.093333pt;}
.y138{bottom:706.653333pt;}
.ye0{bottom:712.253333pt;}
.yc8{bottom:713.053333pt;}
.y87{bottom:715.773333pt;}
.yb2{bottom:717.693333pt;}
.y5d{bottom:718.973333pt;}
.y43{bottom:719.453333pt;}
.y15{bottom:720.573333pt;}
.y137{bottom:723.613333pt;}
.ydf{bottom:727.133333pt;}
.yd6{bottom:727.840000pt;}
.yc7{bottom:727.933333pt;}
.yb1{bottom:732.573333pt;}
.y86{bottom:734.173333pt;}
.y14{bottom:737.373333pt;}
.y42{bottom:737.853333pt;}
.y136{bottom:740.413333pt;}
.y85{bottom:749.053333pt;}
.y13{bottom:754.173333pt;}
.y41{bottom:756.253333pt;}
.y135{bottom:757.373333pt;}
.y12{bottom:771.173333pt;}
.y134{bottom:774.213333pt;}
.y40{bottom:774.693333pt;}
.y11{bottom:787.973333pt;}
.y133{bottom:791.013333pt;}
.y80{bottom:793.093333pt;}
.y3f{bottom:793.253333pt;}
.y10{bottom:804.933333pt;}
.y132{bottom:807.973333pt;}
.y3e{bottom:811.493333pt;}
.yf{bottom:821.733333pt;}
.y131{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.ye{bottom:838.693333pt;}
.y130{bottom:841.733333pt;}
.y3c{bottom:848.293333pt;}
.yd{bottom:855.493333pt;}
.y12f{bottom:858.533333pt;}
.y3b{bottom:866.693333pt;}
.yc{bottom:872.773333pt;}
.y12e{bottom:875.493333pt;}
.y3a{bottom:885.093333pt;}
.yb{bottom:891.173333pt;}
.y12d{bottom:892.293333pt;}
.y39{bottom:903.493333pt;}
.y12c{bottom:909.093333pt;}
.ya{bottom:909.573333pt;}
.y38{bottom:921.893333pt;}
.y12b{bottom:926.053333pt;}
.y9{bottom:927.973333pt;}
.y37{bottom:940.293333pt;}
.y12a{bottom:942.853333pt;}
.y8{bottom:946.053333pt;}
.y36{bottom:958.693333pt;}
.y129{bottom:959.813333pt;}
.y7{bottom:963.013333pt;}
.y35{bottom:977.093333pt;}
.y6{bottom:986.533333pt;}
.y34{bottom:995.493333pt;}
.y5{bottom:1003.493333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1032.320000pt;}
.y1{bottom:1063.040000pt;}
.he{height:18.400000pt;}
.h15{height:18.592000pt;}
.h12{height:18.880000pt;}
.h11{height:26.240000pt;}
.h13{height:26.400000pt;}
.hf{height:26.432000pt;}
.h14{height:26.880000pt;}
.h10{height:27.040000pt;}
.hc{height:27.520000pt;}
.h16{height:35.040000pt;}
.h4{height:38.715000pt;}
.h8{height:42.796871pt;}
.hb{height:42.876640pt;}
.h9{height:42.879475pt;}
.ha{height:44.660232pt;}
.hd{height:50.062500pt;}
.h2{height:55.402500pt;}
.h6{height:57.375000pt;}
.h5{height:61.410000pt;}
.h3{height:66.750000pt;}
.h7{height:300.722170pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:126.592000pt;}
.w3{width:148.826667pt;}
.w6{width:161.786667pt;}
.w4{width:179.386667pt;}
.w2{width:502.322916pt;}
.w7{width:618.533333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:10.560000pt;}
.x33{left:14.560000pt;}
.x2f{left:17.760000pt;}
.x36{left:24.640000pt;}
.x34{left:25.920000pt;}
.x39{left:28.000000pt;}
.x29{left:30.080000pt;}
.x30{left:31.200000pt;}
.x1c{left:32.175344pt;}
.x3c{left:34.720000pt;}
.x32{left:40.480000pt;}
.x1b{left:42.414129pt;}
.x2a{left:50.394667pt;}
.x38{left:56.640000pt;}
.x35{left:59.840000pt;}
.x3a{left:63.200000pt;}
.x3e{left:64.160000pt;}
.x2d{left:65.920000pt;}
.x37{left:74.394667pt;}
.x3d{left:79.680000pt;}
.x3b{left:80.800000pt;}
.x28{left:87.712000pt;}
.xa{left:94.592000pt;}
.x12{left:97.152000pt;}
.x18{left:98.912000pt;}
.x1d{left:103.825121pt;}
.x25{left:112.192000pt;}
.x1{left:128.512000pt;}
.x3f{left:135.554667pt;}
.x1a{left:145.866667pt;}
.x6{left:148.826667pt;}
.x3{left:156.346667pt;}
.x16{left:158.906667pt;}
.x5{left:176.346667pt;}
.x20{left:179.845667pt;}
.x27{left:199.386667pt;}
.x7{left:213.946667pt;}
.xc{left:221.346667pt;}
.xe{left:226.466667pt;}
.x10{left:235.426667pt;}
.x2b{left:237.186667pt;}
.x24{left:249.666667pt;}
.x19{left:260.386667pt;}
.x8{left:265.506667pt;}
.x14{left:278.626667pt;}
.x26{left:288.386667pt;}
.x1e{left:297.557566pt;}
.x21{left:321.681061pt;}
.x9{left:356.866667pt;}
.x4{left:396.893333pt;}
.x22{left:413.801169pt;}
.x2e{left:417.213333pt;}
.x1f{left:479.584997pt;}
.x31{left:544.453333pt;}
.x23{left:580.293333pt;}
.x17{left:603.973333pt;}
.x15{left:612.453333pt;}
.xd{left:635.333333pt;}
.x13{left:648.000000pt;}
.x11{left:651.200000pt;}
.x2{left:677.120000pt;}
.xf{left:680.480000pt;}
.xb{left:681.440000pt;}
}

