
    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_9bb4d6c6f2ad45ddaf198fcf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2cfcd7c700cedfe412b1c7dd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca8e75ebbc256c2b0097582f.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_4bb131d163a8704d1446d049.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bb18fbfef59420267a4f9843.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4d693dd757bf29d9b104e318.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-77.760000px;}
.v5{vertical-align:-76.320000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-1.176000px;}
.ls12{letter-spacing:-1.134000px;}
.ls15{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.870000px;}
.ls8{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.567600px;}
.ls13{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.178800px;}
.lsa{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.089400px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.070560px;}
.lsd{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.152640px;}
.ls1a{letter-spacing:0.216000px;}
.lse{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305280px;}
.ls4{letter-spacing:0.305400px;}
.ls18{letter-spacing:5.184000px;}
.ls19{letter-spacing:11.105280px;}
.ls17{letter-spacing:15.425280px;}
.ls1d{letter-spacing:1088.796000px;}
.ls1c{letter-spacing:1174.781280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.wsf{word-spacing:-20.232000px;}
.ws9{word-spacing:-18.720120px;}
.wsd{word-spacing:-18.676800px;}
.ws8{word-spacing:-18.523920px;}
.ws1{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws7{word-spacing:-18.152520px;}
.ws3{word-spacing:-18.109320px;}
.ws10{word-spacing:-17.847120px;}
.wse{word-spacing:-17.694720px;}
.ws4{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.544720px;}
.wsa{word-spacing:-17.388720px;}
.ws0{word-spacing:-11.609280px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-5.515920px;}
._3{margin-left:-4.239360px;}
._2{margin-left:-3.196320px;}
._0{margin-left:-1.457280px;}
._7{width:1.535040px;}
._9{width:2.791200px;}
._1{width:4.239360px;}
._8{width:5.365440px;}
._10{width:6.810240px;}
._e{width:8.677440px;}
._f{width:10.002240px;}
._13{width:11.326920px;}
._d{width:12.453120px;}
._a{width:14.440320px;}
._b{width:15.632640px;}
._11{width:16.675200px;}
._4{width:18.089760px;}
._1a{width:19.607040px;}
._5{width:21.329280px;}
._6{width:22.521600px;}
._1b{width:23.581440px;}
._14{width:24.707520px;}
._15{width:25.833600px;}
._1d{width:27.357120px;}
._1c{width:28.459200px;}
._1e{width:29.675520px;}
._1f{width:31.042080px;}
._20{width:32.987520px;}
._21{width:34.015200px;}
._22{width:35.538000px;}
._24{width:36.561600px;}
._33{width:37.626720px;}
._34{width:38.816640px;}
._23{width:40.870080px;}
._16{width:46.103040px;}
._17{width:47.670240px;}
._36{width:49.875840px;}
._35{width:50.986560px;}
._12{width:54.105600px;}
._2d{width:62.009280px;}
._29{width:63.312960px;}
._32{width:65.079360px;}
._2a{width:84.890640px;}
._2e{width:85.979520px;}
._2f{width:87.039360px;}
._28{width:91.146240px;}
._25{width:100.142400px;}
._19{width:104.195520px;}
._27{width:125.127360px;}
._26{width:144.866880px;}
._30{width:204.217920px;}
._31{width:205.835520px;}
._2c{width:212.365440px;}
._2b{width:213.491520px;}
._c{width:845.741280px;}
._39{width:1070.381280px;}
._37{width:1094.141280px;}
._38{width:1108.541280px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.916000px;}
.y1{bottom:77.616000px;}
.yf0{bottom:109.656000px;}
.y191{bottom:112.536000px;}
.y147{bottom:118.836000px;}
.y18b{bottom:120.456000px;}
.y71{bottom:120.816000px;}
.y151{bottom:123.696000px;}
.y166{bottom:124.056000px;}
.y1af{bottom:124.596000px;}
.y198{bottom:125.496000px;}
.y14c{bottom:128.916000px;}
.y9c{bottom:129.816000px;}
.y149{bottom:130.896000px;}
.y190{bottom:131.436000px;}
.y133{bottom:133.056000px;}
.yb4{bottom:135.396000px;}
.ya5{bottom:137.376000px;}
.y18a{bottom:139.536000px;}
.yef{bottom:140.616000px;}
.y17a{bottom:141.516000px;}
.y150{bottom:142.776000px;}
.y165{bottom:143.136000px;}
.y1ae{bottom:143.676000px;}
.y197{bottom:144.396000px;}
.yc1{bottom:144.936000px;}
.y70{bottom:149.256000px;}
.y18f{bottom:150.330000px;}
.y61{bottom:152.670000px;}
.y43{bottom:155.370000px;}
.y9a{bottom:158.250000px;}
.y189{bottom:158.430000px;}
.yee{bottom:159.690000px;}
.y14f{bottom:161.670000px;}
.y164{bottom:162.030000px;}
.y179{bottom:162.210000px;}
.y1ad{bottom:162.570000px;}
.y196{bottom:163.290000px;}
.yb3{bottom:164.010000px;}
.y146{bottom:165.270000px;}
.ya4{bottom:165.810000px;}
.y18e{bottom:169.410000px;}
.y1b8{bottom:172.290000px;}
.yc0{bottom:173.370000px;}
.y14b{bottom:175.350000px;}
.y148{bottom:177.330000px;}
.y6f{bottom:177.690000px;}
.yed{bottom:178.590000px;}
.y132{bottom:179.490000px;}
.y163{bottom:180.930000px;}
.y60{bottom:181.110000px;}
.y1ac{bottom:181.470000px;}
.y195{bottom:182.370000px;}
.y178{bottom:182.910000px;}
.y42{bottom:183.810000px;}
.y99{bottom:186.690000px;}
.y18d{bottom:188.310000px;}
.yb2{bottom:192.450000px;}
.y1b7{bottom:192.630000px;}
.ya3{bottom:194.250000px;}
.y188{bottom:196.410000px;}
.y162{bottom:200.010000px;}
.y1ab{bottom:200.550000px;}
.y14e{bottom:201.450000px;}
.ybf{bottom:201.810000px;}
.y177{bottom:203.610000px;}
.y18c{bottom:203.970000px;}
.y7b{bottom:204.690000px;}
.y6e{bottom:206.130000px;}
.y5f{bottom:209.550000px;}
.y1b6{bottom:211.530000px;}
.y145{bottom:211.710000px;}
.y41{bottom:212.250000px;}
.y98{bottom:215.130000px;}
.y187{bottom:215.310000px;}
.y161{bottom:218.910000px;}
.y14a{bottom:219.090000px;}
.y1aa{bottom:219.450000px;}
.yb1{bottom:220.890000px;}
.y194{bottom:221.970000px;}
.y22{bottom:222.690000px;}
.y176{bottom:224.310000px;}
.y131{bottom:225.930000px;}
.yec{bottom:228.630000px;}
.ybe{bottom:230.250000px;}
.y1b5{bottom:230.610000px;}
.y7a{bottom:233.130000px;}
.y186{bottom:234.390000px;}
.y6d{bottom:234.570000px;}
.y5e{bottom:237.990000px;}
.y1a9{bottom:238.530000px;}
.y40{bottom:240.690000px;}
.y193{bottom:241.050000px;}
.y97{bottom:243.570000px;}
.y115{bottom:243.750000px;}
.y175{bottom:245.010000px;}
.y14d{bottom:245.190000px;}
.yeb{bottom:247.530000px;}
.yb0{bottom:249.330000px;}
.y1b4{bottom:249.510000px;}
.y21{bottom:251.130000px;}
.y185{bottom:253.290000px;}
.y192{bottom:256.530000px;}
.y160{bottom:256.890000px;}
.y1a8{bottom:257.430000px;}
.y144{bottom:258.150000px;}
.ybd{bottom:258.690000px;}
.y79{bottom:261.570000px;}
.y174{bottom:265.710000px;}
.y5d{bottom:266.430000px;}
.y1b3{bottom:268.590000px;}
.y3f{bottom:269.130000px;}
.y96{bottom:272.010000px;}
.y184{bottom:272.190000px;}
.y130{bottom:272.370000px;}
.y15f{bottom:275.835000px;}
.y114{bottom:276.015000px;}
.y1a7{bottom:276.375000px;}
.y6c{bottom:276.555000px;}
.yaf{bottom:277.815000px;}
.yea{bottom:278.535000px;}
.y20{bottom:279.615000px;}
.y173{bottom:286.275000px;}
.ybc{bottom:287.175000px;}
.y1b2{bottom:287.535000px;}
.y78{bottom:290.055000px;}
.y183{bottom:291.315000px;}
.y5c{bottom:294.915000px;}
.y1a6{bottom:295.455000px;}
.ye9{bottom:297.435000px;}
.y3e{bottom:297.615000px;}
.y95{bottom:300.675000px;}
.y143{bottom:304.815000px;}
.yae{bottom:306.255000px;}
.y1b1{bottom:306.435000px;}
.y182{bottom:306.795000px;}
.y172{bottom:306.975000px;}
.y1f{bottom:308.055000px;}
.y15e{bottom:313.815000px;}
.y113{bottom:313.995000px;}
.y1a5{bottom:314.355000px;}
.ybb{bottom:315.615000px;}
.ye8{bottom:316.515000px;}
.y6b{bottom:318.675000px;}
.y12f{bottom:318.855000px;}
.y1b0{bottom:321.915000px;}
.y5b{bottom:323.535000px;}
.y3d{bottom:326.055000px;}
.y171{bottom:327.675000px;}
.y94{bottom:329.115000px;}
.y15d{bottom:332.895000px;}
.y1a4{bottom:333.435000px;}
.yad{bottom:334.695000px;}
.y1e{bottom:336.675000px;}
.yba{bottom:344.055000px;}
.y112{bottom:344.955000px;}
.y6a{bottom:347.115000px;}
.ye7{bottom:347.475000px;}
.y170{bottom:348.375000px;}
.y142{bottom:351.255000px;}
.y15c{bottom:351.795000px;}
.y5a{bottom:351.975000px;}
.y1a3{bottom:352.335000px;}
.y3c{bottom:354.675000px;}
.y93{bottom:357.555000px;}
.yac{bottom:363.135000px;}
.y111{bottom:363.855000px;}
.y1d{bottom:365.115000px;}
.y12e{bottom:365.475000px;}
.ye6{bottom:366.375000px;}
.y16f{bottom:369.075000px;}
.y15b{bottom:370.695000px;}
.y1a2{bottom:371.235000px;}
.yb9{bottom:372.675000px;}
.y69{bottom:375.555000px;}
.y59{bottom:380.415000px;}
.y110{bottom:382.935000px;}
.y3b{bottom:383.115000px;}
.ye5{bottom:385.455000px;}
.y92{bottom:385.995000px;}
.y15a{bottom:389.775000px;}
.y1a1{bottom:390.315000px;}
.yab{bottom:391.575000px;}
.y1c{bottom:393.555000px;}
.y141{bottom:397.695000px;}
.yb8{bottom:401.115000px;}
.y68{bottom:403.995000px;}
.y159{bottom:408.675000px;}
.y58{bottom:408.855000px;}
.y1a0{bottom:409.215000px;}
.y16e{bottom:410.475000px;}
.y3a{bottom:411.555000px;}
.y12d{bottom:411.915000px;}
.y10f{bottom:413.895000px;}
.y91{bottom:414.435000px;}
.ye4{bottom:416.415000px;}
.yaa{bottom:420.195000px;}
.y1b{bottom:421.995000px;}
.y158{bottom:427.755000px;}
.y19f{bottom:428.295000px;}
.yb7{bottom:429.555000px;}
.y16d{bottom:431.175000px;}
.y67{bottom:432.435000px;}
.y10e{bottom:432.795000px;}
.ye3{bottom:435.315000px;}
.y57{bottom:437.295000px;}
.y39{bottom:439.995000px;}
.y90{bottom:442.875000px;}
.y140{bottom:444.135000px;}
.y19e{bottom:447.735000px;}
.y16c{bottom:447.915000px;}
.ya9{bottom:448.635000px;}
.ya2{bottom:450.435000px;}
.y10d{bottom:451.875000px;}
.ye2{bottom:454.395000px;}
.yb6{bottom:457.995000px;}
.y12c{bottom:458.355000px;}
.y66{bottom:460.875000px;}
.y157{bottom:465.735000px;}
.y19d{bottom:467.895000px;}
.y1a{bottom:468.435000px;}
.y8f{bottom:471.315000px;}
.ya8{bottom:477.075000px;}
.ya1{bottom:478.875000px;}
.y10c{bottom:482.835000px;}
.y56{bottom:483.735000px;}
.y156{bottom:484.635000px;}
.ye1{bottom:485.355000px;}
.yb5{bottom:486.435000px;}
.y12b{bottom:486.795000px;}
.y65{bottom:489.315000px;}
.y13f{bottom:490.575000px;}
.y38{bottom:496.875000px;}
.y8e{bottom:499.755000px;}
.y10b{bottom:501.735000px;}
.y155{bottom:503.535000px;}
.ye0{bottom:504.255000px;}
.ya7{bottom:505.515000px;}
.y19c{bottom:505.875000px;}
.ya0{bottom:507.315000px;}
.y19{bottom:514.875000px;}
.y12a{bottom:515.235000px;}
.y64{bottom:517.755000px;}
.y10a{bottom:520.815000px;}
.y154{bottom:522.615000px;}
.ydf{bottom:523.335000px;}
.y19b{bottom:524.775000px;}
.y37{bottom:525.315000px;}
.y8d{bottom:528.195000px;}
.y55{bottom:530.175000px;}
.ya6{bottom:534.675000px;}
.y9f{bottom:535.755000px;}
.y13e{bottom:537.015000px;}
.y109{bottom:539.715000px;}
.y153{bottom:541.515000px;}
.yde{bottom:542.235000px;}
.y18{bottom:543.315000px;}
.y129{bottom:543.675000px;}
.y19a{bottom:543.855000px;}
.y63{bottom:546.195000px;}
.y36{bottom:553.755000px;}
.y8c{bottom:556.845000px;}
.y152{bottom:557.205000px;}
.y54{bottom:558.645000px;}
.y199{bottom:559.365000px;}
.y9e{bottom:564.225000px;}
.y108{bottom:570.705000px;}
.y17{bottom:571.785000px;}
.y128{bottom:572.145000px;}
.ydd{bottom:573.225000px;}
.y9b{bottom:574.845000px;}
.y35{bottom:582.225000px;}
.y13d{bottom:583.485000px;}
.y53{bottom:587.265000px;}
.y107{bottom:589.605000px;}
.y77{bottom:591.225000px;}
.ydc{bottom:592.125000px;}
.y62{bottom:592.845000px;}
.y16{bottom:600.225000px;}
.y127{bottom:600.585000px;}
.y8b{bottom:603.285000px;}
.y106{bottom:608.685000px;}
.y34{bottom:610.845000px;}
.ydb{bottom:611.205000px;}
.y52{bottom:615.705000px;}
.y9d{bottom:621.285000px;}
.y15{bottom:628.845000px;}
.y126{bottom:629.025000px;}
.y13c{bottom:629.925000px;}
.y33{bottom:639.285000px;}
.y105{bottom:639.645000px;}
.yda{bottom:642.165000px;}
.y51{bottom:644.145000px;}
.y8a{bottom:649.725000px;}
.y14{bottom:657.285000px;}
.y125{bottom:657.645000px;}
.y104{bottom:658.545000px;}
.yd9{bottom:661.065000px;}
.y32{bottom:667.725000px;}
.y50{bottom:672.585000px;}
.y13b{bottom:676.365000px;}
.y103{bottom:677.625000px;}
.y89{bottom:678.165000px;}
.yd8{bottom:680.145000px;}
.y13{bottom:685.725000px;}
.y31{bottom:696.165000px;}
.y4f{bottom:701.025000px;}
.y124{bottom:704.085000px;}
.y88{bottom:706.605000px;}
.y102{bottom:708.585000px;}
.yd7{bottom:711.105000px;}
.y12{bottom:714.165000px;}
.y13a{bottom:722.985000px;}
.y30{bottom:724.605000px;}
.y101{bottom:727.485000px;}
.y4e{bottom:729.465000px;}
.yd6{bottom:730.005000px;}
.y123{bottom:732.525000px;}
.y87{bottom:735.045000px;}
.y11{bottom:742.605000px;}
.y100{bottom:746.565000px;}
.yd5{bottom:749.085000px;}
.y2f{bottom:753.045000px;}
.y4d{bottom:757.905000px;}
.y122{bottom:760.965000px;}
.y86{bottom:763.485000px;}
.yff{bottom:765.465000px;}
.y139{bottom:769.425000px;}
.y10{bottom:771.045000px;}
.yd4{bottom:780.045000px;}
.y2e{bottom:781.485000px;}
.y4c{bottom:786.345000px;}
.y121{bottom:789.405000px;}
.y85{bottom:791.925000px;}
.yfe{bottom:796.425000px;}
.yd3{bottom:798.945000px;}
.yf{bottom:799.485000px;}
.yc6{bottom:802.365000px;}
.y2d{bottom:809.925000px;}
.yfd{bottom:815.505000px;}
.y138{bottom:815.865000px;}
.y120{bottom:817.845000px;}
.yd2{bottom:818.025000px;}
.y84{bottom:820.365000px;}
.ye{bottom:827.925000px;}
.yc5{bottom:830.985000px;}
.y4b{bottom:832.785000px;}
.yfc{bottom:834.405000px;}
.yd1{bottom:836.925000px;}
.y2c{bottom:838.365000px;}
.y83{bottom:849.030000px;}
.yd{bottom:856.410000px;}
.yc4{bottom:859.470000px;}
.y137{bottom:862.350000px;}
.y11f{bottom:864.330000px;}
.yfb{bottom:865.410000px;}
.y2b{bottom:867.030000px;}
.yd0{bottom:867.930000px;}
.y82{bottom:877.470000px;}
.y4a{bottom:879.450000px;}
.yfa{bottom:884.310000px;}
.yc{bottom:885.030000px;}
.ycf{bottom:886.830000px;}
.yc3{bottom:887.910000px;}
.y11e{bottom:892.770000px;}
.y2a{bottom:895.470000px;}
.y81{bottom:905.910000px;}
.y49{bottom:907.890000px;}
.y136{bottom:908.790000px;}
.y76{bottom:913.470000px;}
.yf9{bottom:915.450000px;}
.yc2{bottom:916.350000px;}
.yb{bottom:919.410000px;}
.y11d{bottom:921.210000px;}
.y29{bottom:923.910000px;}
.y80{bottom:934.350000px;}
.y48{bottom:936.330000px;}
.yce{bottom:936.870000px;}
.y75{bottom:941.910000px;}
.ya{bottom:947.850000px;}
.y11c{bottom:949.830000px;}
.y28{bottom:952.350000px;}
.yf8{bottom:953.250000px;}
.y135{bottom:955.230000px;}
.ycd{bottom:955.770000px;}
.y7f{bottom:962.790000px;}
.y47{bottom:964.770000px;}
.y74{bottom:970.350000px;}
.ycc{bottom:974.850000px;}
.y9{bottom:976.290000px;}
.y11b{bottom:978.270000px;}
.y27{bottom:980.790000px;}
.yf7{bottom:984.210000px;}
.y16b{bottom:989.250000px;}
.y7e{bottom:991.230000px;}
.y73{bottom:998.790000px;}
.y134{bottom:1001.670000px;}
.yf6{bottom:1003.290000px;}
.y8{bottom:1004.730000px;}
.ycb{bottom:1005.810000px;}
.y11a{bottom:1006.710000px;}
.y16a{bottom:1008.330000px;}
.y26{bottom:1009.230000px;}
.y46{bottom:1011.210000px;}
.y181{bottom:1015.710000px;}
.y7d{bottom:1019.670000px;}
.yf5{bottom:1022.190000px;}
.yca{bottom:1024.710000px;}
.y7{bottom:1027.230000px;}
.y119{bottom:1035.150000px;}
.y180{bottom:1036.410000px;}
.y25{bottom:1037.670000px;}
.yf4{bottom:1041.270000px;}
.yc9{bottom:1043.790000px;}
.y169{bottom:1046.310000px;}
.y7c{bottom:1048.110000px;}
.y6{bottom:1055.670000px;}
.y17f{bottom:1057.110000px;}
.y45{bottom:1057.650000px;}
.y168{bottom:1065.210000px;}
.y24{bottom:1066.110000px;}
.yf3{bottom:1072.230000px;}
.yc8{bottom:1074.750000px;}
.y17e{bottom:1077.810000px;}
.y118{bottom:1081.590000px;}
.y72{bottom:1084.110000px;}
.y5{bottom:1090.050000px;}
.yf2{bottom:1091.130000px;}
.yc7{bottom:1093.650000px;}
.y23{bottom:1094.550000px;}
.y17d{bottom:1098.510000px;}
.y167{bottom:1103.190000px;}
.y44{bottom:1104.090000px;}
.y117{bottom:1110.030000px;}
.y4{bottom:1112.550000px;}
.y17c{bottom:1119.210000px;}
.yf1{bottom:1122.120000px;}
.y116{bottom:1139.760000px;}
.y17b{bottom:1139.940000px;}
.y3{bottom:1141.200000px;}
.h4{height:43.554375px;}
.h5{height:45.326250px;}
.h6{height:59.383125px;}
.h3{height:69.086250px;}
.h2{height:70.664062px;}
.h7{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x5{left:129.095987px;}
.x3{left:160.229987px;}
.x6{left:170.129987px;}
.x9{left:175.709987px;}
.x7{left:180.749987px;}
.x4{left:279.929987px;}
.xa{left:425.954987px;}
.xc{left:428.114987px;}
.xb{left:446.474987px;}
.x8{left:747.509987px;}
.x1{left:756.509987px;}
.xf{left:759.929987px;}
.xe{left:763.889987px;}
.xd{left:765.509987px;}
@media print{
.v6{vertical-align:-69.120000pt;}
.v5{vertical-align:-67.840000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-1.045333pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls15{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.773333pt;}
.ls8{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.504533pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.158933pt;}
.lsa{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.079467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.062720pt;}
.lsd{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.135680pt;}
.ls1a{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271360pt;}
.ls4{letter-spacing:0.271467pt;}
.ls18{letter-spacing:4.608000pt;}
.ls19{letter-spacing:9.871360pt;}
.ls17{letter-spacing:13.711360pt;}
.ls1d{letter-spacing:967.818667pt;}
.ls1c{letter-spacing:1044.250027pt;}
.wsb{word-spacing:-58.880000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws9{word-spacing:-16.640107pt;}
.wsd{word-spacing:-16.601600pt;}
.ws8{word-spacing:-16.465707pt;}
.ws1{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws7{word-spacing:-16.135573pt;}
.ws3{word-spacing:-16.097173pt;}
.ws10{word-spacing:-15.864107pt;}
.wse{word-spacing:-15.728640pt;}
.ws4{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.595307pt;}
.wsa{word-spacing:-15.456640pt;}
.ws0{word-spacing:-10.319360pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.903040pt;}
._3{margin-left:-3.768320pt;}
._2{margin-left:-2.841173pt;}
._0{margin-left:-1.295360pt;}
._7{width:1.364480pt;}
._9{width:2.481067pt;}
._1{width:3.768320pt;}
._8{width:4.769280pt;}
._10{width:6.053547pt;}
._e{width:7.713280pt;}
._f{width:8.890880pt;}
._13{width:10.068373pt;}
._d{width:11.069440pt;}
._a{width:12.835840pt;}
._b{width:13.895680pt;}
._11{width:14.822400pt;}
._4{width:16.079787pt;}
._1a{width:17.428480pt;}
._5{width:18.959360pt;}
._6{width:20.019200pt;}
._1b{width:20.961280pt;}
._14{width:21.962240pt;}
._15{width:22.963200pt;}
._1d{width:24.317440pt;}
._1c{width:25.297067pt;}
._1e{width:26.378240pt;}
._1f{width:27.592960pt;}
._20{width:29.322240pt;}
._21{width:30.235733pt;}
._22{width:31.589333pt;}
._24{width:32.499200pt;}
._33{width:33.445973pt;}
._34{width:34.503680pt;}
._23{width:36.328960pt;}
._16{width:40.980480pt;}
._17{width:42.373547pt;}
._36{width:44.334080pt;}
._35{width:45.321387pt;}
._12{width:48.093867pt;}
._2d{width:55.119360pt;}
._29{width:56.278187pt;}
._32{width:57.848320pt;}
._2a{width:75.458347pt;}
._2e{width:76.426240pt;}
._2f{width:77.368320pt;}
._28{width:81.018880pt;}
._25{width:89.015467pt;}
._19{width:92.618240pt;}
._27{width:111.224320pt;}
._26{width:128.770560pt;}
._30{width:181.527040pt;}
._31{width:182.964907pt;}
._2c{width:188.769280pt;}
._2b{width:189.770240pt;}
._c{width:751.770027pt;}
._39{width:951.450027pt;}
._37{width:972.570027pt;}
._38{width:985.370027pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.592000pt;}
.y1{bottom:68.992000pt;}
.yf0{bottom:97.472000pt;}
.y191{bottom:100.032000pt;}
.y147{bottom:105.632000pt;}
.y18b{bottom:107.072000pt;}
.y71{bottom:107.392000pt;}
.y151{bottom:109.952000pt;}
.y166{bottom:110.272000pt;}
.y1af{bottom:110.752000pt;}
.y198{bottom:111.552000pt;}
.y14c{bottom:114.592000pt;}
.y9c{bottom:115.392000pt;}
.y149{bottom:116.352000pt;}
.y190{bottom:116.832000pt;}
.y133{bottom:118.272000pt;}
.yb4{bottom:120.352000pt;}
.ya5{bottom:122.112000pt;}
.y18a{bottom:124.032000pt;}
.yef{bottom:124.992000pt;}
.y17a{bottom:125.792000pt;}
.y150{bottom:126.912000pt;}
.y165{bottom:127.232000pt;}
.y1ae{bottom:127.712000pt;}
.y197{bottom:128.352000pt;}
.yc1{bottom:128.832000pt;}
.y70{bottom:132.672000pt;}
.y18f{bottom:133.626667pt;}
.y61{bottom:135.706667pt;}
.y43{bottom:138.106667pt;}
.y9a{bottom:140.666667pt;}
.y189{bottom:140.826667pt;}
.yee{bottom:141.946667pt;}
.y14f{bottom:143.706667pt;}
.y164{bottom:144.026667pt;}
.y179{bottom:144.186667pt;}
.y1ad{bottom:144.506667pt;}
.y196{bottom:145.146667pt;}
.yb3{bottom:145.786667pt;}
.y146{bottom:146.906667pt;}
.ya4{bottom:147.386667pt;}
.y18e{bottom:150.586667pt;}
.y1b8{bottom:153.146667pt;}
.yc0{bottom:154.106667pt;}
.y14b{bottom:155.866667pt;}
.y148{bottom:157.626667pt;}
.y6f{bottom:157.946667pt;}
.yed{bottom:158.746667pt;}
.y132{bottom:159.546667pt;}
.y163{bottom:160.826667pt;}
.y60{bottom:160.986667pt;}
.y1ac{bottom:161.306667pt;}
.y195{bottom:162.106667pt;}
.y178{bottom:162.586667pt;}
.y42{bottom:163.386667pt;}
.y99{bottom:165.946667pt;}
.y18d{bottom:167.386667pt;}
.yb2{bottom:171.066667pt;}
.y1b7{bottom:171.226667pt;}
.ya3{bottom:172.666667pt;}
.y188{bottom:174.586667pt;}
.y162{bottom:177.786667pt;}
.y1ab{bottom:178.266667pt;}
.y14e{bottom:179.066667pt;}
.ybf{bottom:179.386667pt;}
.y177{bottom:180.986667pt;}
.y18c{bottom:181.306667pt;}
.y7b{bottom:181.946667pt;}
.y6e{bottom:183.226667pt;}
.y5f{bottom:186.266667pt;}
.y1b6{bottom:188.026667pt;}
.y145{bottom:188.186667pt;}
.y41{bottom:188.666667pt;}
.y98{bottom:191.226667pt;}
.y187{bottom:191.386667pt;}
.y161{bottom:194.586667pt;}
.y14a{bottom:194.746667pt;}
.y1aa{bottom:195.066667pt;}
.yb1{bottom:196.346667pt;}
.y194{bottom:197.306667pt;}
.y22{bottom:197.946667pt;}
.y176{bottom:199.386667pt;}
.y131{bottom:200.826667pt;}
.yec{bottom:203.226667pt;}
.ybe{bottom:204.666667pt;}
.y1b5{bottom:204.986667pt;}
.y7a{bottom:207.226667pt;}
.y186{bottom:208.346667pt;}
.y6d{bottom:208.506667pt;}
.y5e{bottom:211.546667pt;}
.y1a9{bottom:212.026667pt;}
.y40{bottom:213.946667pt;}
.y193{bottom:214.266667pt;}
.y97{bottom:216.506667pt;}
.y115{bottom:216.666667pt;}
.y175{bottom:217.786667pt;}
.y14d{bottom:217.946667pt;}
.yeb{bottom:220.026667pt;}
.yb0{bottom:221.626667pt;}
.y1b4{bottom:221.786667pt;}
.y21{bottom:223.226667pt;}
.y185{bottom:225.146667pt;}
.y192{bottom:228.026667pt;}
.y160{bottom:228.346667pt;}
.y1a8{bottom:228.826667pt;}
.y144{bottom:229.466667pt;}
.ybd{bottom:229.946667pt;}
.y79{bottom:232.506667pt;}
.y174{bottom:236.186667pt;}
.y5d{bottom:236.826667pt;}
.y1b3{bottom:238.746667pt;}
.y3f{bottom:239.226667pt;}
.y96{bottom:241.786667pt;}
.y184{bottom:241.946667pt;}
.y130{bottom:242.106667pt;}
.y15f{bottom:245.186667pt;}
.y114{bottom:245.346667pt;}
.y1a7{bottom:245.666667pt;}
.y6c{bottom:245.826667pt;}
.yaf{bottom:246.946667pt;}
.yea{bottom:247.586667pt;}
.y20{bottom:248.546667pt;}
.y173{bottom:254.466667pt;}
.ybc{bottom:255.266667pt;}
.y1b2{bottom:255.586667pt;}
.y78{bottom:257.826667pt;}
.y183{bottom:258.946667pt;}
.y5c{bottom:262.146667pt;}
.y1a6{bottom:262.626667pt;}
.ye9{bottom:264.386667pt;}
.y3e{bottom:264.546667pt;}
.y95{bottom:267.266667pt;}
.y143{bottom:270.946667pt;}
.yae{bottom:272.226667pt;}
.y1b1{bottom:272.386667pt;}
.y182{bottom:272.706667pt;}
.y172{bottom:272.866667pt;}
.y1f{bottom:273.826667pt;}
.y15e{bottom:278.946667pt;}
.y113{bottom:279.106667pt;}
.y1a5{bottom:279.426667pt;}
.ybb{bottom:280.546667pt;}
.ye8{bottom:281.346667pt;}
.y6b{bottom:283.266667pt;}
.y12f{bottom:283.426667pt;}
.y1b0{bottom:286.146667pt;}
.y5b{bottom:287.586667pt;}
.y3d{bottom:289.826667pt;}
.y171{bottom:291.266667pt;}
.y94{bottom:292.546667pt;}
.y15d{bottom:295.906667pt;}
.y1a4{bottom:296.386667pt;}
.yad{bottom:297.506667pt;}
.y1e{bottom:299.266667pt;}
.yba{bottom:305.826667pt;}
.y112{bottom:306.626667pt;}
.y6a{bottom:308.546667pt;}
.ye7{bottom:308.866667pt;}
.y170{bottom:309.666667pt;}
.y142{bottom:312.226667pt;}
.y15c{bottom:312.706667pt;}
.y5a{bottom:312.866667pt;}
.y1a3{bottom:313.186667pt;}
.y3c{bottom:315.266667pt;}
.y93{bottom:317.826667pt;}
.yac{bottom:322.786667pt;}
.y111{bottom:323.426667pt;}
.y1d{bottom:324.546667pt;}
.y12e{bottom:324.866667pt;}
.ye6{bottom:325.666667pt;}
.y16f{bottom:328.066667pt;}
.y15b{bottom:329.506667pt;}
.y1a2{bottom:329.986667pt;}
.yb9{bottom:331.266667pt;}
.y69{bottom:333.826667pt;}
.y59{bottom:338.146667pt;}
.y110{bottom:340.386667pt;}
.y3b{bottom:340.546667pt;}
.ye5{bottom:342.626667pt;}
.y92{bottom:343.106667pt;}
.y15a{bottom:346.466667pt;}
.y1a1{bottom:346.946667pt;}
.yab{bottom:348.066667pt;}
.y1c{bottom:349.826667pt;}
.y141{bottom:353.506667pt;}
.yb8{bottom:356.546667pt;}
.y68{bottom:359.106667pt;}
.y159{bottom:363.266667pt;}
.y58{bottom:363.426667pt;}
.y1a0{bottom:363.746667pt;}
.y16e{bottom:364.866667pt;}
.y3a{bottom:365.826667pt;}
.y12d{bottom:366.146667pt;}
.y10f{bottom:367.906667pt;}
.y91{bottom:368.386667pt;}
.ye4{bottom:370.146667pt;}
.yaa{bottom:373.506667pt;}
.y1b{bottom:375.106667pt;}
.y158{bottom:380.226667pt;}
.y19f{bottom:380.706667pt;}
.yb7{bottom:381.826667pt;}
.y16d{bottom:383.266667pt;}
.y67{bottom:384.386667pt;}
.y10e{bottom:384.706667pt;}
.ye3{bottom:386.946667pt;}
.y57{bottom:388.706667pt;}
.y39{bottom:391.106667pt;}
.y90{bottom:393.666667pt;}
.y140{bottom:394.786667pt;}
.y19e{bottom:397.986667pt;}
.y16c{bottom:398.146667pt;}
.ya9{bottom:398.786667pt;}
.ya2{bottom:400.386667pt;}
.y10d{bottom:401.666667pt;}
.ye2{bottom:403.906667pt;}
.yb6{bottom:407.106667pt;}
.y12c{bottom:407.426667pt;}
.y66{bottom:409.666667pt;}
.y157{bottom:413.986667pt;}
.y19d{bottom:415.906667pt;}
.y1a{bottom:416.386667pt;}
.y8f{bottom:418.946667pt;}
.ya8{bottom:424.066667pt;}
.ya1{bottom:425.666667pt;}
.y10c{bottom:429.186667pt;}
.y56{bottom:429.986667pt;}
.y156{bottom:430.786667pt;}
.ye1{bottom:431.426667pt;}
.yb5{bottom:432.386667pt;}
.y12b{bottom:432.706667pt;}
.y65{bottom:434.946667pt;}
.y13f{bottom:436.066667pt;}
.y38{bottom:441.666667pt;}
.y8e{bottom:444.226667pt;}
.y10b{bottom:445.986667pt;}
.y155{bottom:447.586667pt;}
.ye0{bottom:448.226667pt;}
.ya7{bottom:449.346667pt;}
.y19c{bottom:449.666667pt;}
.ya0{bottom:450.946667pt;}
.y19{bottom:457.666667pt;}
.y12a{bottom:457.986667pt;}
.y64{bottom:460.226667pt;}
.y10a{bottom:462.946667pt;}
.y154{bottom:464.546667pt;}
.ydf{bottom:465.186667pt;}
.y19b{bottom:466.466667pt;}
.y37{bottom:466.946667pt;}
.y8d{bottom:469.506667pt;}
.y55{bottom:471.266667pt;}
.ya6{bottom:475.266667pt;}
.y9f{bottom:476.226667pt;}
.y13e{bottom:477.346667pt;}
.y109{bottom:479.746667pt;}
.y153{bottom:481.346667pt;}
.yde{bottom:481.986667pt;}
.y18{bottom:482.946667pt;}
.y129{bottom:483.266667pt;}
.y19a{bottom:483.426667pt;}
.y63{bottom:485.506667pt;}
.y36{bottom:492.226667pt;}
.y8c{bottom:494.973333pt;}
.y152{bottom:495.293333pt;}
.y54{bottom:496.573333pt;}
.y199{bottom:497.213333pt;}
.y9e{bottom:501.533333pt;}
.y108{bottom:507.293333pt;}
.y17{bottom:508.253333pt;}
.y128{bottom:508.573333pt;}
.ydd{bottom:509.533333pt;}
.y9b{bottom:510.973333pt;}
.y35{bottom:517.533333pt;}
.y13d{bottom:518.653333pt;}
.y53{bottom:522.013333pt;}
.y107{bottom:524.093333pt;}
.y77{bottom:525.533333pt;}
.ydc{bottom:526.333333pt;}
.y62{bottom:526.973333pt;}
.y16{bottom:533.533333pt;}
.y127{bottom:533.853333pt;}
.y8b{bottom:536.253333pt;}
.y106{bottom:541.053333pt;}
.y34{bottom:542.973333pt;}
.ydb{bottom:543.293333pt;}
.y52{bottom:547.293333pt;}
.y9d{bottom:552.253333pt;}
.y15{bottom:558.973333pt;}
.y126{bottom:559.133333pt;}
.y13c{bottom:559.933333pt;}
.y33{bottom:568.253333pt;}
.y105{bottom:568.573333pt;}
.yda{bottom:570.813333pt;}
.y51{bottom:572.573333pt;}
.y8a{bottom:577.533333pt;}
.y14{bottom:584.253333pt;}
.y125{bottom:584.573333pt;}
.y104{bottom:585.373333pt;}
.yd9{bottom:587.613333pt;}
.y32{bottom:593.533333pt;}
.y50{bottom:597.853333pt;}
.y13b{bottom:601.213333pt;}
.y103{bottom:602.333333pt;}
.y89{bottom:602.813333pt;}
.yd8{bottom:604.573333pt;}
.y13{bottom:609.533333pt;}
.y31{bottom:618.813333pt;}
.y4f{bottom:623.133333pt;}
.y124{bottom:625.853333pt;}
.y88{bottom:628.093333pt;}
.y102{bottom:629.853333pt;}
.yd7{bottom:632.093333pt;}
.y12{bottom:634.813333pt;}
.y13a{bottom:642.653333pt;}
.y30{bottom:644.093333pt;}
.y101{bottom:646.653333pt;}
.y4e{bottom:648.413333pt;}
.yd6{bottom:648.893333pt;}
.y123{bottom:651.133333pt;}
.y87{bottom:653.373333pt;}
.y11{bottom:660.093333pt;}
.y100{bottom:663.613333pt;}
.yd5{bottom:665.853333pt;}
.y2f{bottom:669.373333pt;}
.y4d{bottom:673.693333pt;}
.y122{bottom:676.413333pt;}
.y86{bottom:678.653333pt;}
.yff{bottom:680.413333pt;}
.y139{bottom:683.933333pt;}
.y10{bottom:685.373333pt;}
.yd4{bottom:693.373333pt;}
.y2e{bottom:694.653333pt;}
.y4c{bottom:698.973333pt;}
.y121{bottom:701.693333pt;}
.y85{bottom:703.933333pt;}
.yfe{bottom:707.933333pt;}
.yd3{bottom:710.173333pt;}
.yf{bottom:710.653333pt;}
.yc6{bottom:713.213333pt;}
.y2d{bottom:719.933333pt;}
.yfd{bottom:724.893333pt;}
.y138{bottom:725.213333pt;}
.y120{bottom:726.973333pt;}
.yd2{bottom:727.133333pt;}
.y84{bottom:729.213333pt;}
.ye{bottom:735.933333pt;}
.yc5{bottom:738.653333pt;}
.y4b{bottom:740.253333pt;}
.yfc{bottom:741.693333pt;}
.yd1{bottom:743.933333pt;}
.y2c{bottom:745.213333pt;}
.y83{bottom:754.693333pt;}
.yd{bottom:761.253333pt;}
.yc4{bottom:763.973333pt;}
.y137{bottom:766.533333pt;}
.y11f{bottom:768.293333pt;}
.yfb{bottom:769.253333pt;}
.y2b{bottom:770.693333pt;}
.yd0{bottom:771.493333pt;}
.y82{bottom:779.973333pt;}
.y4a{bottom:781.733333pt;}
.yfa{bottom:786.053333pt;}
.yc{bottom:786.693333pt;}
.ycf{bottom:788.293333pt;}
.yc3{bottom:789.253333pt;}
.y11e{bottom:793.573333pt;}
.y2a{bottom:795.973333pt;}
.y81{bottom:805.253333pt;}
.y49{bottom:807.013333pt;}
.y136{bottom:807.813333pt;}
.y76{bottom:811.973333pt;}
.yf9{bottom:813.733333pt;}
.yc2{bottom:814.533333pt;}
.yb{bottom:817.253333pt;}
.y11d{bottom:818.853333pt;}
.y29{bottom:821.253333pt;}
.y80{bottom:830.533333pt;}
.y48{bottom:832.293333pt;}
.yce{bottom:832.773333pt;}
.y75{bottom:837.253333pt;}
.ya{bottom:842.533333pt;}
.y11c{bottom:844.293333pt;}
.y28{bottom:846.533333pt;}
.yf8{bottom:847.333333pt;}
.y135{bottom:849.093333pt;}
.ycd{bottom:849.573333pt;}
.y7f{bottom:855.813333pt;}
.y47{bottom:857.573333pt;}
.y74{bottom:862.533333pt;}
.ycc{bottom:866.533333pt;}
.y9{bottom:867.813333pt;}
.y11b{bottom:869.573333pt;}
.y27{bottom:871.813333pt;}
.yf7{bottom:874.853333pt;}
.y16b{bottom:879.333333pt;}
.y7e{bottom:881.093333pt;}
.y73{bottom:887.813333pt;}
.y134{bottom:890.373333pt;}
.yf6{bottom:891.813333pt;}
.y8{bottom:893.093333pt;}
.ycb{bottom:894.053333pt;}
.y11a{bottom:894.853333pt;}
.y16a{bottom:896.293333pt;}
.y26{bottom:897.093333pt;}
.y46{bottom:898.853333pt;}
.y181{bottom:902.853333pt;}
.y7d{bottom:906.373333pt;}
.yf5{bottom:908.613333pt;}
.yca{bottom:910.853333pt;}
.y7{bottom:913.093333pt;}
.y119{bottom:920.133333pt;}
.y180{bottom:921.253333pt;}
.y25{bottom:922.373333pt;}
.yf4{bottom:925.573333pt;}
.yc9{bottom:927.813333pt;}
.y169{bottom:930.053333pt;}
.y7c{bottom:931.653333pt;}
.y6{bottom:938.373333pt;}
.y17f{bottom:939.653333pt;}
.y45{bottom:940.133333pt;}
.y168{bottom:946.853333pt;}
.y24{bottom:947.653333pt;}
.yf3{bottom:953.093333pt;}
.yc8{bottom:955.333333pt;}
.y17e{bottom:958.053333pt;}
.y118{bottom:961.413333pt;}
.y72{bottom:963.653333pt;}
.y5{bottom:968.933333pt;}
.yf2{bottom:969.893333pt;}
.yc7{bottom:972.133333pt;}
.y23{bottom:972.933333pt;}
.y17d{bottom:976.453333pt;}
.y167{bottom:980.613333pt;}
.y44{bottom:981.413333pt;}
.y117{bottom:986.693333pt;}
.y4{bottom:988.933333pt;}
.y17c{bottom:994.853333pt;}
.yf1{bottom:997.440000pt;}
.y116{bottom:1013.120000pt;}
.y17b{bottom:1013.280000pt;}
.y3{bottom:1014.400000pt;}
.h4{height:38.715000pt;}
.h5{height:40.290000pt;}
.h6{height:52.785000pt;}
.h3{height:61.410000pt;}
.h2{height:62.812500pt;}
.h7{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x5{left:114.751988pt;}
.x3{left:142.426655pt;}
.x6{left:151.226655pt;}
.x9{left:156.186655pt;}
.x7{left:160.666655pt;}
.x4{left:248.826655pt;}
.xa{left:378.626655pt;}
.xc{left:380.546655pt;}
.xb{left:396.866655pt;}
.x8{left:664.453322pt;}
.x1{left:672.453322pt;}
.xf{left:675.493322pt;}
.xe{left:679.013322pt;}
.xd{left:680.453322pt;}
}

