
    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_ba142027691c97bde445c07a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_60196c967d9c267233117513.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_188fbf850c07c4d4371680fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf300aff7a3aafc5fa385325.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ef14382118f362415a71f51.woff')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_04d2c8bf46f333d6ec1dcf2d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_dc1c5bb1b7a2e62e4565c0e6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fe05fcee21d0c48522c6c774.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7585f4db5096f03c219fbda9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls14{letter-spacing:-5.400000px;}
.ls20{letter-spacing:-4.320000px;}
.ls25{letter-spacing:-3.600000px;}
.ls27{letter-spacing:-3.168000px;}
.lsc{letter-spacing:-2.880000px;}
.ls21{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-1.902000px;}
.ls15{letter-spacing:-1.800000px;}
.ls26{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.211200px;}
.lsa{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.846720px;}
.lsb{letter-spacing:0.864000px;}
.ls1e{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.872000px;}
.ls23{letter-spacing:2.088000px;}
.ls24{letter-spacing:2.160000px;}
.ls9{letter-spacing:14.580000px;}
.ls1d{letter-spacing:17.280000px;}
.ls10{letter-spacing:22.500000px;}
.ls1b{letter-spacing:33.984000px;}
.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;}
}
.ws12{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wse{word-spacing:-17.136000px;}
.wsd{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.832000px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.220000px;}
.ws11{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.140000px;}
.wsc{word-spacing:-13.038000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._22{margin-left:-6.726720px;}
._21{margin-left:-5.670480px;}
._10{margin-left:-3.685920px;}
._e{margin-left:-2.646000px;}
._4{margin-left:-1.152000px;}
._3{width:1.532160px;}
._8{width:2.689200px;}
._7{width:3.764880px;}
._d{width:5.238720px;}
._18{width:6.882480px;}
._c{width:8.532000px;}
._17{width:10.440000px;}
._5{width:11.533680px;}
._1e{width:12.566160px;}
._2{width:13.597920px;}
._14{width:14.760000px;}
._15{width:15.912000px;}
._a{width:16.993440px;}
._9{width:18.107280px;}
._b{width:19.741200px;}
._6{width:20.758320px;}
._16{width:22.153680px;}
._1d{width:23.350320px;}
._1f{width:25.200000px;}
._19{width:27.072000px;}
._1a{width:28.203840px;}
._23{width:29.899920px;}
._20{width:31.613760px;}
._11{width:32.884560px;}
._27{width:34.610880px;}
._26{width:36.288000px;}
._29{width:37.440000px;}
._2b{width:39.144000px;}
._2a{width:40.167840px;}
._1b{width:43.824000px;}
._28{width:45.660000px;}
._1c{width:47.232000px;}
._25{width:49.140000px;}
._31{width:55.368000px;}
._33{width:64.776000px;}
._34{width:65.988000px;}
._32{width:76.782000px;}
._2c{width:137.394000px;}
._2d{width:138.719760px;}
._2e{width:144.488160px;}
._13{width:146.309760px;}
._2f{width:189.144000px;}
._30{width:190.296000px;}
._24{width:237.330000px;}
._f{width:243.372000px;}
._0{width:725.376000px;}
._12{width:1160.394720px;}
._1{width:1748.796000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y63{bottom:3.960000px;}
.yb9{bottom:24.660000px;}
.y4{bottom:45.216000px;}
.yc3{bottom:45.390000px;}
.yb8{bottom:45.405000px;}
.y3{bottom:60.876000px;}
.yc2{bottom:66.090000px;}
.yb7{bottom:66.105000px;}
.y2{bottom:76.356000px;}
.yc1{bottom:86.790000px;}
.yb6{bottom:86.805000px;}
.y2d{bottom:96.696000px;}
.ydb{bottom:97.596000px;}
.yca{bottom:98.136000px;}
.yc0{bottom:107.490000px;}
.yb5{bottom:107.505000px;}
.y2c{bottom:113.796000px;}
.y89{bottom:117.396000px;}
.yf6{bottom:118.296000px;}
.yc9{bottom:118.656000px;}
.y55{bottom:118.836000px;}
.y78{bottom:119.016000px;}
.ybf{bottom:128.190000px;}
.yb4{bottom:128.205000px;}
.y60{bottom:131.076000px;}
.y77{bottom:131.436000px;}
.y2b{bottom:136.296000px;}
.y88{bottom:138.096000px;}
.yf5{bottom:138.996000px;}
.yc8{bottom:139.176000px;}
.y54{bottom:139.536000px;}
.y5f{bottom:148.356000px;}
.y2a{bottom:148.716000px;}
.ybe{bottom:148.890000px;}
.yb3{bottom:148.905000px;}
.y90{bottom:150.330000px;}
.ya8{bottom:153.570000px;}
.yc7{bottom:158.070000px;}
.y87{bottom:158.790000px;}
.yf4{bottom:159.690000px;}
.y53{bottom:160.230000px;}
.y5e{bottom:165.630000px;}
.ya7{bottom:165.990000px;}
.ybd{bottom:169.590000px;}
.yb2{bottom:169.605000px;}
.y75{bottom:170.850000px;}
.y8f{bottom:171.030000px;}
.yc6{bottom:176.970000px;}
.y29{bottom:177.870000px;}
.y86{bottom:179.490000px;}
.yf3{bottom:180.390000px;}
.y52{bottom:180.930000px;}
.yd9{bottom:182.550000px;}
.y5d{bottom:182.910000px;}
.yda{bottom:189.390000px;}
.ybc{bottom:190.290000px;}
.yb1{bottom:190.305000px;}
.y8e{bottom:191.730000px;}
.yc5{bottom:193.170000px;}
.ya6{bottom:194.070000px;}
.y5c{bottom:200.190000px;}
.yf2{bottom:201.090000px;}
.y51{bottom:201.630000px;}
.yd8{bottom:203.250000px;}
.y28{bottom:204.150000px;}
.yae{bottom:205.410000px;}
.y8d{bottom:212.430000px;}
.ya5{bottom:214.770000px;}
.y5b{bottom:217.290000px;}
.y27{bottom:220.710000px;}
.y85{bottom:220.935000px;}
.yf1{bottom:221.835000px;}
.y50{bottom:222.375000px;}
.yd7{bottom:223.995000px;}
.y8c{bottom:232.815000px;}
.y5a{bottom:234.615000px;}
.ya4{bottom:235.515000px;}
.y26{bottom:237.135000px;}
.y59{bottom:239.835000px;}
.y84{bottom:241.635000px;}
.yf0{bottom:242.535000px;}
.y4f{bottom:243.075000px;}
.yd6{bottom:244.695000px;}
.y74{bottom:251.895000px;}
.y58{bottom:252.255000px;}
.y25{bottom:253.695000px;}
.ya3{bottom:255.855000px;}
.y83{bottom:262.335000px;}
.yef{bottom:263.235000px;}
.y4e{bottom:263.775000px;}
.yd5{bottom:265.395000px;}
.y73{bottom:269.175000px;}
.y24{bottom:270.075000px;}
.y8b{bottom:270.795000px;}
.ya2{bottom:274.755000px;}
.yad{bottom:275.835000px;}
.y82{bottom:282.855000px;}
.yee{bottom:283.935000px;}
.y4d{bottom:284.475000px;}
.y8a{bottom:286.095000px;}
.y72{bottom:286.455000px;}
.y23{bottom:286.635000px;}
.y57{bottom:291.315000px;}
.ya1{bottom:293.835000px;}
.yac{bottom:294.735000px;}
.y22{bottom:303.015000px;}
.y71{bottom:303.555000px;}
.yed{bottom:304.635000px;}
.y4c{bottom:305.175000px;}
.yd4{bottom:306.795000px;}
.ya0{bottom:309.855000px;}
.yab{bottom:319.035000px;}
.y21{bottom:319.575000px;}
.y70{bottom:321.195000px;}
.y81{bottom:324.255000px;}
.yec{bottom:325.335000px;}
.y4b{bottom:325.875000px;}
.yd3{bottom:327.495000px;}
.y9f{bottom:331.275000px;}
.y76{bottom:332.715000px;}
.y20{bottom:336.135000px;}
.y6f{bottom:340.815000px;}
.y80{bottom:344.955000px;}
.yeb{bottom:346.035000px;}
.y4a{bottom:346.575000px;}
.yd2{bottom:348.195000px;}
.y1f{bottom:352.515000px;}
.y9e{bottom:352.695000px;}
.y6e{bottom:359.895000px;}
.y7f{bottom:365.655000px;}
.yea{bottom:366.735000px;}
.y49{bottom:367.275000px;}
.yd1{bottom:368.895000px;}
.y1e{bottom:369.075000px;}
.y9d{bottom:374.115000px;}
.y6d{bottom:378.795000px;}
.y1d{bottom:385.455000px;}
.y7e{bottom:386.175000px;}
.ye9{bottom:387.435000px;}
.y48{bottom:387.975000px;}
.yd0{bottom:389.595000px;}
.y6c{bottom:394.815000px;}
.y9c{bottom:395.715000px;}
.yc4{bottom:400.935000px;}
.y1c{bottom:402.015000px;}
.y7d{bottom:405.075000px;}
.ye8{bottom:408.135000px;}
.y47{bottom:408.675000px;}
.ycf{bottom:410.295000px;}
.y6b{bottom:416.415000px;}
.y9b{bottom:417.135000px;}
.y1b{bottom:418.395000px;}
.ybb{bottom:422.355000px;}
.y7c{bottom:424.155000px;}
.ye7{bottom:428.835000px;}
.y46{bottom:429.375000px;}
.yce{bottom:430.995000px;}
.y1a{bottom:434.955000px;}
.y6a{bottom:437.835000px;}
.y9a{bottom:438.555000px;}
.y7b{bottom:439.455000px;}
.ye6{bottom:449.535000px;}
.y45{bottom:450.075000px;}
.y19{bottom:451.365000px;}
.ycd{bottom:451.725000px;}
.y69{bottom:459.285000px;}
.y99{bottom:460.005000px;}
.y18{bottom:467.565000px;}
.ye5{bottom:470.265000px;}
.y44{bottom:470.805000px;}
.ycc{bottom:472.425000px;}
.y68{bottom:480.705000px;}
.y98{bottom:481.425000px;}
.y17{bottom:484.845000px;}
.ye4{bottom:490.965000px;}
.y43{bottom:491.505000px;}
.ycb{bottom:492.945000px;}
.y16{bottom:502.125000px;}
.y97{bottom:502.845000px;}
.ye3{bottom:511.665000px;}
.y42{bottom:512.205000px;}
.y7a{bottom:519.045000px;}
.y15{bottom:519.225000px;}
.y67{bottom:523.545000px;}
.y96{bottom:524.445000px;}
.ye2{bottom:532.365000px;}
.y41{bottom:532.905000px;}
.y14{bottom:536.505000px;}
.y66{bottom:545.145000px;}
.y95{bottom:545.865000px;}
.ye1{bottom:553.065000px;}
.y40{bottom:553.605000px;}
.y13{bottom:553.785000px;}
.y65{bottom:566.565000px;}
.y94{bottom:567.285000px;}
.y12{bottom:571.065000px;}
.ye0{bottom:573.765000px;}
.y3f{bottom:574.125000px;}
.y64{bottom:587.985000px;}
.y11{bottom:588.345000px;}
.y93{bottom:588.705000px;}
.ydf{bottom:594.285000px;}
.y3e{bottom:594.825000px;}
.y10{bottom:605.625000px;}
.y92{bottom:610.125000px;}
.y62{bottom:610.845000px;}
.yde{bottom:614.985000px;}
.y3d{bottom:615.525000px;}
.yf{bottom:622.725000px;}
.yba{bottom:630.105000px;}
.y91{bottom:631.545000px;}
.ydd{bottom:635.685000px;}
.y3c{bottom:636.225000px;}
.ye{bottom:641.265000px;}
.yaa{bottom:643.065000px;}
.yb0{bottom:651.525000px;}
.ydc{bottom:656.385000px;}
.y3b{bottom:656.925000px;}
.yd{bottom:660.165000px;}
.yc{bottom:677.445000px;}
.y3a{bottom:677.625000px;}
.y61{bottom:684.510000px;}
.yb{bottom:695.490000px;}
.y39{bottom:698.370000px;}
.y38{bottom:719.070000px;}
.ya{bottom:732.210000px;}
.y37{bottom:739.770000px;}
.y36{bottom:760.470000px;}
.y9{bottom:761.550000px;}
.y35{bottom:781.170000px;}
.ya9{bottom:788.010000px;}
.y8{bottom:790.710000px;}
.y34{bottom:801.870000px;}
.y79{bottom:807.810000px;}
.y7{bottom:820.050000px;}
.y33{bottom:822.570000px;}
.y32{bottom:843.270000px;}
.y6{bottom:849.390000px;}
.yaf{bottom:859.290000px;}
.y31{bottom:863.970000px;}
.y56{bottom:870.810000px;}
.y5{bottom:878.730000px;}
.y30{bottom:884.670000px;}
.y1{bottom:915.660000px;}
.y2f{bottom:916.740000px;}
.y2e{bottom:936.900000px;}
.hd{height:20.520000px;}
.hc{height:20.700000px;}
.he{height:20.736000px;}
.h9{height:34.855313px;}
.h10{height:42.845977px;}
.hb{height:43.246406px;}
.h3{height:48.410156px;}
.h6{height:53.573906px;}
.h8{height:53.709961px;}
.h7{height:55.291992px;}
.h12{height:59.343750px;}
.hf{height:59.383125px;}
.ha{height:63.949219px;}
.h5{height:64.546875px;}
.h2{height:65.884219px;}
.h4{height:95.245664px;}
.h11{height:207.030000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w7{width:82.080000px;}
.wd{width:95.076000px;}
.wc{width:95.256000px;}
.wb{width:120.780000px;}
.wa{width:120.816000px;}
.w6{width:126.396000px;}
.w5{width:166.575000px;}
.w8{width:223.095000px;}
.w9{width:223.455000px;}
.w4{width:235.650000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x2{left:95.795989px;}
.x1b{left:98.315989px;}
.x8{left:100.655989px;}
.x1a{left:102.635989px;}
.x25{left:105.515989px;}
.x17{left:108.755989px;}
.x29{left:116.675989px;}
.x2a{left:122.795989px;}
.x1c{left:126.215989px;}
.x3{left:127.655989px;}
.x24{left:149.795989px;}
.x21{left:179.310000px;}
.x12{left:212.294978px;}
.xf{left:215.174989px;}
.x13{left:218.414989px;}
.x9{left:224.354978px;}
.xa{left:230.474989px;}
.x18{left:232.994989px;}
.x10{left:248.654978px;}
.x11{left:254.774989px;}
.x14{left:297.254978px;}
.x15{left:303.374989px;}
.x2d{left:306.794989px;}
.xc{left:332.895000px;}
.x26{left:339.555000px;}
.x2b{left:350.384978px;}
.xe{left:361.544989px;}
.x2c{left:362.624989px;}
.x22{left:403.125000px;}
.x27{left:435.525000px;}
.x1d{left:438.404978px;}
.x1e{left:444.524989px;}
.x4{left:497.669978px;}
.xd{left:500.190000px;}
.x5{left:503.789989px;}
.x28{left:531.510000px;}
.x1{left:532.949989px;}
.x16{left:589.829989px;}
.x23{left:591.989978px;}
.x1f{left:598.289978px;}
.x20{left:604.409989px;}
.x6{left:621.329978px;}
.x7{left:627.479989px;}
.x19{left:639.719989px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls14{letter-spacing:-4.800000pt;}
.ls20{letter-spacing:-3.840000pt;}
.ls25{letter-spacing:-3.200000pt;}
.ls27{letter-spacing:-2.816000pt;}
.lsc{letter-spacing:-2.560000pt;}
.ls21{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.690667pt;}
.ls15{letter-spacing:-1.600000pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.187733pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.752640pt;}
.lsb{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.664000pt;}
.ls23{letter-spacing:1.856000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls9{letter-spacing:12.960000pt;}
.ls1d{letter-spacing:15.360000pt;}
.ls10{letter-spacing:20.000000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ws12{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.232000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.184000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.589333pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._22{margin-left:-5.979307pt;}
._21{margin-left:-5.040427pt;}
._10{margin-left:-3.276373pt;}
._e{margin-left:-2.352000pt;}
._4{margin-left:-1.024000pt;}
._3{width:1.361920pt;}
._8{width:2.390400pt;}
._7{width:3.346560pt;}
._d{width:4.656640pt;}
._18{width:6.117760pt;}
._c{width:7.584000pt;}
._17{width:9.280000pt;}
._5{width:10.252160pt;}
._1e{width:11.169920pt;}
._2{width:12.087040pt;}
._14{width:13.120000pt;}
._15{width:14.144000pt;}
._a{width:15.105280pt;}
._9{width:16.095360pt;}
._b{width:17.547733pt;}
._6{width:18.451840pt;}
._16{width:19.692160pt;}
._1d{width:20.755840pt;}
._1f{width:22.400000pt;}
._19{width:24.064000pt;}
._1a{width:25.070080pt;}
._23{width:26.577707pt;}
._20{width:28.101120pt;}
._11{width:29.230720pt;}
._27{width:30.765227pt;}
._26{width:32.256000pt;}
._29{width:33.280000pt;}
._2b{width:34.794667pt;}
._2a{width:35.704747pt;}
._1b{width:38.954667pt;}
._28{width:40.586667pt;}
._1c{width:41.984000pt;}
._25{width:43.680000pt;}
._31{width:49.216000pt;}
._33{width:57.578667pt;}
._34{width:58.656000pt;}
._32{width:68.250667pt;}
._2c{width:122.128000pt;}
._2d{width:123.306453pt;}
._2e{width:128.433920pt;}
._13{width:130.053120pt;}
._2f{width:168.128000pt;}
._30{width:169.152000pt;}
._24{width:210.960000pt;}
._f{width:216.330667pt;}
._0{width:644.778667pt;}
._12{width:1031.461973pt;}
._1{width:1554.485333pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:3.520000pt;}
.yb9{bottom:21.920000pt;}
.y4{bottom:40.192000pt;}
.yc3{bottom:40.346667pt;}
.yb8{bottom:40.360000pt;}
.y3{bottom:54.112000pt;}
.yc2{bottom:58.746667pt;}
.yb7{bottom:58.760000pt;}
.y2{bottom:67.872000pt;}
.yc1{bottom:77.146667pt;}
.yb6{bottom:77.160000pt;}
.y2d{bottom:85.952000pt;}
.ydb{bottom:86.752000pt;}
.yca{bottom:87.232000pt;}
.yc0{bottom:95.546667pt;}
.yb5{bottom:95.560000pt;}
.y2c{bottom:101.152000pt;}
.y89{bottom:104.352000pt;}
.yf6{bottom:105.152000pt;}
.yc9{bottom:105.472000pt;}
.y55{bottom:105.632000pt;}
.y78{bottom:105.792000pt;}
.ybf{bottom:113.946667pt;}
.yb4{bottom:113.960000pt;}
.y60{bottom:116.512000pt;}
.y77{bottom:116.832000pt;}
.y2b{bottom:121.152000pt;}
.y88{bottom:122.752000pt;}
.yf5{bottom:123.552000pt;}
.yc8{bottom:123.712000pt;}
.y54{bottom:124.032000pt;}
.y5f{bottom:131.872000pt;}
.y2a{bottom:132.192000pt;}
.ybe{bottom:132.346667pt;}
.yb3{bottom:132.360000pt;}
.y90{bottom:133.626667pt;}
.ya8{bottom:136.506667pt;}
.yc7{bottom:140.506667pt;}
.y87{bottom:141.146667pt;}
.yf4{bottom:141.946667pt;}
.y53{bottom:142.426667pt;}
.y5e{bottom:147.226667pt;}
.ya7{bottom:147.546667pt;}
.ybd{bottom:150.746667pt;}
.yb2{bottom:150.760000pt;}
.y75{bottom:151.866667pt;}
.y8f{bottom:152.026667pt;}
.yc6{bottom:157.306667pt;}
.y29{bottom:158.106667pt;}
.y86{bottom:159.546667pt;}
.yf3{bottom:160.346667pt;}
.y52{bottom:160.826667pt;}
.yd9{bottom:162.266667pt;}
.y5d{bottom:162.586667pt;}
.yda{bottom:168.346667pt;}
.ybc{bottom:169.146667pt;}
.yb1{bottom:169.160000pt;}
.y8e{bottom:170.426667pt;}
.yc5{bottom:171.706667pt;}
.ya6{bottom:172.506667pt;}
.y5c{bottom:177.946667pt;}
.yf2{bottom:178.746667pt;}
.y51{bottom:179.226667pt;}
.yd8{bottom:180.666667pt;}
.y28{bottom:181.466667pt;}
.yae{bottom:182.586667pt;}
.y8d{bottom:188.826667pt;}
.ya5{bottom:190.906667pt;}
.y5b{bottom:193.146667pt;}
.y27{bottom:196.186667pt;}
.y85{bottom:196.386667pt;}
.yf1{bottom:197.186667pt;}
.y50{bottom:197.666667pt;}
.yd7{bottom:199.106667pt;}
.y8c{bottom:206.946667pt;}
.y5a{bottom:208.546667pt;}
.ya4{bottom:209.346667pt;}
.y26{bottom:210.786667pt;}
.y59{bottom:213.186667pt;}
.y84{bottom:214.786667pt;}
.yf0{bottom:215.586667pt;}
.y4f{bottom:216.066667pt;}
.yd6{bottom:217.506667pt;}
.y74{bottom:223.906667pt;}
.y58{bottom:224.226667pt;}
.y25{bottom:225.506667pt;}
.ya3{bottom:227.426667pt;}
.y83{bottom:233.186667pt;}
.yef{bottom:233.986667pt;}
.y4e{bottom:234.466667pt;}
.yd5{bottom:235.906667pt;}
.y73{bottom:239.266667pt;}
.y24{bottom:240.066667pt;}
.y8b{bottom:240.706667pt;}
.ya2{bottom:244.226667pt;}
.yad{bottom:245.186667pt;}
.y82{bottom:251.426667pt;}
.yee{bottom:252.386667pt;}
.y4d{bottom:252.866667pt;}
.y8a{bottom:254.306667pt;}
.y72{bottom:254.626667pt;}
.y23{bottom:254.786667pt;}
.y57{bottom:258.946667pt;}
.ya1{bottom:261.186667pt;}
.yac{bottom:261.986667pt;}
.y22{bottom:269.346667pt;}
.y71{bottom:269.826667pt;}
.yed{bottom:270.786667pt;}
.y4c{bottom:271.266667pt;}
.yd4{bottom:272.706667pt;}
.ya0{bottom:275.426667pt;}
.yab{bottom:283.586667pt;}
.y21{bottom:284.066667pt;}
.y70{bottom:285.506667pt;}
.y81{bottom:288.226667pt;}
.yec{bottom:289.186667pt;}
.y4b{bottom:289.666667pt;}
.yd3{bottom:291.106667pt;}
.y9f{bottom:294.466667pt;}
.y76{bottom:295.746667pt;}
.y20{bottom:298.786667pt;}
.y6f{bottom:302.946667pt;}
.y80{bottom:306.626667pt;}
.yeb{bottom:307.586667pt;}
.y4a{bottom:308.066667pt;}
.yd2{bottom:309.506667pt;}
.y1f{bottom:313.346667pt;}
.y9e{bottom:313.506667pt;}
.y6e{bottom:319.906667pt;}
.y7f{bottom:325.026667pt;}
.yea{bottom:325.986667pt;}
.y49{bottom:326.466667pt;}
.yd1{bottom:327.906667pt;}
.y1e{bottom:328.066667pt;}
.y9d{bottom:332.546667pt;}
.y6d{bottom:336.706667pt;}
.y1d{bottom:342.626667pt;}
.y7e{bottom:343.266667pt;}
.ye9{bottom:344.386667pt;}
.y48{bottom:344.866667pt;}
.yd0{bottom:346.306667pt;}
.y6c{bottom:350.946667pt;}
.y9c{bottom:351.746667pt;}
.yc4{bottom:356.386667pt;}
.y1c{bottom:357.346667pt;}
.y7d{bottom:360.066667pt;}
.ye8{bottom:362.786667pt;}
.y47{bottom:363.266667pt;}
.ycf{bottom:364.706667pt;}
.y6b{bottom:370.146667pt;}
.y9b{bottom:370.786667pt;}
.y1b{bottom:371.906667pt;}
.ybb{bottom:375.426667pt;}
.y7c{bottom:377.026667pt;}
.ye7{bottom:381.186667pt;}
.y46{bottom:381.666667pt;}
.yce{bottom:383.106667pt;}
.y1a{bottom:386.626667pt;}
.y6a{bottom:389.186667pt;}
.y9a{bottom:389.826667pt;}
.y7b{bottom:390.626667pt;}
.ye6{bottom:399.586667pt;}
.y45{bottom:400.066667pt;}
.y19{bottom:401.213333pt;}
.ycd{bottom:401.533333pt;}
.y69{bottom:408.253333pt;}
.y99{bottom:408.893333pt;}
.y18{bottom:415.613333pt;}
.ye5{bottom:418.013333pt;}
.y44{bottom:418.493333pt;}
.ycc{bottom:419.933333pt;}
.y68{bottom:427.293333pt;}
.y98{bottom:427.933333pt;}
.y17{bottom:430.973333pt;}
.ye4{bottom:436.413333pt;}
.y43{bottom:436.893333pt;}
.ycb{bottom:438.173333pt;}
.y16{bottom:446.333333pt;}
.y97{bottom:446.973333pt;}
.ye3{bottom:454.813333pt;}
.y42{bottom:455.293333pt;}
.y7a{bottom:461.373333pt;}
.y15{bottom:461.533333pt;}
.y67{bottom:465.373333pt;}
.y96{bottom:466.173333pt;}
.ye2{bottom:473.213333pt;}
.y41{bottom:473.693333pt;}
.y14{bottom:476.893333pt;}
.y66{bottom:484.573333pt;}
.y95{bottom:485.213333pt;}
.ye1{bottom:491.613333pt;}
.y40{bottom:492.093333pt;}
.y13{bottom:492.253333pt;}
.y65{bottom:503.613333pt;}
.y94{bottom:504.253333pt;}
.y12{bottom:507.613333pt;}
.ye0{bottom:510.013333pt;}
.y3f{bottom:510.333333pt;}
.y64{bottom:522.653333pt;}
.y11{bottom:522.973333pt;}
.y93{bottom:523.293333pt;}
.ydf{bottom:528.253333pt;}
.y3e{bottom:528.733333pt;}
.y10{bottom:538.333333pt;}
.y92{bottom:542.333333pt;}
.y62{bottom:542.973333pt;}
.yde{bottom:546.653333pt;}
.y3d{bottom:547.133333pt;}
.yf{bottom:553.533333pt;}
.yba{bottom:560.093333pt;}
.y91{bottom:561.373333pt;}
.ydd{bottom:565.053333pt;}
.y3c{bottom:565.533333pt;}
.ye{bottom:570.013333pt;}
.yaa{bottom:571.613333pt;}
.yb0{bottom:579.133333pt;}
.ydc{bottom:583.453333pt;}
.y3b{bottom:583.933333pt;}
.yd{bottom:586.813333pt;}
.yc{bottom:602.173333pt;}
.y3a{bottom:602.333333pt;}
.y61{bottom:608.453333pt;}
.yb{bottom:618.213333pt;}
.y39{bottom:620.773333pt;}
.y38{bottom:639.173333pt;}
.ya{bottom:650.853333pt;}
.y37{bottom:657.573333pt;}
.y36{bottom:675.973333pt;}
.y9{bottom:676.933333pt;}
.y35{bottom:694.373333pt;}
.ya9{bottom:700.453333pt;}
.y8{bottom:702.853333pt;}
.y34{bottom:712.773333pt;}
.y79{bottom:718.053333pt;}
.y7{bottom:728.933333pt;}
.y33{bottom:731.173333pt;}
.y32{bottom:749.573333pt;}
.y6{bottom:755.013333pt;}
.yaf{bottom:763.813333pt;}
.y31{bottom:767.973333pt;}
.y56{bottom:774.053333pt;}
.y5{bottom:781.093333pt;}
.y30{bottom:786.373333pt;}
.y1{bottom:813.920000pt;}
.y2f{bottom:814.880000pt;}
.y2e{bottom:832.800000pt;}
.hd{height:18.240000pt;}
.hc{height:18.400000pt;}
.he{height:18.432000pt;}
.h9{height:30.982500pt;}
.h10{height:38.085312pt;}
.hb{height:38.441250pt;}
.h3{height:43.031250pt;}
.h6{height:47.621250pt;}
.h8{height:47.742188pt;}
.h7{height:49.148438pt;}
.h12{height:52.750000pt;}
.hf{height:52.785000pt;}
.ha{height:56.843750pt;}
.h5{height:57.375000pt;}
.h2{height:58.563750pt;}
.h4{height:84.662813pt;}
.h11{height:184.026667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w7{width:72.960000pt;}
.wd{width:84.512000pt;}
.wc{width:84.672000pt;}
.wb{width:107.360000pt;}
.wa{width:107.392000pt;}
.w6{width:112.352000pt;}
.w5{width:148.066667pt;}
.w8{width:198.306667pt;}
.w9{width:198.626667pt;}
.w4{width:209.466667pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x2{left:85.151990pt;}
.x1b{left:87.391990pt;}
.x8{left:89.471990pt;}
.x1a{left:91.231990pt;}
.x25{left:93.791990pt;}
.x17{left:96.671990pt;}
.x29{left:103.711990pt;}
.x2a{left:109.151990pt;}
.x1c{left:112.191990pt;}
.x3{left:113.471990pt;}
.x24{left:133.151990pt;}
.x21{left:159.386667pt;}
.x12{left:188.706648pt;}
.xf{left:191.266657pt;}
.x13{left:194.146657pt;}
.x9{left:199.426648pt;}
.xa{left:204.866657pt;}
.x18{left:207.106657pt;}
.x10{left:221.026648pt;}
.x11{left:226.466657pt;}
.x14{left:264.226648pt;}
.x15{left:269.666657pt;}
.x2d{left:272.706657pt;}
.xc{left:295.906667pt;}
.x26{left:301.826667pt;}
.x2b{left:311.453314pt;}
.xe{left:321.373324pt;}
.x2c{left:322.333324pt;}
.x22{left:358.333333pt;}
.x27{left:387.133333pt;}
.x1d{left:389.693314pt;}
.x1e{left:395.133324pt;}
.x4{left:442.373314pt;}
.xd{left:444.613333pt;}
.x5{left:447.813324pt;}
.x28{left:472.453333pt;}
.x1{left:473.733324pt;}
.x16{left:524.293324pt;}
.x23{left:526.213314pt;}
.x1f{left:531.813314pt;}
.x20{left:537.253324pt;}
.x6{left:552.293314pt;}
.x7{left:557.759990pt;}
.x19{left:568.639990pt;}
}

