
    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_207cdf709de7f6e9a393de35.woff')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_be3c040fec4c26be1da3ea25.woff')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_38444feadbef89f97dfc31cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_90a514a51b4ac5b2515b7806.woff')format("woff");}.ff4{font-family:ff4;line-height:1.159668;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_44b3c4c09b1e221aa59c6632.woff')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_8435dbad56652083794249bc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_474be71a23a6b8fabd956a0c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_1e4a709d3dcdef3bec6a9ba7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.368000px;}
.ls28{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.714000px;}
.ls21{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.351600px;}
.ls30{letter-spacing:-0.348600px;}
.ls7{letter-spacing:-0.345600px;}
.ls1e{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012240px;}
.ls0{letter-spacing:0.012960px;}
.ls26{letter-spacing:0.023040px;}
.ls2f{letter-spacing:0.104400px;}
.lsf{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.149760px;}
.ls27{letter-spacing:0.184200px;}
.ls24{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.223800px;}
.ls4{letter-spacing:0.283800px;}
.ls12{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls2d{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.732960px;}
.ls2b{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.942000px;}
.ls15{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.656000px;}
.ls16{letter-spacing:1.728000px;}
.ls14{letter-spacing:3.096000px;}
.ls25{letter-spacing:3.251520px;}
.ls23{letter-spacing:4.512000px;}
.ls10{letter-spacing:7.416000px;}
.ls1d{letter-spacing:8.136000px;}
.ls1c{letter-spacing:9.576000px;}
.lse{letter-spacing:10.296000px;}
.ls2a{letter-spacing:11.016000px;}
.ls29{letter-spacing:12.456000px;}
.ls1b{letter-spacing:14.616000px;}
.ls1a{letter-spacing:28.320000px;}
.ls1f{letter-spacing:34.560000px;}
.ls2c{letter-spacing:54.864000px;}
.ls2{letter-spacing:1160.369760px;}
.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;}
}
.wsd{word-spacing:-21.672000px;}
.wsc{word-spacing:-20.952000px;}
.ws19{word-spacing:-20.808000px;}
.ws14{word-spacing:-20.664000px;}
.ws10{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.304000px;}
.ws15{word-spacing:-20.160000px;}
.wsb{word-spacing:-20.088000px;}
.ws11{word-spacing:-19.944000px;}
.wse{word-spacing:-19.800000px;}
.ws9{word-spacing:-19.728000px;}
.ws12{word-spacing:-19.656000px;}
.ws7{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.296000px;}
.wsa{word-spacing:-19.080000px;}
.ws18{word-spacing:-19.008000px;}
.wsf{word-spacing:-18.576000px;}
.ws17{word-spacing:-18.532680px;}
.ws16{word-spacing:-18.371520px;}
.ws1a{word-spacing:-18.348480px;}
.ws5{word-spacing:-17.495520px;}
.ws4{word-spacing:-16.939320px;}
.ws0{word-spacing:-16.837320px;}
.ws1{word-spacing:-16.566480px;}
.ws3{word-spacing:-16.553520px;}
.ws2{word-spacing:-13.277280px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-9.035520px;}
._29{margin-left:-2.195280px;}
._4{margin-left:-1.146960px;}
._0{width:1.195200px;}
._7{width:2.244720px;}
._13{width:3.443040px;}
._d{width:4.498320px;}
._12{width:5.617440px;}
._a{width:7.575120px;}
._9{width:8.588640px;}
._10{width:9.690480px;}
._5{width:10.697040px;}
._6{width:11.765280px;}
._11{width:13.027680px;}
._e{width:14.103360px;}
._f{width:15.376080px;}
._22{width:16.968000px;}
._1b{width:18.226800px;}
._8{width:19.422000px;}
._c{width:20.848080px;}
._b{width:21.872160px;}
._18{width:23.366160px;}
._1c{width:24.680880px;}
._1f{width:26.295120px;}
._20{width:27.358560px;}
._24{width:28.868880px;}
._23{width:30.024000px;}
._21{width:31.300800px;}
._17{width:32.486160px;}
._16{width:33.585120px;}
._28{width:34.814880px;}
._2a{width:36.445440px;}
._1e{width:38.164800px;}
._2b{width:39.257760px;}
._1d{width:40.338000px;}
._1a{width:41.712480px;}
._35{width:43.035600px;}
._2f{width:44.215920px;}
._2e{width:45.424080px;}
._14{width:46.433520px;}
._38{width:47.604720px;}
._15{width:49.008480px;}
._3d{width:50.075280px;}
._27{width:51.120000px;}
._26{width:52.194960px;}
._2d{width:53.496000px;}
._2c{width:54.864000px;}
._34{width:56.376000px;}
._42{width:57.429360px;}
._33{width:58.480080px;}
._3c{width:59.523840px;}
._31{width:60.528000px;}
._41{width:61.601760px;}
._3a{width:62.776080px;}
._39{width:64.368000px;}
._3b{width:66.340800px;}
._32{width:67.896000px;}
._3f{width:69.546960px;}
._40{width:70.768560px;}
._30{width:72.432000px;}
._25{width:74.795760px;}
._36{width:77.016000px;}
._37{width:79.163760px;}
._3e{width:85.392000px;}
._1{width:752.378880px;}
._2{width:927.486480px;}
._19{width:1169.442480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs2{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.520000px;}
.y3c{bottom:2.700000px;}
.ydc{bottom:13.140000px;}
.yd5{bottom:16.020000px;}
.ydb{bottom:33.660000px;}
.yd4{bottom:37.080000px;}
.y6{bottom:53.496000px;}
.yda{bottom:53.820000px;}
.y4{bottom:54.936000px;}
.yd3{bottom:58.320000px;}
.y3{bottom:71.136000px;}
.yd9{bottom:74.160000px;}
.yd2{bottom:79.410000px;}
.y2{bottom:81.936000px;}
.yd8{bottom:94.320000px;}
.yd1{bottom:100.650000px;}
.yd0{bottom:121.710000px;}
.yd7{bottom:123.840000px;}
.ycf{bottom:142.950000px;}
.yc0{bottom:145.476000px;}
.y9a{bottom:145.836000px;}
.y39{bottom:148.896000px;}
.y6d{bottom:155.010000px;}
.yce{bottom:164.010000px;}
.ya3{bottom:166.350000px;}
.y38{bottom:167.250000px;}
.y99{bottom:167.790000px;}
.y6c{bottom:176.970000px;}
.ybf{bottom:183.630000px;}
.ycd{bottom:185.250000px;}
.y37{bottom:185.610000px;}
.y98{bottom:189.930000px;}
.y6b{bottom:199.110000px;}
.y36{bottom:203.970000px;}
.ya2{bottom:204.690000px;}
.ycc{bottom:206.310000px;}
.y97{bottom:211.890000px;}
.y6a{bottom:221.070000px;}
.ybe{bottom:221.790000px;}
.y35{bottom:222.330000px;}
.ycb{bottom:227.550000px;}
.y96{bottom:234.030000px;}
.y34{bottom:240.690000px;}
.ya1{bottom:243.030000px;}
.y69{bottom:243.210000px;}
.yca{bottom:248.610000px;}
.y95{bottom:256.170000px;}
.y33{bottom:259.230000px;}
.ybd{bottom:259.950000px;}
.y68{bottom:265.350000px;}
.yc9{bottom:269.850000px;}
.y32{bottom:277.635000px;}
.y94{bottom:278.175000px;}
.y9b{bottom:278.895000px;}
.ya0{bottom:281.235000px;}
.y67{bottom:287.355000px;}
.yc8{bottom:290.910000px;}
.y31{bottom:295.995000px;}
.ybc{bottom:298.155000px;}
.y93{bottom:300.315000px;}
.y66{bottom:309.495000px;}
.yc7{bottom:312.150000px;}
.yd6{bottom:314.175000px;}
.y30{bottom:314.355000px;}
.y9f{bottom:319.575000px;}
.y92{bottom:322.275000px;}
.y65{bottom:331.455000px;}
.y2f{bottom:332.715000px;}
.yc6{bottom:333.210000px;}
.ybb{bottom:336.315000px;}
.y91{bottom:344.415000px;}
.y2e{bottom:351.075000px;}
.yc5{bottom:351.615000px;}
.y64{bottom:353.595000px;}
.y9e{bottom:357.735000px;}
.y90{bottom:366.555000px;}
.y2d{bottom:369.615000px;}
.yc4{bottom:369.975000px;}
.yba{bottom:374.475000px;}
.y63{bottom:375.735000px;}
.y2c{bottom:387.975000px;}
.y8f{bottom:388.515000px;}
.yc3{bottom:388.875000px;}
.y9d{bottom:396.075000px;}
.y62{bottom:397.695000px;}
.y2b{bottom:406.335000px;}
.y8e{bottom:410.655000px;}
.yb9{bottom:412.635000px;}
.y61{bottom:419.835000px;}
.y2a{bottom:424.695000px;}
.yc2{bottom:427.395000px;}
.y8d{bottom:432.615000px;}
.y9c{bottom:434.235000px;}
.y60{bottom:441.975000px;}
.y29{bottom:443.055000px;}
.yb8{bottom:450.795000px;}
.y8c{bottom:454.755000px;}
.y28{bottom:461.415000px;}
.y5f{bottom:463.935000px;}
.y8b{bottom:476.895000px;}
.y27{bottom:479.955000px;}
.y5e{bottom:486.075000px;}
.yc1{bottom:488.775000px;}
.yb7{bottom:488.955000px;}
.y26{bottom:498.315000px;}
.y8a{bottom:498.855000px;}
.y5d{bottom:508.035000px;}
.y25{bottom:516.675000px;}
.y89{bottom:520.995000px;}
.yb6{bottom:527.115000px;}
.y5c{bottom:530.175000px;}
.y24{bottom:535.035000px;}
.y88{bottom:542.955000px;}
.y5b{bottom:552.315000px;}
.y23{bottom:553.395000px;}
.y87{bottom:565.125000px;}
.yb5{bottom:565.305000px;}
.y22{bottom:571.785000px;}
.y5a{bottom:574.305000px;}
.yb4{bottom:585.645000px;}
.y86{bottom:587.265000px;}
.y21{bottom:590.325000px;}
.y59{bottom:596.445000px;}
.yb3{bottom:604.905000px;}
.y20{bottom:608.685000px;}
.y85{bottom:609.225000px;}
.y58{bottom:615.165000px;}
.y57{bottom:620.385000px;}
.yea{bottom:623.445000px;}
.y1f{bottom:627.045000px;}
.y84{bottom:631.365000px;}
.y56{bottom:641.805000px;}
.y1e{bottom:645.405000px;}
.yb2{bottom:648.465000px;}
.y83{bottom:653.325000px;}
.y55{bottom:660.165000px;}
.ye9{bottom:661.605000px;}
.y1d{bottom:663.765000px;}
.yb1{bottom:667.365000px;}
.y82{bottom:675.465000px;}
.y54{bottom:678.525000px;}
.y1c{bottom:682.305000px;}
.y53{bottom:696.885000px;}
.y81{bottom:697.605000px;}
.ye8{bottom:699.765000px;}
.y1b{bottom:700.665000px;}
.yb0{bottom:701.385000px;}
.y52{bottom:715.245000px;}
.y1a{bottom:719.025000px;}
.y80{bottom:719.565000px;}
.yaf{bottom:733.605000px;}
.y51{bottom:733.785000px;}
.y19{bottom:737.385000px;}
.ye7{bottom:737.925000px;}
.y7f{bottom:741.705000px;}
.y50{bottom:752.145000px;}
.y18{bottom:755.745000px;}
.y7e{bottom:763.845000px;}
.yae{bottom:765.825000px;}
.y4f{bottom:770.505000px;}
.y17{bottom:774.105000px;}
.ye6{bottom:776.085000px;}
.y7d{bottom:785.805000px;}
.y4e{bottom:788.865000px;}
.y16{bottom:793.185000px;}
.yad{bottom:798.045000px;}
.y4d{bottom:807.225000px;}
.y7c{bottom:807.945000px;}
.ye5{bottom:814.245000px;}
.y15{bottom:815.325000px;}
.y4c{bottom:825.585000px;}
.y7b{bottom:829.905000px;}
.yac{bottom:830.445000px;}
.y14{bottom:836.745000px;}
.y4b{bottom:844.170000px;}
.y7a{bottom:852.090000px;}
.ye4{bottom:852.450000px;}
.y13{bottom:855.150000px;}
.y4a{bottom:862.530000px;}
.yab{bottom:862.710000px;}
.y12{bottom:873.510000px;}
.y79{bottom:874.230000px;}
.y49{bottom:880.890000px;}
.ye3{bottom:890.610000px;}
.y11{bottom:892.590000px;}
.yaa{bottom:894.930000px;}
.y78{bottom:896.190000px;}
.y48{bottom:899.250000px;}
.y10{bottom:914.550000px;}
.y47{bottom:917.610000px;}
.y77{bottom:918.330000px;}
.ya9{bottom:927.150000px;}
.ye2{bottom:928.770000px;}
.yf{bottom:936.150000px;}
.y76{bottom:940.290000px;}
.y46{bottom:954.510000px;}
.ye{bottom:954.870000px;}
.y75{bottom:962.430000px;}
.ya8{bottom:965.490000px;}
.ye1{bottom:966.930000px;}
.y45{bottom:972.870000px;}
.yd{bottom:975.030000px;}
.y74{bottom:984.570000px;}
.y44{bottom:991.230000px;}
.yc{bottom:995.550000px;}
.ya7{bottom:1003.830000px;}
.ye0{bottom:1005.090000px;}
.y73{bottom:1006.530000px;}
.y43{bottom:1009.590000px;}
.yb{bottom:1017.690000px;}
.y42{bottom:1027.950000px;}
.y72{bottom:1028.670000px;}
.ya{bottom:1039.650000px;}
.ya6{bottom:1041.990000px;}
.ydf{bottom:1043.250000px;}
.y41{bottom:1046.490000px;}
.y71{bottom:1050.630000px;}
.y9{bottom:1062.330000px;}
.y40{bottom:1064.850000px;}
.y70{bottom:1072.770000px;}
.ya5{bottom:1080.330000px;}
.yde{bottom:1081.410000px;}
.y3f{bottom:1083.210000px;}
.y8{bottom:1088.070000px;}
.y6f{bottom:1094.910000px;}
.y3e{bottom:1101.570000px;}
.y7{bottom:1113.810000px;}
.y6e{bottom:1116.870000px;}
.ya4{bottom:1118.490000px;}
.ydd{bottom:1119.570000px;}
.y3d{bottom:1119.930000px;}
.y3b{bottom:1157.400000px;}
.y3a{bottom:1175.940000px;}
.y1{bottom:1194.480000px;}
.h7{height:3.864375px;}
.he{height:4.494375px;}
.hf{height:5.560313px;}
.h5{height:14.580000px;}
.hd{height:14.760000px;}
.h4{height:23.595469px;}
.h6{height:37.640391px;}
.hc{height:44.440312px;}
.h2{height:46.629141px;}
.h3{height:51.685312px;}
.ha{height:56.179688px;}
.hb{height:57.688242px;}
.h12{height:63.943594px;}
.h9{height:69.503906px;}
.h10{height:70.664062px;}
.h11{height:74.004654px;}
.h8{height:81.319570px;}
.h14{height:142.200000px;}
.h13{height:445.935000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.100000px;}
.w3{width:138.096000px;}
.w5{width:138.276000px;}
.w4{width:358.095000px;}
.w7{width:595.905000px;}
.w6{width:596.625000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x14{left:9.180000px;}
.x1a{left:10.800000px;}
.x10{left:16.380000px;}
.x12{left:17.640000px;}
.x3{left:119.556000px;}
.x1{left:127.656000px;}
.x7{left:141.516000px;}
.xf{left:152.130000px;}
.xa{left:160.770000px;}
.x15{left:180.750000px;}
.x8{left:187.410000px;}
.x16{left:189.210000px;}
.x19{left:195.330000px;}
.x17{left:207.930000px;}
.xb{left:225.570000px;}
.x9{left:228.270000px;}
.x18{left:234.750000px;}
.x5{left:244.650000px;}
.x11{left:277.230000px;}
.x6{left:382.755000px;}
.x13{left:415.515000px;}
.x2{left:446.475000px;}
.xe{left:452.955000px;}
.x1b{left:463.215000px;}
.x1c{left:468.075000px;}
.xd{left:644.685000px;}
.xc{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.216000pt;}
.ls28{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.634667pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.312533pt;}
.ls30{letter-spacing:-0.309867pt;}
.ls7{letter-spacing:-0.307200pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010880pt;}
.ls0{letter-spacing:0.011520pt;}
.ls26{letter-spacing:0.020480pt;}
.ls2f{letter-spacing:0.092800pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls27{letter-spacing:0.163733pt;}
.ls24{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls4{letter-spacing:0.252267pt;}
.ls12{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.651520pt;}
.ls2b{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.837333pt;}
.ls15{letter-spacing:0.896000pt;}
.ls22{letter-spacing:1.472000pt;}
.ls16{letter-spacing:1.536000pt;}
.ls14{letter-spacing:2.752000pt;}
.ls25{letter-spacing:2.890240pt;}
.ls23{letter-spacing:4.010667pt;}
.ls10{letter-spacing:6.592000pt;}
.ls1d{letter-spacing:7.232000pt;}
.ls1c{letter-spacing:8.512000pt;}
.lse{letter-spacing:9.152000pt;}
.ls2a{letter-spacing:9.792000pt;}
.ls29{letter-spacing:11.072000pt;}
.ls1b{letter-spacing:12.992000pt;}
.ls1a{letter-spacing:25.173333pt;}
.ls1f{letter-spacing:30.720000pt;}
.ls2c{letter-spacing:48.768000pt;}
.ls2{letter-spacing:1031.439787pt;}
.wsd{word-spacing:-19.264000pt;}
.wsc{word-spacing:-18.624000pt;}
.ws19{word-spacing:-18.496000pt;}
.ws14{word-spacing:-18.368000pt;}
.ws10{word-spacing:-18.176000pt;}
.ws8{word-spacing:-18.048000pt;}
.ws15{word-spacing:-17.920000pt;}
.wsb{word-spacing:-17.856000pt;}
.ws11{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.600000pt;}
.ws9{word-spacing:-17.536000pt;}
.ws12{word-spacing:-17.472000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.152000pt;}
.wsa{word-spacing:-16.960000pt;}
.ws18{word-spacing:-16.896000pt;}
.wsf{word-spacing:-16.512000pt;}
.ws17{word-spacing:-16.473493pt;}
.ws16{word-spacing:-16.330240pt;}
.ws1a{word-spacing:-16.309760pt;}
.ws5{word-spacing:-15.551573pt;}
.ws4{word-spacing:-15.057173pt;}
.ws0{word-spacing:-14.966507pt;}
.ws1{word-spacing:-14.725760pt;}
.ws3{word-spacing:-14.714240pt;}
.ws2{word-spacing:-11.802027pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-8.031573pt;}
._29{margin-left:-1.951360pt;}
._4{margin-left:-1.019520pt;}
._0{width:1.062400pt;}
._7{width:1.995307pt;}
._13{width:3.060480pt;}
._d{width:3.998507pt;}
._12{width:4.993280pt;}
._a{width:6.733440pt;}
._9{width:7.634347pt;}
._10{width:8.613760pt;}
._5{width:9.508480pt;}
._6{width:10.458027pt;}
._11{width:11.580160pt;}
._e{width:12.536320pt;}
._f{width:13.667627pt;}
._22{width:15.082667pt;}
._1b{width:16.201600pt;}
._8{width:17.264000pt;}
._c{width:18.531627pt;}
._b{width:19.441920pt;}
._18{width:20.769920pt;}
._1c{width:21.938560pt;}
._1f{width:23.373440pt;}
._20{width:24.318720pt;}
._24{width:25.661227pt;}
._23{width:26.688000pt;}
._21{width:27.822933pt;}
._17{width:28.876587pt;}
._16{width:29.853440pt;}
._28{width:30.946560pt;}
._2a{width:32.395947pt;}
._1e{width:33.924267pt;}
._2b{width:34.895787pt;}
._1d{width:35.856000pt;}
._1a{width:37.077760pt;}
._35{width:38.253867pt;}
._2f{width:39.303040pt;}
._2e{width:40.376960pt;}
._14{width:41.274240pt;}
._38{width:42.315307pt;}
._15{width:43.563093pt;}
._3d{width:44.511360pt;}
._27{width:45.440000pt;}
._26{width:46.395520pt;}
._2d{width:47.552000pt;}
._2c{width:48.768000pt;}
._34{width:50.112000pt;}
._42{width:51.048320pt;}
._33{width:51.982293pt;}
._3c{width:52.910080pt;}
._31{width:53.802667pt;}
._41{width:54.757120pt;}
._3a{width:55.800960pt;}
._39{width:57.216000pt;}
._3b{width:58.969600pt;}
._32{width:60.352000pt;}
._3f{width:61.819520pt;}
._40{width:62.905387pt;}
._30{width:64.384000pt;}
._25{width:66.485120pt;}
._36{width:68.458667pt;}
._37{width:70.367787pt;}
._3e{width:75.904000pt;}
._1{width:668.781227pt;}
._2{width:824.432427pt;}
._19{width:1039.504427pt;}
.fs4{font-size:5.120000pt;}
.fs2{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.240000pt;}
.y3c{bottom:2.400000pt;}
.ydc{bottom:11.680000pt;}
.yd5{bottom:14.240000pt;}
.ydb{bottom:29.920000pt;}
.yd4{bottom:32.960000pt;}
.y6{bottom:47.552000pt;}
.yda{bottom:47.840000pt;}
.y4{bottom:48.832000pt;}
.yd3{bottom:51.840000pt;}
.y3{bottom:63.232000pt;}
.yd9{bottom:65.920000pt;}
.yd2{bottom:70.586667pt;}
.y2{bottom:72.832000pt;}
.yd8{bottom:83.840000pt;}
.yd1{bottom:89.466667pt;}
.yd0{bottom:108.186667pt;}
.yd7{bottom:110.080000pt;}
.ycf{bottom:127.066667pt;}
.yc0{bottom:129.312000pt;}
.y9a{bottom:129.632000pt;}
.y39{bottom:132.352000pt;}
.y6d{bottom:137.786667pt;}
.yce{bottom:145.786667pt;}
.ya3{bottom:147.866667pt;}
.y38{bottom:148.666667pt;}
.y99{bottom:149.146667pt;}
.y6c{bottom:157.306667pt;}
.ybf{bottom:163.226667pt;}
.ycd{bottom:164.666667pt;}
.y37{bottom:164.986667pt;}
.y98{bottom:168.826667pt;}
.y6b{bottom:176.986667pt;}
.y36{bottom:181.306667pt;}
.ya2{bottom:181.946667pt;}
.ycc{bottom:183.386667pt;}
.y97{bottom:188.346667pt;}
.y6a{bottom:196.506667pt;}
.ybe{bottom:197.146667pt;}
.y35{bottom:197.626667pt;}
.ycb{bottom:202.266667pt;}
.y96{bottom:208.026667pt;}
.y34{bottom:213.946667pt;}
.ya1{bottom:216.026667pt;}
.y69{bottom:216.186667pt;}
.yca{bottom:220.986667pt;}
.y95{bottom:227.706667pt;}
.y33{bottom:230.426667pt;}
.ybd{bottom:231.066667pt;}
.y68{bottom:235.866667pt;}
.yc9{bottom:239.866667pt;}
.y32{bottom:246.786667pt;}
.y94{bottom:247.266667pt;}
.y9b{bottom:247.906667pt;}
.ya0{bottom:249.986667pt;}
.y67{bottom:255.426667pt;}
.yc8{bottom:258.586667pt;}
.y31{bottom:263.106667pt;}
.ybc{bottom:265.026667pt;}
.y93{bottom:266.946667pt;}
.y66{bottom:275.106667pt;}
.yc7{bottom:277.466667pt;}
.yd6{bottom:279.266667pt;}
.y30{bottom:279.426667pt;}
.y9f{bottom:284.066667pt;}
.y92{bottom:286.466667pt;}
.y65{bottom:294.626667pt;}
.y2f{bottom:295.746667pt;}
.yc6{bottom:296.186667pt;}
.ybb{bottom:298.946667pt;}
.y91{bottom:306.146667pt;}
.y2e{bottom:312.066667pt;}
.yc5{bottom:312.546667pt;}
.y64{bottom:314.306667pt;}
.y9e{bottom:317.986667pt;}
.y90{bottom:325.826667pt;}
.y2d{bottom:328.546667pt;}
.yc4{bottom:328.866667pt;}
.yba{bottom:332.866667pt;}
.y63{bottom:333.986667pt;}
.y2c{bottom:344.866667pt;}
.y8f{bottom:345.346667pt;}
.yc3{bottom:345.666667pt;}
.y9d{bottom:352.066667pt;}
.y62{bottom:353.506667pt;}
.y2b{bottom:361.186667pt;}
.y8e{bottom:365.026667pt;}
.yb9{bottom:366.786667pt;}
.y61{bottom:373.186667pt;}
.y2a{bottom:377.506667pt;}
.yc2{bottom:379.906667pt;}
.y8d{bottom:384.546667pt;}
.y9c{bottom:385.986667pt;}
.y60{bottom:392.866667pt;}
.y29{bottom:393.826667pt;}
.yb8{bottom:400.706667pt;}
.y8c{bottom:404.226667pt;}
.y28{bottom:410.146667pt;}
.y5f{bottom:412.386667pt;}
.y8b{bottom:423.906667pt;}
.y27{bottom:426.626667pt;}
.y5e{bottom:432.066667pt;}
.yc1{bottom:434.466667pt;}
.yb7{bottom:434.626667pt;}
.y26{bottom:442.946667pt;}
.y8a{bottom:443.426667pt;}
.y5d{bottom:451.586667pt;}
.y25{bottom:459.266667pt;}
.y89{bottom:463.106667pt;}
.yb6{bottom:468.546667pt;}
.y5c{bottom:471.266667pt;}
.y24{bottom:475.586667pt;}
.y88{bottom:482.626667pt;}
.y5b{bottom:490.946667pt;}
.y23{bottom:491.906667pt;}
.y87{bottom:502.333333pt;}
.yb5{bottom:502.493333pt;}
.y22{bottom:508.253333pt;}
.y5a{bottom:510.493333pt;}
.yb4{bottom:520.573333pt;}
.y86{bottom:522.013333pt;}
.y21{bottom:524.733333pt;}
.y59{bottom:530.173333pt;}
.yb3{bottom:537.693333pt;}
.y20{bottom:541.053333pt;}
.y85{bottom:541.533333pt;}
.y58{bottom:546.813333pt;}
.y57{bottom:551.453333pt;}
.yea{bottom:554.173333pt;}
.y1f{bottom:557.373333pt;}
.y84{bottom:561.213333pt;}
.y56{bottom:570.493333pt;}
.y1e{bottom:573.693333pt;}
.yb2{bottom:576.413333pt;}
.y83{bottom:580.733333pt;}
.y55{bottom:586.813333pt;}
.ye9{bottom:588.093333pt;}
.y1d{bottom:590.013333pt;}
.yb1{bottom:593.213333pt;}
.y82{bottom:600.413333pt;}
.y54{bottom:603.133333pt;}
.y1c{bottom:606.493333pt;}
.y53{bottom:619.453333pt;}
.y81{bottom:620.093333pt;}
.ye8{bottom:622.013333pt;}
.y1b{bottom:622.813333pt;}
.yb0{bottom:623.453333pt;}
.y52{bottom:635.773333pt;}
.y1a{bottom:639.133333pt;}
.y80{bottom:639.613333pt;}
.yaf{bottom:652.093333pt;}
.y51{bottom:652.253333pt;}
.y19{bottom:655.453333pt;}
.ye7{bottom:655.933333pt;}
.y7f{bottom:659.293333pt;}
.y50{bottom:668.573333pt;}
.y18{bottom:671.773333pt;}
.y7e{bottom:678.973333pt;}
.yae{bottom:680.733333pt;}
.y4f{bottom:684.893333pt;}
.y17{bottom:688.093333pt;}
.ye6{bottom:689.853333pt;}
.y7d{bottom:698.493333pt;}
.y4e{bottom:701.213333pt;}
.y16{bottom:705.053333pt;}
.yad{bottom:709.373333pt;}
.y4d{bottom:717.533333pt;}
.y7c{bottom:718.173333pt;}
.ye5{bottom:723.773333pt;}
.y15{bottom:724.733333pt;}
.y4c{bottom:733.853333pt;}
.y7b{bottom:737.693333pt;}
.yac{bottom:738.173333pt;}
.y14{bottom:743.773333pt;}
.y4b{bottom:750.373333pt;}
.y7a{bottom:757.413333pt;}
.ye4{bottom:757.733333pt;}
.y13{bottom:760.133333pt;}
.y4a{bottom:766.693333pt;}
.yab{bottom:766.853333pt;}
.y12{bottom:776.453333pt;}
.y79{bottom:777.093333pt;}
.y49{bottom:783.013333pt;}
.ye3{bottom:791.653333pt;}
.y11{bottom:793.413333pt;}
.yaa{bottom:795.493333pt;}
.y78{bottom:796.613333pt;}
.y48{bottom:799.333333pt;}
.y10{bottom:812.933333pt;}
.y47{bottom:815.653333pt;}
.y77{bottom:816.293333pt;}
.ya9{bottom:824.133333pt;}
.ye2{bottom:825.573333pt;}
.yf{bottom:832.133333pt;}
.y76{bottom:835.813333pt;}
.y46{bottom:848.453333pt;}
.ye{bottom:848.773333pt;}
.y75{bottom:855.493333pt;}
.ya8{bottom:858.213333pt;}
.ye1{bottom:859.493333pt;}
.y45{bottom:864.773333pt;}
.yd{bottom:866.693333pt;}
.y74{bottom:875.173333pt;}
.y44{bottom:881.093333pt;}
.yc{bottom:884.933333pt;}
.ya7{bottom:892.293333pt;}
.ye0{bottom:893.413333pt;}
.y73{bottom:894.693333pt;}
.y43{bottom:897.413333pt;}
.yb{bottom:904.613333pt;}
.y42{bottom:913.733333pt;}
.y72{bottom:914.373333pt;}
.ya{bottom:924.133333pt;}
.ya6{bottom:926.213333pt;}
.ydf{bottom:927.333333pt;}
.y41{bottom:930.213333pt;}
.y71{bottom:933.893333pt;}
.y9{bottom:944.293333pt;}
.y40{bottom:946.533333pt;}
.y70{bottom:953.573333pt;}
.ya5{bottom:960.293333pt;}
.yde{bottom:961.253333pt;}
.y3f{bottom:962.853333pt;}
.y8{bottom:967.173333pt;}
.y6f{bottom:973.253333pt;}
.y3e{bottom:979.173333pt;}
.y7{bottom:990.053333pt;}
.y6e{bottom:992.773333pt;}
.ya4{bottom:994.213333pt;}
.ydd{bottom:995.173333pt;}
.y3d{bottom:995.493333pt;}
.y3b{bottom:1028.800000pt;}
.y3a{bottom:1045.280000pt;}
.y1{bottom:1061.760000pt;}
.h7{height:3.435000pt;}
.he{height:3.995000pt;}
.hf{height:4.942500pt;}
.h5{height:12.960000pt;}
.hd{height:13.120000pt;}
.h4{height:20.973750pt;}
.h6{height:33.458125pt;}
.hc{height:39.502500pt;}
.h2{height:41.448125pt;}
.h3{height:45.942500pt;}
.ha{height:49.937500pt;}
.hb{height:51.278437pt;}
.h12{height:56.838750pt;}
.h9{height:61.781250pt;}
.h10{height:62.812500pt;}
.h11{height:65.781915pt;}
.h8{height:72.284062pt;}
.h14{height:126.400000pt;}
.h13{height:396.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.200000pt;}
.w3{width:122.752000pt;}
.w5{width:122.912000pt;}
.w4{width:318.306667pt;}
.w7{width:529.693333pt;}
.w6{width:530.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x14{left:8.160000pt;}
.x1a{left:9.600000pt;}
.x10{left:14.560000pt;}
.x12{left:15.680000pt;}
.x3{left:106.272000pt;}
.x1{left:113.472000pt;}
.x7{left:125.792000pt;}
.xf{left:135.226667pt;}
.xa{left:142.906667pt;}
.x15{left:160.666667pt;}
.x8{left:166.586667pt;}
.x16{left:168.186667pt;}
.x19{left:173.626667pt;}
.x17{left:184.826667pt;}
.xb{left:200.506667pt;}
.x9{left:202.906667pt;}
.x18{left:208.666667pt;}
.x5{left:217.466667pt;}
.x11{left:246.426667pt;}
.x6{left:340.226667pt;}
.x13{left:369.346667pt;}
.x2{left:396.866667pt;}
.xe{left:402.626667pt;}
.x1b{left:411.746667pt;}
.x1c{left:416.066667pt;}
.xd{left:573.053333pt;}
.xc{left:680.453333pt;}
}

