
    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_e0c838fbfc8c7435fde2a308.woff')format("woff");}.ff1{font-family:ff1;line-height:1.122000;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_fc1f753cc1d6e2356114a432.woff')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_696990c387cf4f11c4aeb198.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082000;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_89c02b0556f776a5f2b396a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_d64cee2ce4136a68fb2a0e3d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.929000;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_2c6f106c8843e4851c1ec81e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_5caf6f0345f0dc6ac9dadbce.woff')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_39df84cb736493cbc0437941.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,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);}
.m2{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:-22.200000px;}
.v2{vertical-align:-17.392600px;}
.v4{vertical-align:-4.800000px;}
.v7{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.000000px;}
.v5{vertical-align:4.800000px;}
.v3{vertical-align:22.200000px;}
.v1{vertical-align:27.600000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.019200px;}
.ls3{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.102000px;}
.ls8{letter-spacing:0.115200px;}
.ls9{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.270000px;}
.lse{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.750000px;}
.ls11{letter-spacing:1.080000px;}
.ls4{letter-spacing:4.905533px;}
.ls10{letter-spacing:8.520000px;}
.lsf{letter-spacing:21.936000px;}
.ls6{letter-spacing:324.528000px;}
.ls5{letter-spacing:1018.128000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(52,52,52),0 0.015em rgb(52,52,52),0.015em 0 rgb(52,52,52),0 -0.015em  rgb(52,52,52);}
.sc1{text-shadow:-0.015em 0 rgb(0,102,255),0 0.015em rgb(0,102,255),0.015em 0 rgb(0,102,255),0 -0.015em  rgb(0,102,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(52,52,52);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-12.480000px;}
.wsa{word-spacing:-11.934000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.628195px;}
.ws0{word-spacing:-11.232000px;}
.ws4{word-spacing:-10.560000px;}
.ws3{word-spacing:-7.987200px;}
.wsb{word-spacing:-7.920000px;}
.ws7{word-spacing:-6.864000px;}
.ws2{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:112.212000px;}
.ws11{word-spacing:122.496000px;}
.ws10{word-spacing:128.448000px;}
.wse{word-spacing:185.160000px;}
.wsd{word-spacing:256.512000px;}
.wsc{word-spacing:392.844000px;}
._c{margin-left:-2398.128000px;}
._a{margin-left:-641.808000px;}
._51{margin-left:-7.608000px;}
._13{margin-left:-6.330000px;}
._8{margin-left:-5.028000px;}
._3{margin-left:-3.474000px;}
._2{margin-left:-2.244000px;}
._0{margin-left:-1.188000px;}
._1{width:1.092000px;}
._4{width:2.244000px;}
._5{width:4.164000px;}
._7{width:5.220000px;}
._6{width:6.396000px;}
._18{width:7.416000px;}
._e{width:8.424000px;}
._f{width:10.206000px;}
._9{width:11.952000px;}
._b{width:13.746000px;}
._10{width:15.414000px;}
._19{width:16.746000px;}
._11{width:17.874000px;}
._12{width:19.278000px;}
._14{width:20.412000px;}
._15{width:21.438000px;}
._53{width:22.464000px;}
._17{width:26.022000px;}
._52{width:34.368000px;}
._16{width:40.608000px;}
._3a{width:130.428000px;}
._38{width:131.784000px;}
._3d{width:132.840000px;}
._47{width:136.008000px;}
._45{width:141.960000px;}
._35{width:144.696000px;}
._50{width:149.724000px;}
._32{width:151.944000px;}
._34{width:154.740000px;}
._46{width:156.396000px;}
._4d{width:159.336000px;}
._44{width:161.724000px;}
._4f{width:165.336000px;}
._3f{width:167.016000px;}
._41{width:172.872000px;}
._31{width:181.740000px;}
._22{width:187.092000px;}
._49{width:188.640000px;}
._3e{width:190.500000px;}
._1d{width:193.044000px;}
._37{width:208.584000px;}
._33{width:212.232000px;}
._39{width:214.872000px;}
._42{width:217.512000px;}
._4a{width:218.640000px;}
._3b{width:222.420000px;}
._1e{width:227.844000px;}
._26{width:230.244000px;}
._2a{width:237.408000px;}
._3c{width:243.840000px;}
._43{width:248.808000px;}
._21{width:285.240000px;}
._29{width:291.240000px;}
._48{width:298.092000px;}
._1c{width:300.984000px;}
._4b{width:308.064000px;}
._25{width:315.072000px;}
._4c{width:321.216000px;}
._20{width:323.640000px;}
._36{width:326.868000px;}
._4e{width:331.188000px;}
._40{width:334.284000px;}
._1b{width:343.584000px;}
._30{width:361.080000px;}
._24{width:383.472000px;}
._2f{width:498.084000px;}
._d{width:583.500000px;}
._27{width:702.060000px;}
._23{width:727.512000px;}
._2d{width:784.728000px;}
._2c{width:806.316000px;}
._2b{width:906.348000px;}
._1a{width:922.056000px;}
._28{width:930.684000px;}
._2e{width:933.216000px;}
._1f{width:959.124000px;}
.fc6{color:rgb(64,129,204);}
.fc7{color:rgb(35,31,32);}
.fc5{color:rgb(28,28,28);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(52,52,52);}
.fc0{color:rgb(0,102,255);}
.fse{font-size:21.000000px;}
.fs8{font-size:25.467736px;}
.fsc{font-size:31.200000px;}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs9{font-size:43.481500px;}
.fsa{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:55.904785px;}
.fs4{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:132.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:1.950000px;}
.y2{bottom:3.300000px;}
.yd1{bottom:76.500000px;}
.y2f{bottom:79.350000px;}
.y100{bottom:79.650000px;}
.y132{bottom:79.950000px;}
.y6e{bottom:80.100000px;}
.y8a{bottom:80.850000px;}
.yd0{bottom:87.150000px;}
.y131{bottom:90.450000px;}
.yff{bottom:95.400000px;}
.y6d{bottom:95.850000px;}
.y89{bottom:96.750000px;}
.y2e{bottom:96.900000px;}
.y2d{bottom:97.050000px;}
.ycf{bottom:97.800000px;}
.y130{bottom:101.100000px;}
.yce{bottom:108.300000px;}
.yfe{bottom:111.300000px;}
.y12f{bottom:111.600000px;}
.y6c{bottom:111.750000px;}
.y88{bottom:112.500000px;}
.y2c{bottom:114.600000px;}
.ycd{bottom:118.950000px;}
.y12e{bottom:122.250000px;}
.yfd{bottom:127.050000px;}
.y6b{bottom:127.500000px;}
.y87{bottom:128.400000px;}
.ycc{bottom:129.450000px;}
.y12d{bottom:132.750000px;}
.ycb{bottom:140.100000px;}
.yfc{bottom:142.950000px;}
.y6a{bottom:143.400000px;}
.y86{bottom:144.150000px;}
.y2b{bottom:149.850000px;}
.yca{bottom:150.600000px;}
.y12c{bottom:153.900000px;}
.yfb{bottom:158.700000px;}
.y69{bottom:159.150000px;}
.y85{bottom:160.050000px;}
.yc9{bottom:161.250000px;}
.y12b{bottom:164.550000px;}
.y2a{bottom:167.550000px;}
.yfa{bottom:174.600000px;}
.y68{bottom:175.050000px;}
.yc8{bottom:175.650000px;}
.y84{bottom:175.800000px;}
.yc6{bottom:176.700000px;}
.y12a{bottom:185.700000px;}
.yf9{bottom:190.350000px;}
.y67{bottom:190.800000px;}
.y83{bottom:191.700000px;}
.yc5{bottom:192.600000px;}
.yc7{bottom:193.650000px;}
.yf8{bottom:206.250000px;}
.y66{bottom:206.700000px;}
.y82{bottom:207.450000px;}
.yc4{bottom:211.800000px;}
.yf7{bottom:222.000000px;}
.y65{bottom:222.450000px;}
.y81{bottom:223.350000px;}
.yc3{bottom:226.800000px;}
.yf6{bottom:237.900000px;}
.y64{bottom:238.350000px;}
.y80{bottom:239.100000px;}
.yf5{bottom:253.650000px;}
.y63{bottom:254.100000px;}
.y7f{bottom:255.000000px;}
.yc2{bottom:269.100000px;}
.yf4{bottom:269.550000px;}
.y62{bottom:270.000000px;}
.ybe{bottom:270.150000px;}
.y7e{bottom:270.750000px;}
.yc1{bottom:283.200000px;}
.yf3{bottom:285.300000px;}
.y61{bottom:285.750000px;}
.ybd{bottom:285.900000px;}
.y7d{bottom:286.650000px;}
.y129{bottom:286.950000px;}
.yf2{bottom:301.200000px;}
.y60{bottom:301.650000px;}
.ybc{bottom:301.800000px;}
.y7c{bottom:302.400000px;}
.y128{bottom:302.850000px;}
.yf1{bottom:316.950000px;}
.y5f{bottom:317.400000px;}
.ybb{bottom:317.550000px;}
.y7b{bottom:318.300000px;}
.y127{bottom:318.600000px;}
.y29{bottom:320.850000px;}
.yf0{bottom:332.850000px;}
.y5e{bottom:333.300000px;}
.yba{bottom:333.450000px;}
.y7a{bottom:334.050000px;}
.y126{bottom:334.500000px;}
.y28{bottom:334.950000px;}
.yef{bottom:348.600000px;}
.y27{bottom:349.050000px;}
.yb9{bottom:349.200000px;}
.y79{bottom:349.950000px;}
.y125{bottom:350.250000px;}
.y26{bottom:363.150000px;}
.y5d{bottom:364.950000px;}
.yb8{bottom:365.100000px;}
.y78{bottom:365.700000px;}
.y124{bottom:366.150000px;}
.y25{bottom:377.250000px;}
.yee{bottom:380.250000px;}
.y5c{bottom:380.700000px;}
.yb7{bottom:380.850000px;}
.y77{bottom:381.600000px;}
.y123{bottom:381.900000px;}
.y24{bottom:391.350000px;}
.y5b{bottom:396.600000px;}
.yb6{bottom:396.750000px;}
.y76{bottom:397.350000px;}
.y122{bottom:397.800000px;}
.y23{bottom:405.450000px;}
.yed{bottom:411.900000px;}
.yb5{bottom:412.500000px;}
.y75{bottom:413.250000px;}
.y121{bottom:413.550000px;}
.y22{bottom:419.550000px;}
.yec{bottom:427.800000px;}
.y5a{bottom:428.250000px;}
.yb4{bottom:428.400000px;}
.y74{bottom:429.000000px;}
.y120{bottom:429.450000px;}
.y21{bottom:433.650000px;}
.yeb{bottom:443.550000px;}
.yb3{bottom:444.150000px;}
.y73{bottom:444.900000px;}
.y11f{bottom:445.200000px;}
.y20{bottom:447.750000px;}
.yea{bottom:459.450000px;}
.y59{bottom:459.900000px;}
.yb2{bottom:460.050000px;}
.y72{bottom:460.650000px;}
.y11e{bottom:461.100000px;}
.y1f{bottom:461.850000px;}
.ye9{bottom:475.200000px;}
.yb1{bottom:475.800000px;}
.y1e{bottom:475.950000px;}
.y71{bottom:476.550000px;}
.y11d{bottom:476.850000px;}
.ye8{bottom:491.100000px;}
.y58{bottom:491.550000px;}
.yb0{bottom:491.700000px;}
.y11c{bottom:492.750000px;}
.y1d{bottom:494.400000px;}
.ye7{bottom:506.850000px;}
.y57{bottom:507.300000px;}
.yaf{bottom:507.450000px;}
.y11b{bottom:508.500000px;}
.y70{bottom:519.750000px;}
.ye6{bottom:522.750000px;}
.y56{bottom:523.200000px;}
.y1c{bottom:523.350000px;}
.y11a{bottom:524.400000px;}
.ye5{bottom:538.500000px;}
.y55{bottom:538.950000px;}
.yae{bottom:539.100000px;}
.y119{bottom:540.150000px;}
.y1b{bottom:541.800000px;}
.ye4{bottom:554.400000px;}
.y54{bottom:554.850000px;}
.yad{bottom:555.000000px;}
.y118{bottom:556.050000px;}
.ye3{bottom:570.150000px;}
.y53{bottom:570.600000px;}
.yac{bottom:570.750000px;}
.y117{bottom:571.800000px;}
.y1a{bottom:584.850000px;}
.y52{bottom:586.500000px;}
.yab{bottom:586.650000px;}
.y116{bottom:587.700000px;}
.y19{bottom:598.950000px;}
.ye2{bottom:601.500000px;}
.y51{bottom:602.250000px;}
.yaa{bottom:602.400000px;}
.y115{bottom:603.450000px;}
.y18{bottom:613.050000px;}
.ye1{bottom:615.600000px;}
.y50{bottom:618.150000px;}
.ya9{bottom:618.300000px;}
.y114{bottom:619.350000px;}
.yc0{bottom:623.250000px;}
.y17{bottom:627.150000px;}
.y4f{bottom:633.900000px;}
.ya8{bottom:634.050000px;}
.y113{bottom:635.100000px;}
.ybf{bottom:637.350000px;}
.y16{bottom:641.250000px;}
.y4e{bottom:649.800000px;}
.y112{bottom:651.000000px;}
.y15{bottom:655.350000px;}
.y4d{bottom:665.550000px;}
.ya7{bottom:665.700000px;}
.y111{bottom:666.750000px;}
.y14{bottom:669.450000px;}
.y4c{bottom:681.450000px;}
.y110{bottom:682.650000px;}
.y13{bottom:683.550000px;}
.y150{bottom:692.400000px;}
.y4b{bottom:697.200000px;}
.ya6{bottom:697.350000px;}
.y12{bottom:697.650000px;}
.y10f{bottom:698.400000px;}
.y14f{bottom:706.500000px;}
.y11{bottom:711.750000px;}
.y4a{bottom:713.100000px;}
.ya5{bottom:713.250000px;}
.y10e{bottom:714.300000px;}
.y14e{bottom:720.600000px;}
.y10{bottom:725.850000px;}
.y49{bottom:728.850000px;}
.ya4{bottom:729.000000px;}
.y10d{bottom:730.050000px;}
.y14d{bottom:734.700000px;}
.yf{bottom:739.950000px;}
.y48{bottom:744.750000px;}
.ya3{bottom:744.900000px;}
.y10c{bottom:745.950000px;}
.y14c{bottom:748.800000px;}
.y47{bottom:760.500000px;}
.ya2{bottom:760.650000px;}
.y10b{bottom:761.700000px;}
.y14b{bottom:762.900000px;}
.ye{bottom:769.200000px;}
.y46{bottom:776.400000px;}
.ya1{bottom:776.550000px;}
.y14a{bottom:777.000000px;}
.y10a{bottom:777.600000px;}
.y149{bottom:791.100000px;}
.y45{bottom:792.150000px;}
.ya0{bottom:792.300000px;}
.y109{bottom:793.350000px;}
.y148{bottom:805.200000px;}
.y44{bottom:808.050000px;}
.y9f{bottom:808.200000px;}
.y108{bottom:809.250000px;}
.yd{bottom:812.550000px;}
.y147{bottom:819.300000px;}
.y43{bottom:823.800000px;}
.y9e{bottom:823.950000px;}
.y107{bottom:825.000000px;}
.y146{bottom:833.400000px;}
.y42{bottom:839.700000px;}
.y9d{bottom:839.850000px;}
.y106{bottom:840.900000px;}
.y145{bottom:847.500000px;}
.yc{bottom:849.450000px;}
.y6f{bottom:855.450000px;}
.y9c{bottom:855.600000px;}
.y105{bottom:856.650000px;}
.y144{bottom:861.600000px;}
.yb{bottom:863.250000px;}
.y41{bottom:871.350000px;}
.y9b{bottom:871.500000px;}
.y104{bottom:872.550000px;}
.y143{bottom:875.700000px;}
.ya{bottom:876.900000px;}
.y9a{bottom:887.250000px;}
.y103{bottom:888.300000px;}
.y142{bottom:889.800000px;}
.y9{bottom:892.650000px;}
.y99{bottom:903.150000px;}
.y141{bottom:903.900000px;}
.y102{bottom:904.200000px;}
.y140{bottom:918.000000px;}
.y101{bottom:919.950000px;}
.y8{bottom:924.600000px;}
.y40{bottom:931.200000px;}
.y13f{bottom:932.100000px;}
.y98{bottom:934.800000px;}
.ye0{bottom:935.850000px;}
.y3f{bottom:945.300000px;}
.y13e{bottom:946.200000px;}
.ydf{bottom:951.600000px;}
.y7{bottom:953.850000px;}
.y3e{bottom:959.400000px;}
.y13d{bottom:960.300000px;}
.y97{bottom:966.450000px;}
.yde{bottom:967.500000px;}
.y3d{bottom:973.500000px;}
.y13c{bottom:974.400000px;}
.y96{bottom:982.200000px;}
.ydd{bottom:983.250000px;}
.y3c{bottom:987.600000px;}
.y13b{bottom:988.500000px;}
.y6{bottom:988.950000px;}
.y95{bottom:998.100000px;}
.y3b{bottom:1001.700000px;}
.y13a{bottom:1002.600000px;}
.y94{bottom:1013.850000px;}
.y3a{bottom:1015.800000px;}
.y139{bottom:1016.700000px;}
.y93{bottom:1029.750000px;}
.y39{bottom:1029.900000px;}
.y138{bottom:1030.800000px;}
.ydc{bottom:1040.400000px;}
.y38{bottom:1044.000000px;}
.y137{bottom:1044.900000px;}
.y92{bottom:1045.500000px;}
.y5{bottom:1045.650000px;}
.ydb{bottom:1051.050000px;}
.y37{bottom:1058.100000px;}
.y136{bottom:1059.000000px;}
.y91{bottom:1061.400000px;}
.yda{bottom:1061.700000px;}
.y36{bottom:1072.200000px;}
.y135{bottom:1073.100000px;}
.y90{bottom:1077.150000px;}
.yd9{bottom:1082.850000px;}
.y35{bottom:1086.300000px;}
.y134{bottom:1087.200000px;}
.y4{bottom:1090.500000px;}
.y8f{bottom:1093.050000px;}
.yd8{bottom:1093.350000px;}
.y133{bottom:1101.300000px;}
.yd7{bottom:1104.000000px;}
.y34{bottom:1104.600000px;}
.y8e{bottom:1108.800000px;}
.yd6{bottom:1114.500000px;}
.y153{bottom:1115.400000px;}
.y8d{bottom:1124.700000px;}
.yd5{bottom:1125.150000px;}
.y152{bottom:1129.500000px;}
.y33{bottom:1133.550000px;}
.yd4{bottom:1135.800000px;}
.y3{bottom:1136.550000px;}
.y8c{bottom:1140.450000px;}
.y151{bottom:1143.600000px;}
.yd3{bottom:1146.450000px;}
.y32{bottom:1152.000000px;}
.y8b{bottom:1156.350000px;}
.yd2{bottom:1157.700000px;}
.y30{bottom:1190.550000px;}
.y1{bottom:1190.700000px;}
.h2{height:16.800000px;}
.h10{height:16.950000px;}
.hb{height:21.673043px;}
.h16{height:31.068000px;}
.h17{height:34.032000px;}
.h15{height:38.178000px;}
.h12{height:38.286000px;}
.hf{height:38.601562px;}
.he{height:39.201563px;}
.hc{height:41.424000px;}
.hd{height:44.667000px;}
.h8{height:45.585938px;}
.h3{height:45.954000px;}
.h13{height:46.602000px;}
.h4{height:47.574972px;}
.h14{height:49.125600px;}
.h11{height:51.060000px;}
.ha{height:60.278400px;}
.h9{height:76.590000px;}
.h6{height:112.332000px;}
.h7{height:122.544000px;}
.h5{height:1262.700000px;}
.h0{height:1262.792126px;}
.h1{height:1263.000000px;}
.w2{width:892.800000px;}
.w0{width:892.913386px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:42.750000px;}
.xe{left:44.850000px;}
.x20{left:48.000000px;}
.xf{left:55.500000px;}
.x8{left:63.900000px;}
.x6{left:66.000000px;}
.x21{left:67.500000px;}
.x1e{left:72.000000px;}
.x7{left:73.650000px;}
.x15{left:76.650000px;}
.x22{left:85.200000px;}
.x9{left:109.800000px;}
.x1f{left:228.150000px;}
.x12{left:296.100000px;}
.x4{left:322.350000px;}
.x5{left:331.500000px;}
.x1{left:336.150000px;}
.x3{left:343.500000px;}
.xa{left:367.800000px;}
.x19{left:382.050000px;}
.x18{left:392.550000px;}
.x17{left:421.050000px;}
.x10{left:446.550000px;}
.xb{left:452.400000px;}
.x11{left:459.300000px;}
.x23{left:464.850000px;}
.x16{left:467.850000px;}
.x24{left:489.000000px;}
.x1b{left:518.400000px;}
.x1a{left:529.050000px;}
.x2{left:533.550000px;}
.xd{left:553.800000px;}
.x13{left:639.000000px;}
.x1d{left:644.100000px;}
.x1c{left:666.900000px;}
.x14{left:828.450000px;}
@media print{
.v6{vertical-align:-19.733333pt;}
.v2{vertical-align:-15.460089pt;}
.v4{vertical-align:-4.266667pt;}
.v7{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.666667pt;}
.v5{vertical-align:4.266667pt;}
.v3{vertical-align:19.733333pt;}
.v1{vertical-align:24.533333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017067pt;}
.ls3{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.090667pt;}
.ls8{letter-spacing:0.102400pt;}
.ls9{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.666667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls4{letter-spacing:4.360474pt;}
.ls10{letter-spacing:7.573333pt;}
.lsf{letter-spacing:19.498667pt;}
.ls6{letter-spacing:288.469333pt;}
.ls5{letter-spacing:905.002667pt;}
.ws8{word-spacing:-11.093333pt;}
.wsa{word-spacing:-10.608000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.336174pt;}
.ws0{word-spacing:-9.984000pt;}
.ws4{word-spacing:-9.386667pt;}
.ws3{word-spacing:-7.099733pt;}
.wsb{word-spacing:-7.040000pt;}
.ws7{word-spacing:-6.101333pt;}
.ws2{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:99.744000pt;}
.ws11{word-spacing:108.885333pt;}
.ws10{word-spacing:114.176000pt;}
.wse{word-spacing:164.586667pt;}
.wsd{word-spacing:228.010667pt;}
.wsc{word-spacing:349.194667pt;}
._c{margin-left:-2131.669333pt;}
._a{margin-left:-570.496000pt;}
._51{margin-left:-6.762667pt;}
._13{margin-left:-5.626667pt;}
._8{margin-left:-4.469333pt;}
._3{margin-left:-3.088000pt;}
._2{margin-left:-1.994667pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.970667pt;}
._4{width:1.994667pt;}
._5{width:3.701333pt;}
._7{width:4.640000pt;}
._6{width:5.685333pt;}
._18{width:6.592000pt;}
._e{width:7.488000pt;}
._f{width:9.072000pt;}
._9{width:10.624000pt;}
._b{width:12.218667pt;}
._10{width:13.701333pt;}
._19{width:14.885333pt;}
._11{width:15.888000pt;}
._12{width:17.136000pt;}
._14{width:18.144000pt;}
._15{width:19.056000pt;}
._53{width:19.968000pt;}
._17{width:23.130667pt;}
._52{width:30.549333pt;}
._16{width:36.096000pt;}
._3a{width:115.936000pt;}
._38{width:117.141333pt;}
._3d{width:118.080000pt;}
._47{width:120.896000pt;}
._45{width:126.186667pt;}
._35{width:128.618667pt;}
._50{width:133.088000pt;}
._32{width:135.061333pt;}
._34{width:137.546667pt;}
._46{width:139.018667pt;}
._4d{width:141.632000pt;}
._44{width:143.754667pt;}
._4f{width:146.965333pt;}
._3f{width:148.458667pt;}
._41{width:153.664000pt;}
._31{width:161.546667pt;}
._22{width:166.304000pt;}
._49{width:167.680000pt;}
._3e{width:169.333333pt;}
._1d{width:171.594667pt;}
._37{width:185.408000pt;}
._33{width:188.650667pt;}
._39{width:190.997333pt;}
._42{width:193.344000pt;}
._4a{width:194.346667pt;}
._3b{width:197.706667pt;}
._1e{width:202.528000pt;}
._26{width:204.661333pt;}
._2a{width:211.029333pt;}
._3c{width:216.746667pt;}
._43{width:221.162667pt;}
._21{width:253.546667pt;}
._29{width:258.880000pt;}
._48{width:264.970667pt;}
._1c{width:267.541333pt;}
._4b{width:273.834667pt;}
._25{width:280.064000pt;}
._4c{width:285.525333pt;}
._20{width:287.680000pt;}
._36{width:290.549333pt;}
._4e{width:294.389333pt;}
._40{width:297.141333pt;}
._1b{width:305.408000pt;}
._30{width:320.960000pt;}
._24{width:340.864000pt;}
._2f{width:442.741333pt;}
._d{width:518.666667pt;}
._27{width:624.053333pt;}
._23{width:646.677333pt;}
._2d{width:697.536000pt;}
._2c{width:716.725333pt;}
._2b{width:805.642667pt;}
._1a{width:819.605333pt;}
._28{width:827.274667pt;}
._2e{width:829.525333pt;}
._1f{width:852.554667pt;}
.fse{font-size:18.666667pt;}
.fs8{font-size:22.637987pt;}
.fsc{font-size:27.733333pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs9{font-size:38.650222pt;}
.fsa{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:49.693142pt;}
.fs4{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:117.333333pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:1.733333pt;}
.y2{bottom:2.933333pt;}
.yd1{bottom:68.000000pt;}
.y2f{bottom:70.533333pt;}
.y100{bottom:70.800000pt;}
.y132{bottom:71.066667pt;}
.y6e{bottom:71.200000pt;}
.y8a{bottom:71.866667pt;}
.yd0{bottom:77.466667pt;}
.y131{bottom:80.400000pt;}
.yff{bottom:84.800000pt;}
.y6d{bottom:85.200000pt;}
.y89{bottom:86.000000pt;}
.y2e{bottom:86.133333pt;}
.y2d{bottom:86.266667pt;}
.ycf{bottom:86.933333pt;}
.y130{bottom:89.866667pt;}
.yce{bottom:96.266667pt;}
.yfe{bottom:98.933333pt;}
.y12f{bottom:99.200000pt;}
.y6c{bottom:99.333333pt;}
.y88{bottom:100.000000pt;}
.y2c{bottom:101.866667pt;}
.ycd{bottom:105.733333pt;}
.y12e{bottom:108.666667pt;}
.yfd{bottom:112.933333pt;}
.y6b{bottom:113.333333pt;}
.y87{bottom:114.133333pt;}
.ycc{bottom:115.066667pt;}
.y12d{bottom:118.000000pt;}
.ycb{bottom:124.533333pt;}
.yfc{bottom:127.066667pt;}
.y6a{bottom:127.466667pt;}
.y86{bottom:128.133333pt;}
.y2b{bottom:133.200000pt;}
.yca{bottom:133.866667pt;}
.y12c{bottom:136.800000pt;}
.yfb{bottom:141.066667pt;}
.y69{bottom:141.466667pt;}
.y85{bottom:142.266667pt;}
.yc9{bottom:143.333333pt;}
.y12b{bottom:146.266667pt;}
.y2a{bottom:148.933333pt;}
.yfa{bottom:155.200000pt;}
.y68{bottom:155.600000pt;}
.yc8{bottom:156.133333pt;}
.y84{bottom:156.266667pt;}
.yc6{bottom:157.066667pt;}
.y12a{bottom:165.066667pt;}
.yf9{bottom:169.200000pt;}
.y67{bottom:169.600000pt;}
.y83{bottom:170.400000pt;}
.yc5{bottom:171.200000pt;}
.yc7{bottom:172.133333pt;}
.yf8{bottom:183.333333pt;}
.y66{bottom:183.733333pt;}
.y82{bottom:184.400000pt;}
.yc4{bottom:188.266667pt;}
.yf7{bottom:197.333333pt;}
.y65{bottom:197.733333pt;}
.y81{bottom:198.533333pt;}
.yc3{bottom:201.600000pt;}
.yf6{bottom:211.466667pt;}
.y64{bottom:211.866667pt;}
.y80{bottom:212.533333pt;}
.yf5{bottom:225.466667pt;}
.y63{bottom:225.866667pt;}
.y7f{bottom:226.666667pt;}
.yc2{bottom:239.200000pt;}
.yf4{bottom:239.600000pt;}
.y62{bottom:240.000000pt;}
.ybe{bottom:240.133333pt;}
.y7e{bottom:240.666667pt;}
.yc1{bottom:251.733333pt;}
.yf3{bottom:253.600000pt;}
.y61{bottom:254.000000pt;}
.ybd{bottom:254.133333pt;}
.y7d{bottom:254.800000pt;}
.y129{bottom:255.066667pt;}
.yf2{bottom:267.733333pt;}
.y60{bottom:268.133333pt;}
.ybc{bottom:268.266667pt;}
.y7c{bottom:268.800000pt;}
.y128{bottom:269.200000pt;}
.yf1{bottom:281.733333pt;}
.y5f{bottom:282.133333pt;}
.ybb{bottom:282.266667pt;}
.y7b{bottom:282.933333pt;}
.y127{bottom:283.200000pt;}
.y29{bottom:285.200000pt;}
.yf0{bottom:295.866667pt;}
.y5e{bottom:296.266667pt;}
.yba{bottom:296.400000pt;}
.y7a{bottom:296.933333pt;}
.y126{bottom:297.333333pt;}
.y28{bottom:297.733333pt;}
.yef{bottom:309.866667pt;}
.y27{bottom:310.266667pt;}
.yb9{bottom:310.400000pt;}
.y79{bottom:311.066667pt;}
.y125{bottom:311.333333pt;}
.y26{bottom:322.800000pt;}
.y5d{bottom:324.400000pt;}
.yb8{bottom:324.533333pt;}
.y78{bottom:325.066667pt;}
.y124{bottom:325.466667pt;}
.y25{bottom:335.333333pt;}
.yee{bottom:338.000000pt;}
.y5c{bottom:338.400000pt;}
.yb7{bottom:338.533333pt;}
.y77{bottom:339.200000pt;}
.y123{bottom:339.466667pt;}
.y24{bottom:347.866667pt;}
.y5b{bottom:352.533333pt;}
.yb6{bottom:352.666667pt;}
.y76{bottom:353.200000pt;}
.y122{bottom:353.600000pt;}
.y23{bottom:360.400000pt;}
.yed{bottom:366.133333pt;}
.yb5{bottom:366.666667pt;}
.y75{bottom:367.333333pt;}
.y121{bottom:367.600000pt;}
.y22{bottom:372.933333pt;}
.yec{bottom:380.266667pt;}
.y5a{bottom:380.666667pt;}
.yb4{bottom:380.800000pt;}
.y74{bottom:381.333333pt;}
.y120{bottom:381.733333pt;}
.y21{bottom:385.466667pt;}
.yeb{bottom:394.266667pt;}
.yb3{bottom:394.800000pt;}
.y73{bottom:395.466667pt;}
.y11f{bottom:395.733333pt;}
.y20{bottom:398.000000pt;}
.yea{bottom:408.400000pt;}
.y59{bottom:408.800000pt;}
.yb2{bottom:408.933333pt;}
.y72{bottom:409.466667pt;}
.y11e{bottom:409.866667pt;}
.y1f{bottom:410.533333pt;}
.ye9{bottom:422.400000pt;}
.yb1{bottom:422.933333pt;}
.y1e{bottom:423.066667pt;}
.y71{bottom:423.600000pt;}
.y11d{bottom:423.866667pt;}
.ye8{bottom:436.533333pt;}
.y58{bottom:436.933333pt;}
.yb0{bottom:437.066667pt;}
.y11c{bottom:438.000000pt;}
.y1d{bottom:439.466667pt;}
.ye7{bottom:450.533333pt;}
.y57{bottom:450.933333pt;}
.yaf{bottom:451.066667pt;}
.y11b{bottom:452.000000pt;}
.y70{bottom:462.000000pt;}
.ye6{bottom:464.666667pt;}
.y56{bottom:465.066667pt;}
.y1c{bottom:465.200000pt;}
.y11a{bottom:466.133333pt;}
.ye5{bottom:478.666667pt;}
.y55{bottom:479.066667pt;}
.yae{bottom:479.200000pt;}
.y119{bottom:480.133333pt;}
.y1b{bottom:481.600000pt;}
.ye4{bottom:492.800000pt;}
.y54{bottom:493.200000pt;}
.yad{bottom:493.333333pt;}
.y118{bottom:494.266667pt;}
.ye3{bottom:506.800000pt;}
.y53{bottom:507.200000pt;}
.yac{bottom:507.333333pt;}
.y117{bottom:508.266667pt;}
.y1a{bottom:519.866667pt;}
.y52{bottom:521.333333pt;}
.yab{bottom:521.466667pt;}
.y116{bottom:522.400000pt;}
.y19{bottom:532.400000pt;}
.ye2{bottom:534.666667pt;}
.y51{bottom:535.333333pt;}
.yaa{bottom:535.466667pt;}
.y115{bottom:536.400000pt;}
.y18{bottom:544.933333pt;}
.ye1{bottom:547.200000pt;}
.y50{bottom:549.466667pt;}
.ya9{bottom:549.600000pt;}
.y114{bottom:550.533333pt;}
.yc0{bottom:554.000000pt;}
.y17{bottom:557.466667pt;}
.y4f{bottom:563.466667pt;}
.ya8{bottom:563.600000pt;}
.y113{bottom:564.533333pt;}
.ybf{bottom:566.533333pt;}
.y16{bottom:570.000000pt;}
.y4e{bottom:577.600000pt;}
.y112{bottom:578.666667pt;}
.y15{bottom:582.533333pt;}
.y4d{bottom:591.600000pt;}
.ya7{bottom:591.733333pt;}
.y111{bottom:592.666667pt;}
.y14{bottom:595.066667pt;}
.y4c{bottom:605.733333pt;}
.y110{bottom:606.800000pt;}
.y13{bottom:607.600000pt;}
.y150{bottom:615.466667pt;}
.y4b{bottom:619.733333pt;}
.ya6{bottom:619.866667pt;}
.y12{bottom:620.133333pt;}
.y10f{bottom:620.800000pt;}
.y14f{bottom:628.000000pt;}
.y11{bottom:632.666667pt;}
.y4a{bottom:633.866667pt;}
.ya5{bottom:634.000000pt;}
.y10e{bottom:634.933333pt;}
.y14e{bottom:640.533333pt;}
.y10{bottom:645.200000pt;}
.y49{bottom:647.866667pt;}
.ya4{bottom:648.000000pt;}
.y10d{bottom:648.933333pt;}
.y14d{bottom:653.066667pt;}
.yf{bottom:657.733333pt;}
.y48{bottom:662.000000pt;}
.ya3{bottom:662.133333pt;}
.y10c{bottom:663.066667pt;}
.y14c{bottom:665.600000pt;}
.y47{bottom:676.000000pt;}
.ya2{bottom:676.133333pt;}
.y10b{bottom:677.066667pt;}
.y14b{bottom:678.133333pt;}
.ye{bottom:683.733333pt;}
.y46{bottom:690.133333pt;}
.ya1{bottom:690.266667pt;}
.y14a{bottom:690.666667pt;}
.y10a{bottom:691.200000pt;}
.y149{bottom:703.200000pt;}
.y45{bottom:704.133333pt;}
.ya0{bottom:704.266667pt;}
.y109{bottom:705.200000pt;}
.y148{bottom:715.733333pt;}
.y44{bottom:718.266667pt;}
.y9f{bottom:718.400000pt;}
.y108{bottom:719.333333pt;}
.yd{bottom:722.266667pt;}
.y147{bottom:728.266667pt;}
.y43{bottom:732.266667pt;}
.y9e{bottom:732.400000pt;}
.y107{bottom:733.333333pt;}
.y146{bottom:740.800000pt;}
.y42{bottom:746.400000pt;}
.y9d{bottom:746.533333pt;}
.y106{bottom:747.466667pt;}
.y145{bottom:753.333333pt;}
.yc{bottom:755.066667pt;}
.y6f{bottom:760.400000pt;}
.y9c{bottom:760.533333pt;}
.y105{bottom:761.466667pt;}
.y144{bottom:765.866667pt;}
.yb{bottom:767.333333pt;}
.y41{bottom:774.533333pt;}
.y9b{bottom:774.666667pt;}
.y104{bottom:775.600000pt;}
.y143{bottom:778.400000pt;}
.ya{bottom:779.466667pt;}
.y9a{bottom:788.666667pt;}
.y103{bottom:789.600000pt;}
.y142{bottom:790.933333pt;}
.y9{bottom:793.466667pt;}
.y99{bottom:802.800000pt;}
.y141{bottom:803.466667pt;}
.y102{bottom:803.733333pt;}
.y140{bottom:816.000000pt;}
.y101{bottom:817.733333pt;}
.y8{bottom:821.866667pt;}
.y40{bottom:827.733333pt;}
.y13f{bottom:828.533333pt;}
.y98{bottom:830.933333pt;}
.ye0{bottom:831.866667pt;}
.y3f{bottom:840.266667pt;}
.y13e{bottom:841.066667pt;}
.ydf{bottom:845.866667pt;}
.y7{bottom:847.866667pt;}
.y3e{bottom:852.800000pt;}
.y13d{bottom:853.600000pt;}
.y97{bottom:859.066667pt;}
.yde{bottom:860.000000pt;}
.y3d{bottom:865.333333pt;}
.y13c{bottom:866.133333pt;}
.y96{bottom:873.066667pt;}
.ydd{bottom:874.000000pt;}
.y3c{bottom:877.866667pt;}
.y13b{bottom:878.666667pt;}
.y6{bottom:879.066667pt;}
.y95{bottom:887.200000pt;}
.y3b{bottom:890.400000pt;}
.y13a{bottom:891.200000pt;}
.y94{bottom:901.200000pt;}
.y3a{bottom:902.933333pt;}
.y139{bottom:903.733333pt;}
.y93{bottom:915.333333pt;}
.y39{bottom:915.466667pt;}
.y138{bottom:916.266667pt;}
.ydc{bottom:924.800000pt;}
.y38{bottom:928.000000pt;}
.y137{bottom:928.800000pt;}
.y92{bottom:929.333333pt;}
.y5{bottom:929.466667pt;}
.ydb{bottom:934.266667pt;}
.y37{bottom:940.533333pt;}
.y136{bottom:941.333333pt;}
.y91{bottom:943.466667pt;}
.yda{bottom:943.733333pt;}
.y36{bottom:953.066667pt;}
.y135{bottom:953.866667pt;}
.y90{bottom:957.466667pt;}
.yd9{bottom:962.533333pt;}
.y35{bottom:965.600000pt;}
.y134{bottom:966.400000pt;}
.y4{bottom:969.333333pt;}
.y8f{bottom:971.600000pt;}
.yd8{bottom:971.866667pt;}
.y133{bottom:978.933333pt;}
.yd7{bottom:981.333333pt;}
.y34{bottom:981.866667pt;}
.y8e{bottom:985.600000pt;}
.yd6{bottom:990.666667pt;}
.y153{bottom:991.466667pt;}
.y8d{bottom:999.733333pt;}
.yd5{bottom:1000.133333pt;}
.y152{bottom:1004.000000pt;}
.y33{bottom:1007.600000pt;}
.yd4{bottom:1009.600000pt;}
.y3{bottom:1010.266667pt;}
.y8c{bottom:1013.733333pt;}
.y151{bottom:1016.533333pt;}
.yd3{bottom:1019.066667pt;}
.y32{bottom:1024.000000pt;}
.y8b{bottom:1027.866667pt;}
.yd2{bottom:1029.066667pt;}
.y30{bottom:1058.266667pt;}
.y1{bottom:1058.400000pt;}
.h2{height:14.933333pt;}
.h10{height:15.066667pt;}
.hb{height:19.264927pt;}
.h16{height:27.616000pt;}
.h17{height:30.250667pt;}
.h15{height:33.936000pt;}
.h12{height:34.032000pt;}
.hf{height:34.312500pt;}
.he{height:34.845833pt;}
.hc{height:36.821333pt;}
.hd{height:39.704000pt;}
.h8{height:40.520833pt;}
.h3{height:40.848000pt;}
.h13{height:41.424000pt;}
.h4{height:42.288864pt;}
.h14{height:43.667200pt;}
.h11{height:45.386667pt;}
.ha{height:53.580800pt;}
.h9{height:68.080000pt;}
.h6{height:99.850667pt;}
.h7{height:108.928000pt;}
.h5{height:1122.400000pt;}
.h0{height:1122.481890pt;}
.h1{height:1122.666667pt;}
.w2{width:793.600000pt;}
.w0{width:793.700787pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:38.000000pt;}
.xe{left:39.866667pt;}
.x20{left:42.666667pt;}
.xf{left:49.333333pt;}
.x8{left:56.800000pt;}
.x6{left:58.666667pt;}
.x21{left:60.000000pt;}
.x1e{left:64.000000pt;}
.x7{left:65.466667pt;}
.x15{left:68.133333pt;}
.x22{left:75.733333pt;}
.x9{left:97.600000pt;}
.x1f{left:202.800000pt;}
.x12{left:263.200000pt;}
.x4{left:286.533333pt;}
.x5{left:294.666667pt;}
.x1{left:298.800000pt;}
.x3{left:305.333333pt;}
.xa{left:326.933333pt;}
.x19{left:339.600000pt;}
.x18{left:348.933333pt;}
.x17{left:374.266667pt;}
.x10{left:396.933333pt;}
.xb{left:402.133333pt;}
.x11{left:408.266667pt;}
.x23{left:413.200000pt;}
.x16{left:415.866667pt;}
.x24{left:434.666667pt;}
.x1b{left:460.800000pt;}
.x1a{left:470.266667pt;}
.x2{left:474.266667pt;}
.xd{left:492.266667pt;}
.x13{left:568.000000pt;}
.x1d{left:572.533333pt;}
.x1c{left:592.800000pt;}
.x14{left:736.400000pt;}
}

