
    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_d1be10db453dbe9360f9ce6d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aa8df70ecec9c879ef364281.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_3ad3d82d9c4398dff8f36662.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_57c2b4c1f0e62b922bb0d41c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.062988;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_83ef0de07f1ffd65404442a5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.776855;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_14a878e1985b4972e6b4b0b9.woff')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.380160px;}
.ls14{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.864000px;}
.ls18{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.ls11{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.760000px;}
.ls1e{letter-spacing:6.480000px;}
.ls9{letter-spacing:7.200000px;}
.ls1f{letter-spacing:8.789760px;}
.ls21{letter-spacing:9.360000px;}
.ls29{letter-spacing:10.080000px;}
.ls23{letter-spacing:10.800000px;}
.ls28{letter-spacing:12.420000px;}
.ls22{letter-spacing:12.528000px;}
.ls24{letter-spacing:12.960000px;}
.ls20{letter-spacing:18.000000px;}
.ls25{letter-spacing:25.200000px;}
.ls17{letter-spacing:36.720000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws15{word-spacing:-18.864000px;}
.wsf{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.424000px;}
.ws8{word-spacing:-17.280000px;}
.ws10{word-spacing:-17.064000px;}
.wsb{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-15.633120px;}
._6{margin-left:-4.531440px;}
._1{margin-left:-3.388560px;}
._2{margin-left:-2.210160px;}
._0{margin-left:-1.010880px;}
._3{width:1.207440px;}
._d{width:2.232000px;}
._e{width:3.412560px;}
._11{width:4.584000px;}
._b{width:5.904000px;}
._c{width:7.284000px;}
._13{width:8.304000px;}
._7{width:9.360000px;}
._8{width:10.368000px;}
._9{width:11.796000px;}
._12{width:12.888000px;}
._4{width:14.472000px;}
._5{width:16.176000px;}
._a{width:19.728000px;}
._f{width:20.892000px;}
._10{width:22.372560px;}
._14{width:23.904000px;}
._15{width:24.912000px;}
._1c{width:26.032560px;}
._1a{width:27.072000px;}
._1b{width:28.180560px;}
._1d{width:29.640000px;}
._1e{width:30.700560px;}
._22{width:31.920000px;}
._19{width:32.978880px;}
._26{width:34.266960px;}
._1f{width:36.122880px;}
._28{width:38.232000px;}
._25{width:40.182720px;}
._18{width:41.472000px;}
._17{width:42.624000px;}
._24{width:44.040000px;}
._21{width:45.864000px;}
._2e{width:51.012000px;}
._2d{width:52.200000px;}
._2f{width:55.992000px;}
._30{width:57.016560px;}
._3b{width:58.824000px;}
._29{width:63.144000px;}
._23{width:67.706880px;}
._38{width:92.880000px;}
._39{width:94.068000px;}
._31{width:99.540000px;}
._20{width:116.570880px;}
._2c{width:121.140000px;}
._33{width:122.904000px;}
._2a{width:157.824000px;}
._27{width:194.376000px;}
._3a{width:216.828000px;}
._2b{width:224.640000px;}
._32{width:317.052000px;}
._34{width:319.212000px;}
._37{width:492.012000px;}
._36{width:560.556000px;}
._35{width:1968.840000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y79{bottom:109.476000px;}
.y97{bottom:115.956000px;}
.yc7{bottom:116.136000px;}
.y116{bottom:117.396000px;}
.yd9{bottom:117.576000px;}
.y32{bottom:118.656000px;}
.y81{bottom:125.496000px;}
.y78{bottom:126.576000px;}
.ya9{bottom:127.116000px;}
.y141{bottom:127.656000px;}
.y96{bottom:136.656000px;}
.y115{bottom:138.096000px;}
.yd8{bottom:138.276000px;}
.y31{bottom:139.356000px;}
.y77{bottom:143.856000px;}
.y63{bottom:144.936000px;}
.y80{bottom:146.196000px;}
.ya8{bottom:147.816000px;}
.y140{bottom:148.356000px;}
.y95{bottom:157.350000px;}
.y114{bottom:158.790000px;}
.yd7{bottom:158.970000px;}
.y30{bottom:160.050000px;}
.y76{bottom:161.130000px;}
.y62{bottom:165.630000px;}
.y7f{bottom:166.890000px;}
.ya7{bottom:168.510000px;}
.y13f{bottom:169.050000px;}
.y94{bottom:178.050000px;}
.y75{bottom:178.410000px;}
.y113{bottom:179.490000px;}
.yd6{bottom:179.670000px;}
.y2f{bottom:180.750000px;}
.y61{bottom:186.330000px;}
.y7e{bottom:187.590000px;}
.ya6{bottom:189.210000px;}
.y13e{bottom:189.750000px;}
.y74{bottom:195.690000px;}
.y93{bottom:198.750000px;}
.y112{bottom:200.190000px;}
.yd5{bottom:200.370000px;}
.y2e{bottom:201.450000px;}
.yb5{bottom:206.130000px;}
.y60{bottom:207.030000px;}
.y7d{bottom:208.290000px;}
.ya5{bottom:209.910000px;}
.y13d{bottom:210.450000px;}
.y73{bottom:212.970000px;}
.y92{bottom:219.450000px;}
.y111{bottom:220.890000px;}
.yd4{bottom:221.070000px;}
.y2d{bottom:222.150000px;}
.y5f{bottom:227.730000px;}
.yb4{bottom:228.630000px;}
.y7c{bottom:228.990000px;}
.y72{bottom:230.070000px;}
.ya4{bottom:230.610000px;}
.y13c{bottom:231.150000px;}
.y91{bottom:240.150000px;}
.y110{bottom:241.590000px;}
.yd3{bottom:241.770000px;}
.y2c{bottom:242.850000px;}
.y71{bottom:247.350000px;}
.y5e{bottom:248.430000px;}
.y7b{bottom:249.690000px;}
.yb3{bottom:250.950000px;}
.ya3{bottom:251.310000px;}
.y13b{bottom:251.850000px;}
.y70{bottom:252.570000px;}
.y90{bottom:260.850000px;}
.y10f{bottom:262.290000px;}
.yd2{bottom:262.470000px;}
.y2b{bottom:263.550000px;}
.y6f{bottom:265.890000px;}
.y5d{bottom:269.130000px;}
.y7a{bottom:270.390000px;}
.ya2{bottom:272.010000px;}
.y13a{bottom:272.550000px;}
.yb2{bottom:273.270000px;}
.y8f{bottom:281.550000px;}
.y10e{bottom:282.990000px;}
.yd1{bottom:283.170000px;}
.y2a{bottom:284.250000px;}
.y5c{bottom:289.830000px;}
.y6e{bottom:291.090000px;}
.ya1{bottom:292.710000px;}
.y139{bottom:293.250000px;}
.yb1{bottom:295.590000px;}
.y8e{bottom:302.250000px;}
.y10d{bottom:303.690000px;}
.yd0{bottom:303.870000px;}
.y29{bottom:304.950000px;}
.y5b{bottom:310.530000px;}
.y6d{bottom:311.790000px;}
.ya0{bottom:313.410000px;}
.y138{bottom:313.950000px;}
.yb0{bottom:317.910000px;}
.y8d{bottom:322.950000px;}
.y10c{bottom:324.210000px;}
.ycf{bottom:324.570000px;}
.y28{bottom:325.650000px;}
.y5a{bottom:331.230000px;}
.y6c{bottom:332.490000px;}
.y9f{bottom:334.110000px;}
.y137{bottom:334.650000px;}
.yaf{bottom:340.230000px;}
.y8c{bottom:343.650000px;}
.y10b{bottom:344.910000px;}
.yce{bottom:345.270000px;}
.y27{bottom:346.350000px;}
.y59{bottom:351.930000px;}
.y6b{bottom:353.190000px;}
.y9e{bottom:354.810000px;}
.y136{bottom:355.350000px;}
.yae{bottom:362.595000px;}
.y8b{bottom:364.395000px;}
.y10a{bottom:365.655000px;}
.ycd{bottom:366.015000px;}
.y26{bottom:367.095000px;}
.y58{bottom:372.675000px;}
.y6a{bottom:373.935000px;}
.y142{bottom:375.015000px;}
.y9d{bottom:375.555000px;}
.y135{bottom:376.095000px;}
.y8a{bottom:385.095000px;}
.y109{bottom:386.355000px;}
.ycc{bottom:386.715000px;}
.y25{bottom:387.795000px;}
.y57{bottom:393.375000px;}
.y69{bottom:394.635000px;}
.yad{bottom:395.895000px;}
.y9c{bottom:396.255000px;}
.y134{bottom:396.795000px;}
.y89{bottom:405.795000px;}
.y108{bottom:407.055000px;}
.ycb{bottom:407.415000px;}
.y24{bottom:408.495000px;}
.y56{bottom:414.075000px;}
.ye6{bottom:414.435000px;}
.y68{bottom:415.335000px;}
.y9b{bottom:416.955000px;}
.y133{bottom:417.495000px;}
.yac{bottom:426.495000px;}
.y107{bottom:427.755000px;}
.y88{bottom:427.935000px;}
.yca{bottom:428.115000px;}
.y23{bottom:429.195000px;}
.y55{bottom:434.775000px;}
.y67{bottom:436.035000px;}
.ye5{bottom:436.755000px;}
.y9a{bottom:437.655000px;}
.y132{bottom:438.195000px;}
.y102{bottom:439.275000px;}
.yc9{bottom:444.855000px;}
.yf6{bottom:447.195000px;}
.y106{bottom:448.455000px;}
.y87{bottom:448.635000px;}
.y22{bottom:449.895000px;}
.yab{bottom:454.215000px;}
.y54{bottom:455.475000px;}
.y66{bottom:456.735000px;}
.y99{bottom:458.355000px;}
.y131{bottom:458.895000px;}
.ye4{bottom:459.075000px;}
.y101{bottom:461.595000px;}
.yf5{bottom:467.895000px;}
.y86{bottom:469.335000px;}
.y21{bottom:470.595000px;}
.y53{bottom:476.355000px;}
.y65{bottom:477.435000px;}
.y130{bottom:479.595000px;}
.ye3{bottom:481.395000px;}
.y105{bottom:481.935000px;}
.y100{bottom:483.915000px;}
.yf4{bottom:488.595000px;}
.y98{bottom:488.775000px;}
.y20{bottom:491.295000px;}
.y52{bottom:498.135000px;}
.y12f{bottom:500.295000px;}
.ye2{bottom:503.715000px;}
.yff{bottom:506.235000px;}
.yf3{bottom:509.295000px;}
.y1f{bottom:511.995000px;}
.y104{bottom:512.535000px;}
.y51{bottom:518.835000px;}
.y12e{bottom:520.995000px;}
.ye1{bottom:526.035000px;}
.y103{bottom:526.575000px;}
.yfe{bottom:528.555000px;}
.yf2{bottom:529.995000px;}
.y1e{bottom:532.695000px;}
.y50{bottom:539.535000px;}
.y12d{bottom:541.695000px;}
.yc6{bottom:545.475000px;}
.ye0{bottom:548.355000px;}
.yf1{bottom:550.695000px;}
.yfd{bottom:550.875000px;}
.y1d{bottom:553.395000px;}
.y4f{bottom:560.235000px;}
.y12c{bottom:562.395000px;}
.yc5{bottom:566.175000px;}
.ydf{bottom:570.675000px;}
.yf0{bottom:571.395000px;}
.yfc{bottom:573.195000px;}
.y1c{bottom:574.095000px;}
.y85{bottom:575.535000px;}
.y4e{bottom:580.935000px;}
.y12b{bottom:583.095000px;}
.yc4{bottom:586.875000px;}
.yef{bottom:592.095000px;}
.yde{bottom:592.995000px;}
.y1b{bottom:594.795000px;}
.yfb{bottom:595.695000px;}
.y84{bottom:597.495000px;}
.y4d{bottom:601.635000px;}
.y12a{bottom:603.795000px;}
.yc3{bottom:607.575000px;}
.yee{bottom:612.795000px;}
.ydd{bottom:615.315000px;}
.y1a{bottom:615.495000px;}
.yfa{bottom:618.015000px;}
.y83{bottom:619.665000px;}
.y4c{bottom:622.365000px;}
.y129{bottom:624.525000px;}
.yc2{bottom:628.305000px;}
.yed{bottom:633.525000px;}
.y19{bottom:636.045000px;}
.ydc{bottom:637.665000px;}
.yf9{bottom:640.365000px;}
.y82{bottom:641.625000px;}
.y4b{bottom:643.065000px;}
.y128{bottom:645.225000px;}
.yc1{bottom:649.005000px;}
.yec{bottom:654.225000px;}
.y18{bottom:656.745000px;}
.yf8{bottom:662.685000px;}
.y4a{bottom:663.765000px;}
.y127{bottom:665.925000px;}
.yc0{bottom:669.705000px;}
.ydb{bottom:671.145000px;}
.yeb{bottom:674.925000px;}
.y17{bottom:677.445000px;}
.y49{bottom:684.465000px;}
.y126{bottom:686.625000px;}
.ybf{bottom:690.405000px;}
.yf7{bottom:693.105000px;}
.yea{bottom:695.625000px;}
.y16{bottom:698.145000px;}
.yda{bottom:698.865000px;}
.y48{bottom:705.165000px;}
.y125{bottom:707.325000px;}
.ybe{bottom:711.105000px;}
.ye9{bottom:716.325000px;}
.y15{bottom:718.845000px;}
.y47{bottom:725.865000px;}
.y124{bottom:728.025000px;}
.ybd{bottom:731.805000px;}
.ye8{bottom:737.025000px;}
.y14{bottom:739.545000px;}
.y46{bottom:746.565000px;}
.y123{bottom:748.725000px;}
.ybc{bottom:752.505000px;}
.ye7{bottom:753.765000px;}
.y13{bottom:760.245000px;}
.y45{bottom:767.265000px;}
.y122{bottom:769.425000px;}
.ybb{bottom:773.205000px;}
.y12{bottom:780.945000px;}
.y44{bottom:787.965000px;}
.y121{bottom:790.125000px;}
.yba{bottom:793.905000px;}
.y11{bottom:801.645000px;}
.y43{bottom:808.665000px;}
.y120{bottom:810.825000px;}
.yb9{bottom:814.605000px;}
.y10{bottom:822.345000px;}
.y42{bottom:829.365000px;}
.y11f{bottom:831.525000px;}
.yaa{bottom:831.705000px;}
.yb8{bottom:835.305000px;}
.yf{bottom:843.045000px;}
.y41{bottom:850.065000px;}
.y11e{bottom:852.225000px;}
.yb7{bottom:856.005000px;}
.ye{bottom:863.745000px;}
.y40{bottom:870.765000px;}
.y11d{bottom:872.925000px;}
.y64{bottom:877.605000px;}
.yd{bottom:884.490000px;}
.yb6{bottom:886.470000px;}
.y3f{bottom:891.510000px;}
.y11c{bottom:893.670000px;}
.yc{bottom:905.190000px;}
.y3e{bottom:912.210000px;}
.y11b{bottom:914.370000px;}
.yb{bottom:925.890000px;}
.y3d{bottom:932.910000px;}
.y11a{bottom:935.070000px;}
.ya{bottom:946.590000px;}
.y3c{bottom:953.610000px;}
.y9{bottom:967.290000px;}
.y119{bottom:969.270000px;}
.y3b{bottom:974.310000px;}
.yc8{bottom:977.010000px;}
.y8{bottom:987.990000px;}
.y118{bottom:991.590000px;}
.y3a{bottom:995.010000px;}
.y7{bottom:1008.690000px;}
.y117{bottom:1014.090000px;}
.y39{bottom:1015.710000px;}
.y6{bottom:1029.390000px;}
.y38{bottom:1036.410000px;}
.y5{bottom:1050.090000px;}
.y37{bottom:1057.110000px;}
.y4{bottom:1070.790000px;}
.y36{bottom:1077.810000px;}
.y3{bottom:1091.490000px;}
.y35{bottom:1098.510000px;}
.y2{bottom:1112.730000px;}
.y34{bottom:1119.210000px;}
.y1{bottom:1137.030000px;}
.y33{bottom:1139.910000px;}
.h7{height:34.855313px;}
.hb{height:42.164648px;}
.h5{height:43.246406px;}
.h4{height:50.800781px;}
.h8{height:53.573906px;}
.ha{height:59.439023px;}
.h9{height:60.996094px;}
.h3{height:64.546875px;}
.h6{height:65.884219px;}
.hc{height:71.613281px;}
.h2{height:75.519844px;}
.hd{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x7{left:132.515987px;}
.x5{left:170.129987px;}
.x2{left:180.749987px;}
.x6{left:343.694987px;}
.x3{left:406.514973px;}
.x4{left:412.634987px;}
.x9{left:446.474987px;}
.x8{left:765.509987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.337920pt;}
.ls14{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls9{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:7.813120pt;}
.ls21{letter-spacing:8.320000pt;}
.ls29{letter-spacing:8.960000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls28{letter-spacing:11.040000pt;}
.ls22{letter-spacing:11.136000pt;}
.ls24{letter-spacing:11.520000pt;}
.ls20{letter-spacing:16.000000pt;}
.ls25{letter-spacing:22.400000pt;}
.ls17{letter-spacing:32.640000pt;}
.wse{word-spacing:-64.000000pt;}
.ws15{word-spacing:-16.768000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.488000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.168000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-13.896107pt;}
._6{margin-left:-4.027947pt;}
._1{margin-left:-3.012053pt;}
._2{margin-left:-1.964587pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.073280pt;}
._d{width:1.984000pt;}
._e{width:3.033387pt;}
._11{width:4.074667pt;}
._b{width:5.248000pt;}
._c{width:6.474667pt;}
._13{width:7.381333pt;}
._7{width:8.320000pt;}
._8{width:9.216000pt;}
._9{width:10.485333pt;}
._12{width:11.456000pt;}
._4{width:12.864000pt;}
._5{width:14.378667pt;}
._a{width:17.536000pt;}
._f{width:18.570667pt;}
._10{width:19.886720pt;}
._14{width:21.248000pt;}
._15{width:22.144000pt;}
._1c{width:23.140053pt;}
._1a{width:24.064000pt;}
._1b{width:25.049387pt;}
._1d{width:26.346667pt;}
._1e{width:27.289387pt;}
._22{width:28.373333pt;}
._19{width:29.314560pt;}
._26{width:30.459520pt;}
._1f{width:32.109227pt;}
._28{width:33.984000pt;}
._25{width:35.717973pt;}
._18{width:36.864000pt;}
._17{width:37.888000pt;}
._24{width:39.146667pt;}
._21{width:40.768000pt;}
._2e{width:45.344000pt;}
._2d{width:46.400000pt;}
._2f{width:49.770667pt;}
._30{width:50.681387pt;}
._3b{width:52.288000pt;}
._29{width:56.128000pt;}
._23{width:60.183893pt;}
._38{width:82.560000pt;}
._39{width:83.616000pt;}
._31{width:88.480000pt;}
._20{width:103.618560pt;}
._2c{width:107.680000pt;}
._33{width:109.248000pt;}
._2a{width:140.288000pt;}
._27{width:172.778667pt;}
._3a{width:192.736000pt;}
._2b{width:199.680000pt;}
._32{width:281.824000pt;}
._34{width:283.744000pt;}
._37{width:437.344000pt;}
._36{width:498.272000pt;}
._35{width:1750.080000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:97.312000pt;}
.y97{bottom:103.072000pt;}
.yc7{bottom:103.232000pt;}
.y116{bottom:104.352000pt;}
.yd9{bottom:104.512000pt;}
.y32{bottom:105.472000pt;}
.y81{bottom:111.552000pt;}
.y78{bottom:112.512000pt;}
.ya9{bottom:112.992000pt;}
.y141{bottom:113.472000pt;}
.y96{bottom:121.472000pt;}
.y115{bottom:122.752000pt;}
.yd8{bottom:122.912000pt;}
.y31{bottom:123.872000pt;}
.y77{bottom:127.872000pt;}
.y63{bottom:128.832000pt;}
.y80{bottom:129.952000pt;}
.ya8{bottom:131.392000pt;}
.y140{bottom:131.872000pt;}
.y95{bottom:139.866667pt;}
.y114{bottom:141.146667pt;}
.yd7{bottom:141.306667pt;}
.y30{bottom:142.266667pt;}
.y76{bottom:143.226667pt;}
.y62{bottom:147.226667pt;}
.y7f{bottom:148.346667pt;}
.ya7{bottom:149.786667pt;}
.y13f{bottom:150.266667pt;}
.y94{bottom:158.266667pt;}
.y75{bottom:158.586667pt;}
.y113{bottom:159.546667pt;}
.yd6{bottom:159.706667pt;}
.y2f{bottom:160.666667pt;}
.y61{bottom:165.626667pt;}
.y7e{bottom:166.746667pt;}
.ya6{bottom:168.186667pt;}
.y13e{bottom:168.666667pt;}
.y74{bottom:173.946667pt;}
.y93{bottom:176.666667pt;}
.y112{bottom:177.946667pt;}
.yd5{bottom:178.106667pt;}
.y2e{bottom:179.066667pt;}
.yb5{bottom:183.226667pt;}
.y60{bottom:184.026667pt;}
.y7d{bottom:185.146667pt;}
.ya5{bottom:186.586667pt;}
.y13d{bottom:187.066667pt;}
.y73{bottom:189.306667pt;}
.y92{bottom:195.066667pt;}
.y111{bottom:196.346667pt;}
.yd4{bottom:196.506667pt;}
.y2d{bottom:197.466667pt;}
.y5f{bottom:202.426667pt;}
.yb4{bottom:203.226667pt;}
.y7c{bottom:203.546667pt;}
.y72{bottom:204.506667pt;}
.ya4{bottom:204.986667pt;}
.y13c{bottom:205.466667pt;}
.y91{bottom:213.466667pt;}
.y110{bottom:214.746667pt;}
.yd3{bottom:214.906667pt;}
.y2c{bottom:215.866667pt;}
.y71{bottom:219.866667pt;}
.y5e{bottom:220.826667pt;}
.y7b{bottom:221.946667pt;}
.yb3{bottom:223.066667pt;}
.ya3{bottom:223.386667pt;}
.y13b{bottom:223.866667pt;}
.y70{bottom:224.506667pt;}
.y90{bottom:231.866667pt;}
.y10f{bottom:233.146667pt;}
.yd2{bottom:233.306667pt;}
.y2b{bottom:234.266667pt;}
.y6f{bottom:236.346667pt;}
.y5d{bottom:239.226667pt;}
.y7a{bottom:240.346667pt;}
.ya2{bottom:241.786667pt;}
.y13a{bottom:242.266667pt;}
.yb2{bottom:242.906667pt;}
.y8f{bottom:250.266667pt;}
.y10e{bottom:251.546667pt;}
.yd1{bottom:251.706667pt;}
.y2a{bottom:252.666667pt;}
.y5c{bottom:257.626667pt;}
.y6e{bottom:258.746667pt;}
.ya1{bottom:260.186667pt;}
.y139{bottom:260.666667pt;}
.yb1{bottom:262.746667pt;}
.y8e{bottom:268.666667pt;}
.y10d{bottom:269.946667pt;}
.yd0{bottom:270.106667pt;}
.y29{bottom:271.066667pt;}
.y5b{bottom:276.026667pt;}
.y6d{bottom:277.146667pt;}
.ya0{bottom:278.586667pt;}
.y138{bottom:279.066667pt;}
.yb0{bottom:282.586667pt;}
.y8d{bottom:287.066667pt;}
.y10c{bottom:288.186667pt;}
.ycf{bottom:288.506667pt;}
.y28{bottom:289.466667pt;}
.y5a{bottom:294.426667pt;}
.y6c{bottom:295.546667pt;}
.y9f{bottom:296.986667pt;}
.y137{bottom:297.466667pt;}
.yaf{bottom:302.426667pt;}
.y8c{bottom:305.466667pt;}
.y10b{bottom:306.586667pt;}
.yce{bottom:306.906667pt;}
.y27{bottom:307.866667pt;}
.y59{bottom:312.826667pt;}
.y6b{bottom:313.946667pt;}
.y9e{bottom:315.386667pt;}
.y136{bottom:315.866667pt;}
.yae{bottom:322.306667pt;}
.y8b{bottom:323.906667pt;}
.y10a{bottom:325.026667pt;}
.ycd{bottom:325.346667pt;}
.y26{bottom:326.306667pt;}
.y58{bottom:331.266667pt;}
.y6a{bottom:332.386667pt;}
.y142{bottom:333.346667pt;}
.y9d{bottom:333.826667pt;}
.y135{bottom:334.306667pt;}
.y8a{bottom:342.306667pt;}
.y109{bottom:343.426667pt;}
.ycc{bottom:343.746667pt;}
.y25{bottom:344.706667pt;}
.y57{bottom:349.666667pt;}
.y69{bottom:350.786667pt;}
.yad{bottom:351.906667pt;}
.y9c{bottom:352.226667pt;}
.y134{bottom:352.706667pt;}
.y89{bottom:360.706667pt;}
.y108{bottom:361.826667pt;}
.ycb{bottom:362.146667pt;}
.y24{bottom:363.106667pt;}
.y56{bottom:368.066667pt;}
.ye6{bottom:368.386667pt;}
.y68{bottom:369.186667pt;}
.y9b{bottom:370.626667pt;}
.y133{bottom:371.106667pt;}
.yac{bottom:379.106667pt;}
.y107{bottom:380.226667pt;}
.y88{bottom:380.386667pt;}
.yca{bottom:380.546667pt;}
.y23{bottom:381.506667pt;}
.y55{bottom:386.466667pt;}
.y67{bottom:387.586667pt;}
.ye5{bottom:388.226667pt;}
.y9a{bottom:389.026667pt;}
.y132{bottom:389.506667pt;}
.y102{bottom:390.466667pt;}
.yc9{bottom:395.426667pt;}
.yf6{bottom:397.506667pt;}
.y106{bottom:398.626667pt;}
.y87{bottom:398.786667pt;}
.y22{bottom:399.906667pt;}
.yab{bottom:403.746667pt;}
.y54{bottom:404.866667pt;}
.y66{bottom:405.986667pt;}
.y99{bottom:407.426667pt;}
.y131{bottom:407.906667pt;}
.ye4{bottom:408.066667pt;}
.y101{bottom:410.306667pt;}
.yf5{bottom:415.906667pt;}
.y86{bottom:417.186667pt;}
.y21{bottom:418.306667pt;}
.y53{bottom:423.426667pt;}
.y65{bottom:424.386667pt;}
.y130{bottom:426.306667pt;}
.ye3{bottom:427.906667pt;}
.y105{bottom:428.386667pt;}
.y100{bottom:430.146667pt;}
.yf4{bottom:434.306667pt;}
.y98{bottom:434.466667pt;}
.y20{bottom:436.706667pt;}
.y52{bottom:442.786667pt;}
.y12f{bottom:444.706667pt;}
.ye2{bottom:447.746667pt;}
.yff{bottom:449.986667pt;}
.yf3{bottom:452.706667pt;}
.y1f{bottom:455.106667pt;}
.y104{bottom:455.586667pt;}
.y51{bottom:461.186667pt;}
.y12e{bottom:463.106667pt;}
.ye1{bottom:467.586667pt;}
.y103{bottom:468.066667pt;}
.yfe{bottom:469.826667pt;}
.yf2{bottom:471.106667pt;}
.y1e{bottom:473.506667pt;}
.y50{bottom:479.586667pt;}
.y12d{bottom:481.506667pt;}
.yc6{bottom:484.866667pt;}
.ye0{bottom:487.426667pt;}
.yf1{bottom:489.506667pt;}
.yfd{bottom:489.666667pt;}
.y1d{bottom:491.906667pt;}
.y4f{bottom:497.986667pt;}
.y12c{bottom:499.906667pt;}
.yc5{bottom:503.266667pt;}
.ydf{bottom:507.266667pt;}
.yf0{bottom:507.906667pt;}
.yfc{bottom:509.506667pt;}
.y1c{bottom:510.306667pt;}
.y85{bottom:511.586667pt;}
.y4e{bottom:516.386667pt;}
.y12b{bottom:518.306667pt;}
.yc4{bottom:521.666667pt;}
.yef{bottom:526.306667pt;}
.yde{bottom:527.106667pt;}
.y1b{bottom:528.706667pt;}
.yfb{bottom:529.506667pt;}
.y84{bottom:531.106667pt;}
.y4d{bottom:534.786667pt;}
.y12a{bottom:536.706667pt;}
.yc3{bottom:540.066667pt;}
.yee{bottom:544.706667pt;}
.ydd{bottom:546.946667pt;}
.y1a{bottom:547.106667pt;}
.yfa{bottom:549.346667pt;}
.y83{bottom:550.813333pt;}
.y4c{bottom:553.213333pt;}
.y129{bottom:555.133333pt;}
.yc2{bottom:558.493333pt;}
.yed{bottom:563.133333pt;}
.y19{bottom:565.373333pt;}
.ydc{bottom:566.813333pt;}
.yf9{bottom:569.213333pt;}
.y82{bottom:570.333333pt;}
.y4b{bottom:571.613333pt;}
.y128{bottom:573.533333pt;}
.yc1{bottom:576.893333pt;}
.yec{bottom:581.533333pt;}
.y18{bottom:583.773333pt;}
.yf8{bottom:589.053333pt;}
.y4a{bottom:590.013333pt;}
.y127{bottom:591.933333pt;}
.yc0{bottom:595.293333pt;}
.ydb{bottom:596.573333pt;}
.yeb{bottom:599.933333pt;}
.y17{bottom:602.173333pt;}
.y49{bottom:608.413333pt;}
.y126{bottom:610.333333pt;}
.ybf{bottom:613.693333pt;}
.yf7{bottom:616.093333pt;}
.yea{bottom:618.333333pt;}
.y16{bottom:620.573333pt;}
.yda{bottom:621.213333pt;}
.y48{bottom:626.813333pt;}
.y125{bottom:628.733333pt;}
.ybe{bottom:632.093333pt;}
.ye9{bottom:636.733333pt;}
.y15{bottom:638.973333pt;}
.y47{bottom:645.213333pt;}
.y124{bottom:647.133333pt;}
.ybd{bottom:650.493333pt;}
.ye8{bottom:655.133333pt;}
.y14{bottom:657.373333pt;}
.y46{bottom:663.613333pt;}
.y123{bottom:665.533333pt;}
.ybc{bottom:668.893333pt;}
.ye7{bottom:670.013333pt;}
.y13{bottom:675.773333pt;}
.y45{bottom:682.013333pt;}
.y122{bottom:683.933333pt;}
.ybb{bottom:687.293333pt;}
.y12{bottom:694.173333pt;}
.y44{bottom:700.413333pt;}
.y121{bottom:702.333333pt;}
.yba{bottom:705.693333pt;}
.y11{bottom:712.573333pt;}
.y43{bottom:718.813333pt;}
.y120{bottom:720.733333pt;}
.yb9{bottom:724.093333pt;}
.y10{bottom:730.973333pt;}
.y42{bottom:737.213333pt;}
.y11f{bottom:739.133333pt;}
.yaa{bottom:739.293333pt;}
.yb8{bottom:742.493333pt;}
.yf{bottom:749.373333pt;}
.y41{bottom:755.613333pt;}
.y11e{bottom:757.533333pt;}
.yb7{bottom:760.893333pt;}
.ye{bottom:767.773333pt;}
.y40{bottom:774.013333pt;}
.y11d{bottom:775.933333pt;}
.y64{bottom:780.093333pt;}
.yd{bottom:786.213333pt;}
.yb6{bottom:787.973333pt;}
.y3f{bottom:792.453333pt;}
.y11c{bottom:794.373333pt;}
.yc{bottom:804.613333pt;}
.y3e{bottom:810.853333pt;}
.y11b{bottom:812.773333pt;}
.yb{bottom:823.013333pt;}
.y3d{bottom:829.253333pt;}
.y11a{bottom:831.173333pt;}
.ya{bottom:841.413333pt;}
.y3c{bottom:847.653333pt;}
.y9{bottom:859.813333pt;}
.y119{bottom:861.573333pt;}
.y3b{bottom:866.053333pt;}
.yc8{bottom:868.453333pt;}
.y8{bottom:878.213333pt;}
.y118{bottom:881.413333pt;}
.y3a{bottom:884.453333pt;}
.y7{bottom:896.613333pt;}
.y117{bottom:901.413333pt;}
.y39{bottom:902.853333pt;}
.y6{bottom:915.013333pt;}
.y38{bottom:921.253333pt;}
.y5{bottom:933.413333pt;}
.y37{bottom:939.653333pt;}
.y4{bottom:951.813333pt;}
.y36{bottom:958.053333pt;}
.y3{bottom:970.213333pt;}
.y35{bottom:976.453333pt;}
.y2{bottom:989.093333pt;}
.y34{bottom:994.853333pt;}
.y1{bottom:1010.693333pt;}
.y33{bottom:1013.253333pt;}
.h7{height:30.982500pt;}
.hb{height:37.479688pt;}
.h5{height:38.441250pt;}
.h4{height:45.156250pt;}
.h8{height:47.621250pt;}
.ha{height:52.834688pt;}
.h9{height:54.218750pt;}
.h3{height:57.375000pt;}
.h6{height:58.563750pt;}
.hc{height:63.656250pt;}
.h2{height:67.128750pt;}
.hd{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x7{left:117.791988pt;}
.x5{left:151.226655pt;}
.x2{left:160.666655pt;}
.x6{left:305.506655pt;}
.x3{left:361.346643pt;}
.x4{left:366.786655pt;}
.x9{left:396.866655pt;}
.x8{left:680.453322pt;}
}

