
    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_af7765295ffde187f9c6d2b1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_25818522d5ccdef249c7a937.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_16980643b5d41e072127dd91.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_e8003da8677052163e347921.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1fcb4c225e7443f40cd5af57.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_0b9068eebe38f764b0189b15.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_afc8091ad3ee4c1858ab4146.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.lse{letter-spacing:0.900000px;}
.ls5{letter-spacing:59.904000px;}
.lsc{letter-spacing:77.904000px;}
.ls1{letter-spacing:113.904000px;}
.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;}
}
.ws8{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-5.064000px;}
._3{margin-left:-4.056000px;}
._4{margin-left:-2.772000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.053200px;}
._b{width:3.600000px;}
._5{width:5.328000px;}
._6{width:7.056000px;}
._15{width:8.064000px;}
._c{width:9.576000px;}
._d{width:10.656000px;}
._12{width:11.676000px;}
._1a{width:13.176000px;}
._7{width:15.120000px;}
._8{width:16.704000px;}
._9{width:19.872000px;}
._a{width:21.660000px;}
._1b{width:23.040000px;}
._18{width:24.384000px;}
._17{width:25.392000px;}
._19{width:26.688000px;}
._1c{width:28.608000px;}
._1f{width:29.784000px;}
._e{width:30.888000px;}
._f{width:31.896000px;}
._1d{width:34.128000px;}
._10{width:35.928000px;}
._11{width:37.008000px;}
._39{width:39.384000px;}
._29{width:40.680000px;}
._1e{width:48.960000px;}
._34{width:55.440000px;}
._35{width:56.460000px;}
._21{width:60.192000px;}
._14{width:63.480000px;}
._31{width:68.832000px;}
._2b{width:70.776000px;}
._2c{width:71.856000px;}
._38{width:88.056000px;}
._37{width:94.968000px;}
._2d{width:111.456000px;}
._24{width:113.112000px;}
._2e{width:121.968000px;}
._2f{width:123.264000px;}
._36{width:144.072000px;}
._25{width:153.216000px;}
._26{width:154.476000px;}
._20{width:156.252000px;}
._22{width:168.408000px;}
._23{width:169.536000px;}
._30{width:214.200000px;}
._32{width:238.644000px;}
._33{width:239.688000px;}
._27{width:310.536000px;}
._28{width:312.372000px;}
._2a{width:315.108000px;}
._13{width:1435.116000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:41.220000px;}
.y6{bottom:41.940000px;}
.y2c{bottom:68.256000px;}
.y5{bottom:71.676000px;}
.yc9{bottom:99.216000px;}
.y82{bottom:99.756000px;}
.y5b{bottom:100.296000px;}
.y2b{bottom:103.896000px;}
.ya4{bottom:105.696000px;}
.y103{bottom:106.056000px;}
.y1b4{bottom:111.096000px;}
.yfc{bottom:111.816000px;}
.y11d{bottom:117.756000px;}
.yc8{bottom:119.916000px;}
.y81{bottom:120.456000px;}
.y5a{bottom:120.996000px;}
.y1a0{bottom:121.896000px;}
.y2a{bottom:124.596000px;}
.ya3{bottom:126.396000px;}
.y102{bottom:126.756000px;}
.y15e{bottom:130.896000px;}
.y1b3{bottom:131.796000px;}
.yfb{bottom:132.516000px;}
.y13a{bottom:133.956000px;}
.y11c{bottom:138.456000px;}
.yc7{bottom:140.616000px;}
.y59{bottom:141.696000px;}
.y19f{bottom:142.596000px;}
.y29{bottom:145.296000px;}
.ya2{bottom:147.096000px;}
.y101{bottom:147.456000px;}
.y80{bottom:150.150000px;}
.y15d{bottom:151.590000px;}
.y1b2{bottom:152.490000px;}
.yfa{bottom:153.210000px;}
.y139{bottom:154.650000px;}
.y175{bottom:157.890000px;}
.y11b{bottom:159.150000px;}
.yc6{bottom:161.310000px;}
.yd7{bottom:162.390000px;}
.y192{bottom:163.290000px;}
.y28{bottom:165.990000px;}
.ya1{bottom:167.790000px;}
.y100{bottom:168.150000px;}
.y15c{bottom:172.290000px;}
.y1b1{bottom:173.190000px;}
.yf9{bottom:173.910000px;}
.y138{bottom:175.350000px;}
.y174{bottom:178.590000px;}
.y11a{bottom:179.850000px;}
.y58{bottom:180.390000px;}
.y19e{bottom:181.290000px;}
.yc5{bottom:182.010000px;}
.yd6{bottom:183.090000px;}
.y191{bottom:183.990000px;}
.yff{bottom:188.850000px;}
.y7f{bottom:191.910000px;}
.y1b0{bottom:193.890000px;}
.y27{bottom:195.690000px;}
.y137{bottom:196.050000px;}
.ya0{bottom:197.490000px;}
.y173{bottom:199.290000px;}
.y119{bottom:200.550000px;}
.y57{bottom:201.090000px;}
.y19d{bottom:201.990000px;}
.yc4{bottom:202.710000px;}
.yd5{bottom:203.790000px;}
.yf8{bottom:209.550000px;}
.y15b{bottom:210.990000px;}
.y7e{bottom:212.610000px;}
.y1af{bottom:214.590000px;}
.y136{bottom:216.750000px;}
.y172{bottom:219.990000px;}
.y118{bottom:221.250000px;}
.y56{bottom:221.790000px;}
.y190{bottom:222.690000px;}
.yd4{bottom:224.490000px;}
.yf7{bottom:230.250000px;}
.y15a{bottom:231.690000px;}
.y7d{bottom:233.310000px;}
.y26{bottom:234.390000px;}
.y1ae{bottom:235.290000px;}
.y9f{bottom:236.190000px;}
.yc3{bottom:241.410000px;}
.y117{bottom:241.950000px;}
.y55{bottom:242.490000px;}
.y18f{bottom:243.390000px;}
.yd3{bottom:245.190000px;}
.yfe{bottom:250.950000px;}
.y159{bottom:252.390000px;}
.y7c{bottom:254.010000px;}
.y25{bottom:255.090000px;}
.y9e{bottom:256.890000px;}
.y135{bottom:258.330000px;}
.y171{bottom:258.690000px;}
.y19c{bottom:261.390000px;}
.yc2{bottom:262.110000px;}
.y116{bottom:262.650000px;}
.y54{bottom:263.190000px;}
.yd2{bottom:265.890000px;}
.yf6{bottom:268.950000px;}
.y158{bottom:273.090000px;}
.y1ad{bottom:273.990000px;}
.y7b{bottom:274.710000px;}
.y24{bottom:275.790000px;}
.y9d{bottom:277.590000px;}
.y134{bottom:279.030000px;}
.y170{bottom:279.390000px;}
.y18e{bottom:282.090000px;}
.yc1{bottom:282.630000px;}
.y115{bottom:283.350000px;}
.y53{bottom:283.890000px;}
.yd1{bottom:286.590000px;}
.yf5{bottom:289.650000px;}
.y1ac{bottom:294.690000px;}
.y7a{bottom:295.410000px;}
.y23{bottom:296.490000px;}
.y9c{bottom:298.290000px;}
.y133{bottom:299.730000px;}
.y16f{bottom:300.090000px;}
.y18d{bottom:302.790000px;}
.yc0{bottom:303.330000px;}
.y114{bottom:304.050000px;}
.y52{bottom:304.590000px;}
.yf4{bottom:310.350000px;}
.y157{bottom:311.790000px;}
.y1ab{bottom:315.390000px;}
.y79{bottom:316.110000px;}
.y22{bottom:317.235000px;}
.y9b{bottom:319.035000px;}
.y132{bottom:320.475000px;}
.y18c{bottom:323.535000px;}
.ybf{bottom:324.075000px;}
.y113{bottom:324.795000px;}
.y51{bottom:325.335000px;}
.yf3{bottom:331.095000px;}
.y156{bottom:332.535000px;}
.y1aa{bottom:336.135000px;}
.y78{bottom:336.675000px;}
.y21{bottom:337.935000px;}
.y16e{bottom:338.835000px;}
.y9a{bottom:339.735000px;}
.ybe{bottom:344.775000px;}
.y112{bottom:345.495000px;}
.y50{bottom:346.035000px;}
.yf2{bottom:351.795000px;}
.y155{bottom:353.235000px;}
.y1a9{bottom:356.835000px;}
.y77{bottom:357.375000px;}
.y20{bottom:358.635000px;}
.y16d{bottom:359.535000px;}
.y99{bottom:360.435000px;}
.y131{bottom:362.235000px;}
.ybd{bottom:365.475000px;}
.y111{bottom:366.195000px;}
.yd0{bottom:366.735000px;}
.yf1{bottom:372.495000px;}
.y1a8{bottom:377.535000px;}
.y76{bottom:378.075000px;}
.y1f{bottom:379.335000px;}
.y16c{bottom:380.235000px;}
.y98{bottom:381.135000px;}
.y18b{bottom:382.935000px;}
.y4f{bottom:384.735000px;}
.y110{bottom:386.895000px;}
.ycf{bottom:387.435000px;}
.y154{bottom:391.935000px;}
.yf0{bottom:393.195000px;}
.y1a7{bottom:398.235000px;}
.y75{bottom:398.775000px;}
.y1e{bottom:400.035000px;}
.y130{bottom:400.935000px;}
.ybc{bottom:401.295000px;}
.y97{bottom:401.835000px;}
.y18a{bottom:403.635000px;}
.y4e{bottom:405.435000px;}
.y10f{bottom:407.595000px;}
.yce{bottom:408.135000px;}
.y153{bottom:412.635000px;}
.yef{bottom:413.895000px;}
.y16b{bottom:418.935000px;}
.y74{bottom:419.475000px;}
.y1d{bottom:420.735000px;}
.y12f{bottom:421.635000px;}
.y96{bottom:422.535000px;}
.y189{bottom:424.335000px;}
.y4d{bottom:426.135000px;}
.y10e{bottom:428.295000px;}
.ycd{bottom:428.835000px;}
.y152{bottom:433.335000px;}
.yee{bottom:434.595000px;}
.y16a{bottom:439.635000px;}
.ybb{bottom:439.995000px;}
.y73{bottom:440.175000px;}
.y1c{bottom:441.435000px;}
.y19b{bottom:442.335000px;}
.y4c{bottom:446.835000px;}
.ycc{bottom:449.535000px;}
.y12e{bottom:451.335000px;}
.y95{bottom:452.235000px;}
.yed{bottom:455.295000px;}
.y10d{bottom:457.995000px;}
.y169{bottom:460.335000px;}
.yba{bottom:460.695000px;}
.y72{bottom:460.875000px;}
.y1b{bottom:462.135000px;}
.y188{bottom:463.035000px;}
.y4b{bottom:467.535000px;}
.y151{bottom:472.035000px;}
.yec{bottom:475.995000px;}
.y1a6{bottom:478.335000px;}
.yb9{bottom:481.395000px;}
.y71{bottom:481.575000px;}
.y1a{bottom:482.835000px;}
.y187{bottom:483.735000px;}
.y4a{bottom:488.235000px;}
.y12d{bottom:490.035000px;}
.y94{bottom:490.935000px;}
.y150{bottom:492.735000px;}
.yeb{bottom:496.695000px;}
.y168{bottom:499.035000px;}
.y19a{bottom:501.735000px;}
.yb8{bottom:502.095000px;}
.y19{bottom:503.535000px;}
.y186{bottom:504.435000px;}
.y49{bottom:508.935000px;}
.y12c{bottom:510.735000px;}
.y93{bottom:511.635000px;}
.y14f{bottom:513.435000px;}
.yea{bottom:517.395000px;}
.y167{bottom:519.735000px;}
.y199{bottom:522.435000px;}
.y70{bottom:523.335000px;}
.y18{bottom:524.235000px;}
.y48{bottom:529.635000px;}
.y92{bottom:532.335000px;}
.y14e{bottom:534.135000px;}
.ye9{bottom:538.095000px;}
.y12b{bottom:540.435000px;}
.yb7{bottom:540.795000px;}
.y185{bottom:543.135000px;}
.y17{bottom:544.935000px;}
.y47{bottom:550.335000px;}
.y91{bottom:553.035000px;}
.ye8{bottom:558.795000px;}
.y166{bottom:561.135000px;}
.yb6{bottom:561.495000px;}
.y6f{bottom:562.035000px;}
.y184{bottom:563.835000px;}
.y16{bottom:565.635000px;}
.y46{bottom:571.065000px;}
.y14d{bottom:572.865000px;}
.y90{bottom:573.765000px;}
.y12a{bottom:579.165000px;}
.ye7{bottom:579.525000px;}
.y1a5{bottom:581.865000px;}
.yb5{bottom:582.225000px;}
.y6e{bottom:582.765000px;}
.y183{bottom:584.565000px;}
.y15{bottom:586.365000px;}
.y45{bottom:591.765000px;}
.y14c{bottom:593.565000px;}
.y8f{bottom:594.465000px;}
.y129{bottom:599.865000px;}
.ye6{bottom:600.225000px;}
.y198{bottom:602.565000px;}
.yb4{bottom:602.925000px;}
.y6d{bottom:603.465000px;}
.y182{bottom:605.265000px;}
.y44{bottom:612.465000px;}
.y14b{bottom:614.265000px;}
.y8e{bottom:615.165000px;}
.y128{bottom:620.565000px;}
.y10c{bottom:620.925000px;}
.y197{bottom:623.265000px;}
.yb3{bottom:623.625000px;}
.y6c{bottom:624.165000px;}
.y14{bottom:625.065000px;}
.y43{bottom:633.165000px;}
.y8d{bottom:635.865000px;}
.ye5{bottom:638.925000px;}
.y127{bottom:641.265000px;}
.y10b{bottom:641.625000px;}
.y181{bottom:643.965000px;}
.yb2{bottom:644.325000px;}
.y6b{bottom:644.865000px;}
.y14a{bottom:652.965000px;}
.y42{bottom:653.865000px;}
.y8c{bottom:656.565000px;}
.ye4{bottom:659.625000px;}
.y126{bottom:661.965000px;}
.y10a{bottom:662.325000px;}
.y13{bottom:663.765000px;}
.y180{bottom:664.665000px;}
.yb1{bottom:665.025000px;}
.y6a{bottom:665.565000px;}
.y149{bottom:673.665000px;}
.ycb{bottom:674.565000px;}
.y8b{bottom:677.265000px;}
.ye3{bottom:680.325000px;}
.y165{bottom:682.665000px;}
.y109{bottom:683.025000px;}
.y12{bottom:684.465000px;}
.y17f{bottom:685.365000px;}
.yb0{bottom:685.725000px;}
.y69{bottom:686.265000px;}
.y125{bottom:691.665000px;}
.y41{bottom:692.565000px;}
.y148{bottom:694.365000px;}
.yca{bottom:695.265000px;}
.ye2{bottom:701.025000px;}
.y196{bottom:703.365000px;}
.y108{bottom:703.725000px;}
.yaf{bottom:706.425000px;}
.y68{bottom:706.965000px;}
.y40{bottom:713.265000px;}
.y8a{bottom:715.965000px;}
.y164{bottom:721.365000px;}
.ye1{bottom:721.725000px;}
.y11{bottom:723.165000px;}
.y17e{bottom:724.065000px;}
.y107{bottom:724.425000px;}
.yae{bottom:727.125000px;}
.y67{bottom:727.665000px;}
.y124{bottom:730.365000px;}
.y147{bottom:733.065000px;}
.y3f{bottom:733.965000px;}
.y89{bottom:736.665000px;}
.y163{bottom:742.065000px;}
.ye0{bottom:742.425000px;}
.y10{bottom:743.865000px;}
.y17d{bottom:744.765000px;}
.yad{bottom:747.825000px;}
.y66{bottom:748.365000px;}
.y123{bottom:751.065000px;}
.y146{bottom:753.765000px;}
.y3e{bottom:754.665000px;}
.y88{bottom:757.365000px;}
.y162{bottom:762.765000px;}
.ydf{bottom:763.125000px;}
.y17c{bottom:765.465000px;}
.yac{bottom:768.525000px;}
.y65{bottom:769.065000px;}
.y145{bottom:774.465000px;}
.y3d{bottom:775.365000px;}
.y87{bottom:778.065000px;}
.y122{bottom:780.765000px;}
.yf{bottom:782.565000px;}
.y1a4{bottom:783.465000px;}
.yde{bottom:783.825000px;}
.y17b{bottom:786.165000px;}
.y64{bottom:789.765000px;}
.y144{bottom:795.165000px;}
.y3c{bottom:796.065000px;}
.y86{bottom:798.765000px;}
.y161{bottom:801.465000px;}
.ye{bottom:803.265000px;}
.y195{bottom:804.165000px;}
.ydd{bottom:804.525000px;}
.yab{bottom:807.225000px;}
.y63{bottom:810.465000px;}
.y143{bottom:815.865000px;}
.y3b{bottom:816.765000px;}
.y85{bottom:819.510000px;}
.y160{bottom:822.210000px;}
.yd{bottom:824.010000px;}
.y17a{bottom:824.910000px;}
.ydc{bottom:825.270000px;}
.yaa{bottom:827.970000px;}
.y62{bottom:831.210000px;}
.y3a{bottom:837.510000px;}
.y84{bottom:840.210000px;}
.y15f{bottom:842.910000px;}
.y179{bottom:845.610000px;}
.ydb{bottom:845.970000px;}
.ya9{bottom:848.670000px;}
.y61{bottom:851.910000px;}
.y142{bottom:854.610000px;}
.y39{bottom:858.210000px;}
.y83{bottom:860.910000px;}
.yc{bottom:862.710000px;}
.y178{bottom:866.310000px;}
.yda{bottom:866.670000px;}
.ya8{bottom:869.370000px;}
.y60{bottom:872.610000px;}
.y141{bottom:875.310000px;}
.y38{bottom:878.910000px;}
.yfd{bottom:881.610000px;}
.yb{bottom:883.410000px;}
.y194{bottom:884.310000px;}
.y177{bottom:887.010000px;}
.yd9{bottom:887.370000px;}
.ya7{bottom:890.070000px;}
.ya{bottom:890.250000px;}
.y5f{bottom:893.310000px;}
.y37{bottom:899.610000px;}
.y121{bottom:902.310000px;}
.y193{bottom:905.010000px;}
.y1a3{bottom:907.710000px;}
.y106{bottom:908.070000px;}
.y5e{bottom:914.010000px;}
.y36{bottom:920.310000px;}
.y9{bottom:921.930000px;}
.yd8{bottom:923.010000px;}
.ya6{bottom:925.710000px;}
.y1a2{bottom:928.410000px;}
.y105{bottom:928.770000px;}
.y140{bottom:934.710000px;}
.y35{bottom:941.010000px;}
.y120{bottom:943.710000px;}
.y176{bottom:946.410000px;}
.y104{bottom:949.470000px;}
.y5d{bottom:953.970000px;}
.y34{bottom:961.710000px;}
.ya5{bottom:964.410000px;}
.y1a1{bottom:967.110000px;}
.y8{bottom:971.070000px;}
.y13f{bottom:973.410000px;}
.y33{bottom:982.410000px;}
.y5c{bottom:985.110000px;}
.y13e{bottom:994.110000px;}
.y7{bottom:998.610000px;}
.y32{bottom:1003.110000px;}
.y11f{bottom:1005.810000px;}
.y13d{bottom:1014.810000px;}
.y31{bottom:1023.810000px;}
.y11e{bottom:1026.510000px;}
.y13c{bottom:1035.510000px;}
.y30{bottom:1044.510000px;}
.y13b{bottom:1056.210000px;}
.y4{bottom:1060.890000px;}
.y2f{bottom:1065.210000px;}
.y3{bottom:1081.620000px;}
.y2e{bottom:1085.940000px;}
.y2{bottom:1120.320000px;}
.y1{bottom:1141.020000px;}
.h5{height:43.246406px;}
.h7{height:51.996094px;}
.h6{height:53.077852px;}
.h1{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:66.605977px;}
.h3{height:85.052461px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:47.879973px;}
.xa{left:56.879973px;}
.x8{left:65.879973px;}
.x9{left:74.879986px;}
.x5{left:96.155986px;}
.x6{left:128.735986px;}
.xc{left:138.635986px;}
.xe{left:150.149986px;}
.x7{left:156.089986px;}
.x1{left:288.434986px;}
.x3{left:325.694986px;}
.x2{left:394.814986px;}
.xd{left:811.589986px;}
.x4{left:820.589986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.800000pt;}
.ls5{letter-spacing:53.248000pt;}
.lsc{letter-spacing:69.248000pt;}
.ls1{letter-spacing:101.248000pt;}
.ws8{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-4.501333pt;}
._3{margin-left:-3.605333pt;}
._4{margin-left:-2.464000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.825067pt;}
._b{width:3.200000pt;}
._5{width:4.736000pt;}
._6{width:6.272000pt;}
._15{width:7.168000pt;}
._c{width:8.512000pt;}
._d{width:9.472000pt;}
._12{width:10.378667pt;}
._1a{width:11.712000pt;}
._7{width:13.440000pt;}
._8{width:14.848000pt;}
._9{width:17.664000pt;}
._a{width:19.253333pt;}
._1b{width:20.480000pt;}
._18{width:21.674667pt;}
._17{width:22.570667pt;}
._19{width:23.722667pt;}
._1c{width:25.429333pt;}
._1f{width:26.474667pt;}
._e{width:27.456000pt;}
._f{width:28.352000pt;}
._1d{width:30.336000pt;}
._10{width:31.936000pt;}
._11{width:32.896000pt;}
._39{width:35.008000pt;}
._29{width:36.160000pt;}
._1e{width:43.520000pt;}
._34{width:49.280000pt;}
._35{width:50.186667pt;}
._21{width:53.504000pt;}
._14{width:56.426667pt;}
._31{width:61.184000pt;}
._2b{width:62.912000pt;}
._2c{width:63.872000pt;}
._38{width:78.272000pt;}
._37{width:84.416000pt;}
._2d{width:99.072000pt;}
._24{width:100.544000pt;}
._2e{width:108.416000pt;}
._2f{width:109.568000pt;}
._36{width:128.064000pt;}
._25{width:136.192000pt;}
._26{width:137.312000pt;}
._20{width:138.890667pt;}
._22{width:149.696000pt;}
._23{width:150.698667pt;}
._30{width:190.400000pt;}
._32{width:212.128000pt;}
._33{width:213.056000pt;}
._27{width:276.032000pt;}
._28{width:277.664000pt;}
._2a{width:280.096000pt;}
._13{width:1275.658667pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:36.640000pt;}
.y6{bottom:37.280000pt;}
.y2c{bottom:60.672000pt;}
.y5{bottom:63.712000pt;}
.yc9{bottom:88.192000pt;}
.y82{bottom:88.672000pt;}
.y5b{bottom:89.152000pt;}
.y2b{bottom:92.352000pt;}
.ya4{bottom:93.952000pt;}
.y103{bottom:94.272000pt;}
.y1b4{bottom:98.752000pt;}
.yfc{bottom:99.392000pt;}
.y11d{bottom:104.672000pt;}
.yc8{bottom:106.592000pt;}
.y81{bottom:107.072000pt;}
.y5a{bottom:107.552000pt;}
.y1a0{bottom:108.352000pt;}
.y2a{bottom:110.752000pt;}
.ya3{bottom:112.352000pt;}
.y102{bottom:112.672000pt;}
.y15e{bottom:116.352000pt;}
.y1b3{bottom:117.152000pt;}
.yfb{bottom:117.792000pt;}
.y13a{bottom:119.072000pt;}
.y11c{bottom:123.072000pt;}
.yc7{bottom:124.992000pt;}
.y59{bottom:125.952000pt;}
.y19f{bottom:126.752000pt;}
.y29{bottom:129.152000pt;}
.ya2{bottom:130.752000pt;}
.y101{bottom:131.072000pt;}
.y80{bottom:133.466667pt;}
.y15d{bottom:134.746667pt;}
.y1b2{bottom:135.546667pt;}
.yfa{bottom:136.186667pt;}
.y139{bottom:137.466667pt;}
.y175{bottom:140.346667pt;}
.y11b{bottom:141.466667pt;}
.yc6{bottom:143.386667pt;}
.yd7{bottom:144.346667pt;}
.y192{bottom:145.146667pt;}
.y28{bottom:147.546667pt;}
.ya1{bottom:149.146667pt;}
.y100{bottom:149.466667pt;}
.y15c{bottom:153.146667pt;}
.y1b1{bottom:153.946667pt;}
.yf9{bottom:154.586667pt;}
.y138{bottom:155.866667pt;}
.y174{bottom:158.746667pt;}
.y11a{bottom:159.866667pt;}
.y58{bottom:160.346667pt;}
.y19e{bottom:161.146667pt;}
.yc5{bottom:161.786667pt;}
.yd6{bottom:162.746667pt;}
.y191{bottom:163.546667pt;}
.yff{bottom:167.866667pt;}
.y7f{bottom:170.586667pt;}
.y1b0{bottom:172.346667pt;}
.y27{bottom:173.946667pt;}
.y137{bottom:174.266667pt;}
.ya0{bottom:175.546667pt;}
.y173{bottom:177.146667pt;}
.y119{bottom:178.266667pt;}
.y57{bottom:178.746667pt;}
.y19d{bottom:179.546667pt;}
.yc4{bottom:180.186667pt;}
.yd5{bottom:181.146667pt;}
.yf8{bottom:186.266667pt;}
.y15b{bottom:187.546667pt;}
.y7e{bottom:188.986667pt;}
.y1af{bottom:190.746667pt;}
.y136{bottom:192.666667pt;}
.y172{bottom:195.546667pt;}
.y118{bottom:196.666667pt;}
.y56{bottom:197.146667pt;}
.y190{bottom:197.946667pt;}
.yd4{bottom:199.546667pt;}
.yf7{bottom:204.666667pt;}
.y15a{bottom:205.946667pt;}
.y7d{bottom:207.386667pt;}
.y26{bottom:208.346667pt;}
.y1ae{bottom:209.146667pt;}
.y9f{bottom:209.946667pt;}
.yc3{bottom:214.586667pt;}
.y117{bottom:215.066667pt;}
.y55{bottom:215.546667pt;}
.y18f{bottom:216.346667pt;}
.yd3{bottom:217.946667pt;}
.yfe{bottom:223.066667pt;}
.y159{bottom:224.346667pt;}
.y7c{bottom:225.786667pt;}
.y25{bottom:226.746667pt;}
.y9e{bottom:228.346667pt;}
.y135{bottom:229.626667pt;}
.y171{bottom:229.946667pt;}
.y19c{bottom:232.346667pt;}
.yc2{bottom:232.986667pt;}
.y116{bottom:233.466667pt;}
.y54{bottom:233.946667pt;}
.yd2{bottom:236.346667pt;}
.yf6{bottom:239.066667pt;}
.y158{bottom:242.746667pt;}
.y1ad{bottom:243.546667pt;}
.y7b{bottom:244.186667pt;}
.y24{bottom:245.146667pt;}
.y9d{bottom:246.746667pt;}
.y134{bottom:248.026667pt;}
.y170{bottom:248.346667pt;}
.y18e{bottom:250.746667pt;}
.yc1{bottom:251.226667pt;}
.y115{bottom:251.866667pt;}
.y53{bottom:252.346667pt;}
.yd1{bottom:254.746667pt;}
.yf5{bottom:257.466667pt;}
.y1ac{bottom:261.946667pt;}
.y7a{bottom:262.586667pt;}
.y23{bottom:263.546667pt;}
.y9c{bottom:265.146667pt;}
.y133{bottom:266.426667pt;}
.y16f{bottom:266.746667pt;}
.y18d{bottom:269.146667pt;}
.yc0{bottom:269.626667pt;}
.y114{bottom:270.266667pt;}
.y52{bottom:270.746667pt;}
.yf4{bottom:275.866667pt;}
.y157{bottom:277.146667pt;}
.y1ab{bottom:280.346667pt;}
.y79{bottom:280.986667pt;}
.y22{bottom:281.986667pt;}
.y9b{bottom:283.586667pt;}
.y132{bottom:284.866667pt;}
.y18c{bottom:287.586667pt;}
.ybf{bottom:288.066667pt;}
.y113{bottom:288.706667pt;}
.y51{bottom:289.186667pt;}
.yf3{bottom:294.306667pt;}
.y156{bottom:295.586667pt;}
.y1aa{bottom:298.786667pt;}
.y78{bottom:299.266667pt;}
.y21{bottom:300.386667pt;}
.y16e{bottom:301.186667pt;}
.y9a{bottom:301.986667pt;}
.ybe{bottom:306.466667pt;}
.y112{bottom:307.106667pt;}
.y50{bottom:307.586667pt;}
.yf2{bottom:312.706667pt;}
.y155{bottom:313.986667pt;}
.y1a9{bottom:317.186667pt;}
.y77{bottom:317.666667pt;}
.y20{bottom:318.786667pt;}
.y16d{bottom:319.586667pt;}
.y99{bottom:320.386667pt;}
.y131{bottom:321.986667pt;}
.ybd{bottom:324.866667pt;}
.y111{bottom:325.506667pt;}
.yd0{bottom:325.986667pt;}
.yf1{bottom:331.106667pt;}
.y1a8{bottom:335.586667pt;}
.y76{bottom:336.066667pt;}
.y1f{bottom:337.186667pt;}
.y16c{bottom:337.986667pt;}
.y98{bottom:338.786667pt;}
.y18b{bottom:340.386667pt;}
.y4f{bottom:341.986667pt;}
.y110{bottom:343.906667pt;}
.ycf{bottom:344.386667pt;}
.y154{bottom:348.386667pt;}
.yf0{bottom:349.506667pt;}
.y1a7{bottom:353.986667pt;}
.y75{bottom:354.466667pt;}
.y1e{bottom:355.586667pt;}
.y130{bottom:356.386667pt;}
.ybc{bottom:356.706667pt;}
.y97{bottom:357.186667pt;}
.y18a{bottom:358.786667pt;}
.y4e{bottom:360.386667pt;}
.y10f{bottom:362.306667pt;}
.yce{bottom:362.786667pt;}
.y153{bottom:366.786667pt;}
.yef{bottom:367.906667pt;}
.y16b{bottom:372.386667pt;}
.y74{bottom:372.866667pt;}
.y1d{bottom:373.986667pt;}
.y12f{bottom:374.786667pt;}
.y96{bottom:375.586667pt;}
.y189{bottom:377.186667pt;}
.y4d{bottom:378.786667pt;}
.y10e{bottom:380.706667pt;}
.ycd{bottom:381.186667pt;}
.y152{bottom:385.186667pt;}
.yee{bottom:386.306667pt;}
.y16a{bottom:390.786667pt;}
.ybb{bottom:391.106667pt;}
.y73{bottom:391.266667pt;}
.y1c{bottom:392.386667pt;}
.y19b{bottom:393.186667pt;}
.y4c{bottom:397.186667pt;}
.ycc{bottom:399.586667pt;}
.y12e{bottom:401.186667pt;}
.y95{bottom:401.986667pt;}
.yed{bottom:404.706667pt;}
.y10d{bottom:407.106667pt;}
.y169{bottom:409.186667pt;}
.yba{bottom:409.506667pt;}
.y72{bottom:409.666667pt;}
.y1b{bottom:410.786667pt;}
.y188{bottom:411.586667pt;}
.y4b{bottom:415.586667pt;}
.y151{bottom:419.586667pt;}
.yec{bottom:423.106667pt;}
.y1a6{bottom:425.186667pt;}
.yb9{bottom:427.906667pt;}
.y71{bottom:428.066667pt;}
.y1a{bottom:429.186667pt;}
.y187{bottom:429.986667pt;}
.y4a{bottom:433.986667pt;}
.y12d{bottom:435.586667pt;}
.y94{bottom:436.386667pt;}
.y150{bottom:437.986667pt;}
.yeb{bottom:441.506667pt;}
.y168{bottom:443.586667pt;}
.y19a{bottom:445.986667pt;}
.yb8{bottom:446.306667pt;}
.y19{bottom:447.586667pt;}
.y186{bottom:448.386667pt;}
.y49{bottom:452.386667pt;}
.y12c{bottom:453.986667pt;}
.y93{bottom:454.786667pt;}
.y14f{bottom:456.386667pt;}
.yea{bottom:459.906667pt;}
.y167{bottom:461.986667pt;}
.y199{bottom:464.386667pt;}
.y70{bottom:465.186667pt;}
.y18{bottom:465.986667pt;}
.y48{bottom:470.786667pt;}
.y92{bottom:473.186667pt;}
.y14e{bottom:474.786667pt;}
.ye9{bottom:478.306667pt;}
.y12b{bottom:480.386667pt;}
.yb7{bottom:480.706667pt;}
.y185{bottom:482.786667pt;}
.y17{bottom:484.386667pt;}
.y47{bottom:489.186667pt;}
.y91{bottom:491.586667pt;}
.ye8{bottom:496.706667pt;}
.y166{bottom:498.786667pt;}
.yb6{bottom:499.106667pt;}
.y6f{bottom:499.586667pt;}
.y184{bottom:501.186667pt;}
.y16{bottom:502.786667pt;}
.y46{bottom:507.613333pt;}
.y14d{bottom:509.213333pt;}
.y90{bottom:510.013333pt;}
.y12a{bottom:514.813333pt;}
.ye7{bottom:515.133333pt;}
.y1a5{bottom:517.213333pt;}
.yb5{bottom:517.533333pt;}
.y6e{bottom:518.013333pt;}
.y183{bottom:519.613333pt;}
.y15{bottom:521.213333pt;}
.y45{bottom:526.013333pt;}
.y14c{bottom:527.613333pt;}
.y8f{bottom:528.413333pt;}
.y129{bottom:533.213333pt;}
.ye6{bottom:533.533333pt;}
.y198{bottom:535.613333pt;}
.yb4{bottom:535.933333pt;}
.y6d{bottom:536.413333pt;}
.y182{bottom:538.013333pt;}
.y44{bottom:544.413333pt;}
.y14b{bottom:546.013333pt;}
.y8e{bottom:546.813333pt;}
.y128{bottom:551.613333pt;}
.y10c{bottom:551.933333pt;}
.y197{bottom:554.013333pt;}
.yb3{bottom:554.333333pt;}
.y6c{bottom:554.813333pt;}
.y14{bottom:555.613333pt;}
.y43{bottom:562.813333pt;}
.y8d{bottom:565.213333pt;}
.ye5{bottom:567.933333pt;}
.y127{bottom:570.013333pt;}
.y10b{bottom:570.333333pt;}
.y181{bottom:572.413333pt;}
.yb2{bottom:572.733333pt;}
.y6b{bottom:573.213333pt;}
.y14a{bottom:580.413333pt;}
.y42{bottom:581.213333pt;}
.y8c{bottom:583.613333pt;}
.ye4{bottom:586.333333pt;}
.y126{bottom:588.413333pt;}
.y10a{bottom:588.733333pt;}
.y13{bottom:590.013333pt;}
.y180{bottom:590.813333pt;}
.yb1{bottom:591.133333pt;}
.y6a{bottom:591.613333pt;}
.y149{bottom:598.813333pt;}
.ycb{bottom:599.613333pt;}
.y8b{bottom:602.013333pt;}
.ye3{bottom:604.733333pt;}
.y165{bottom:606.813333pt;}
.y109{bottom:607.133333pt;}
.y12{bottom:608.413333pt;}
.y17f{bottom:609.213333pt;}
.yb0{bottom:609.533333pt;}
.y69{bottom:610.013333pt;}
.y125{bottom:614.813333pt;}
.y41{bottom:615.613333pt;}
.y148{bottom:617.213333pt;}
.yca{bottom:618.013333pt;}
.ye2{bottom:623.133333pt;}
.y196{bottom:625.213333pt;}
.y108{bottom:625.533333pt;}
.yaf{bottom:627.933333pt;}
.y68{bottom:628.413333pt;}
.y40{bottom:634.013333pt;}
.y8a{bottom:636.413333pt;}
.y164{bottom:641.213333pt;}
.ye1{bottom:641.533333pt;}
.y11{bottom:642.813333pt;}
.y17e{bottom:643.613333pt;}
.y107{bottom:643.933333pt;}
.yae{bottom:646.333333pt;}
.y67{bottom:646.813333pt;}
.y124{bottom:649.213333pt;}
.y147{bottom:651.613333pt;}
.y3f{bottom:652.413333pt;}
.y89{bottom:654.813333pt;}
.y163{bottom:659.613333pt;}
.ye0{bottom:659.933333pt;}
.y10{bottom:661.213333pt;}
.y17d{bottom:662.013333pt;}
.yad{bottom:664.733333pt;}
.y66{bottom:665.213333pt;}
.y123{bottom:667.613333pt;}
.y146{bottom:670.013333pt;}
.y3e{bottom:670.813333pt;}
.y88{bottom:673.213333pt;}
.y162{bottom:678.013333pt;}
.ydf{bottom:678.333333pt;}
.y17c{bottom:680.413333pt;}
.yac{bottom:683.133333pt;}
.y65{bottom:683.613333pt;}
.y145{bottom:688.413333pt;}
.y3d{bottom:689.213333pt;}
.y87{bottom:691.613333pt;}
.y122{bottom:694.013333pt;}
.yf{bottom:695.613333pt;}
.y1a4{bottom:696.413333pt;}
.yde{bottom:696.733333pt;}
.y17b{bottom:698.813333pt;}
.y64{bottom:702.013333pt;}
.y144{bottom:706.813333pt;}
.y3c{bottom:707.613333pt;}
.y86{bottom:710.013333pt;}
.y161{bottom:712.413333pt;}
.ye{bottom:714.013333pt;}
.y195{bottom:714.813333pt;}
.ydd{bottom:715.133333pt;}
.yab{bottom:717.533333pt;}
.y63{bottom:720.413333pt;}
.y143{bottom:725.213333pt;}
.y3b{bottom:726.013333pt;}
.y85{bottom:728.453333pt;}
.y160{bottom:730.853333pt;}
.yd{bottom:732.453333pt;}
.y17a{bottom:733.253333pt;}
.ydc{bottom:733.573333pt;}
.yaa{bottom:735.973333pt;}
.y62{bottom:738.853333pt;}
.y3a{bottom:744.453333pt;}
.y84{bottom:746.853333pt;}
.y15f{bottom:749.253333pt;}
.y179{bottom:751.653333pt;}
.ydb{bottom:751.973333pt;}
.ya9{bottom:754.373333pt;}
.y61{bottom:757.253333pt;}
.y142{bottom:759.653333pt;}
.y39{bottom:762.853333pt;}
.y83{bottom:765.253333pt;}
.yc{bottom:766.853333pt;}
.y178{bottom:770.053333pt;}
.yda{bottom:770.373333pt;}
.ya8{bottom:772.773333pt;}
.y60{bottom:775.653333pt;}
.y141{bottom:778.053333pt;}
.y38{bottom:781.253333pt;}
.yfd{bottom:783.653333pt;}
.yb{bottom:785.253333pt;}
.y194{bottom:786.053333pt;}
.y177{bottom:788.453333pt;}
.yd9{bottom:788.773333pt;}
.ya7{bottom:791.173333pt;}
.ya{bottom:791.333333pt;}
.y5f{bottom:794.053333pt;}
.y37{bottom:799.653333pt;}
.y121{bottom:802.053333pt;}
.y193{bottom:804.453333pt;}
.y1a3{bottom:806.853333pt;}
.y106{bottom:807.173333pt;}
.y5e{bottom:812.453333pt;}
.y36{bottom:818.053333pt;}
.y9{bottom:819.493333pt;}
.yd8{bottom:820.453333pt;}
.ya6{bottom:822.853333pt;}
.y1a2{bottom:825.253333pt;}
.y105{bottom:825.573333pt;}
.y140{bottom:830.853333pt;}
.y35{bottom:836.453333pt;}
.y120{bottom:838.853333pt;}
.y176{bottom:841.253333pt;}
.y104{bottom:843.973333pt;}
.y5d{bottom:847.973333pt;}
.y34{bottom:854.853333pt;}
.ya5{bottom:857.253333pt;}
.y1a1{bottom:859.653333pt;}
.y8{bottom:863.173333pt;}
.y13f{bottom:865.253333pt;}
.y33{bottom:873.253333pt;}
.y5c{bottom:875.653333pt;}
.y13e{bottom:883.653333pt;}
.y7{bottom:887.653333pt;}
.y32{bottom:891.653333pt;}
.y11f{bottom:894.053333pt;}
.y13d{bottom:902.053333pt;}
.y31{bottom:910.053333pt;}
.y11e{bottom:912.453333pt;}
.y13c{bottom:920.453333pt;}
.y30{bottom:928.453333pt;}
.y13b{bottom:938.853333pt;}
.y4{bottom:943.013333pt;}
.y2f{bottom:946.853333pt;}
.y3{bottom:961.440000pt;}
.y2e{bottom:965.280000pt;}
.y2{bottom:995.840000pt;}
.y1{bottom:1014.240000pt;}
.h5{height:38.441250pt;}
.h7{height:46.218750pt;}
.h6{height:47.180312pt;}
.h1{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:59.205313pt;}
.h3{height:75.602187pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:42.559976pt;}
.xa{left:50.559976pt;}
.x8{left:58.559976pt;}
.x9{left:66.559988pt;}
.x5{left:85.471988pt;}
.x6{left:114.431988pt;}
.xc{left:123.231988pt;}
.xe{left:133.466655pt;}
.x7{left:138.746655pt;}
.x1{left:256.386655pt;}
.x3{left:289.506655pt;}
.x2{left:350.946655pt;}
.xd{left:721.413321pt;}
.x4{left:729.413321pt;}
}

