
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c269c4a6adce455c22838ad1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50ed6155ea9c3b4fcf63c9a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_b6d5fcb2237c23c08a05fc8c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_6e230d018b2757cfb9039cb2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6774bbcdb17daf9372eb4408.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_534bc1b9889cbb6f98725dc3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21111d3866e8a13869c48520.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_9e40d3e19b0c528b0ccb9431.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_362cd86ca3300ab4d4bfdd69.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_520b642782171ad3d4717862.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e6efc3ea4ec513d0f93cf9d.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_56274fb97cef83b8b913d01d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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:ffe;src:url('chunks/assets/font_e6c00ea1fd32dec327afeb34.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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:fff;src:url('chunks/assets/font_f38b2e2dd7d9bdc60630cd9f.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2eae101a3105d2b228edef44.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,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:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.181440px;}
.lsd{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.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;}
}
.ws13{word-spacing:-108.000000px;}
.ws3{word-spacing:-72.144000px;}
.ws1{word-spacing:-72.000000px;}
.ws12{word-spacing:-24.408000px;}
.ws14{word-spacing:-24.048000px;}
.ws2{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.016000px;}
.wsc{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.288000px;}
.wse{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.496000px;}
.wsd{word-spacing:-15.226440px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:419.900202px;}
._16{margin-left:-11.196000px;}
._17{margin-left:-2.591040px;}
._0{margin-left:-1.126080px;}
._2{width:1.187040px;}
._7{width:2.304000px;}
._8{width:3.722880px;}
._b{width:5.158080px;}
._9{width:6.480000px;}
._3{width:7.632000px;}
._4{width:8.856000px;}
._5{width:10.165920px;}
._a{width:11.304000px;}
._11{width:13.968000px;}
._10{width:15.072000px;}
._d{width:16.536000px;}
._c{width:19.440000px;}
._6{width:20.926080px;}
._e{width:30.528000px;}
._f{width:31.824000px;}
._14{width:144.912000px;}
._12{width:180.912000px;}
._13{width:194.400000px;}
._15{width:846.120000px;}
._18{width:847.848000px;}
._1{width:990.627360px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(46,46,46);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs6{font-size:84.006787px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:3.323677px;}
.y10d{bottom:3.323698px;}
.y10{bottom:4.500000px;}
.y111{bottom:26.895000px;}
.y10f{bottom:27.105000px;}
.y108{bottom:27.180000px;}
.yf{bottom:52.956000px;}
.ye{bottom:57.456000px;}
.y10a{bottom:108.606333px;}
.y42{bottom:116.136000px;}
.ybe{bottom:133.056000px;}
.y98{bottom:133.596000px;}
.y28{bottom:135.036000px;}
.yed{bottom:141.516000px;}
.y78{bottom:147.096000px;}
.y6b{bottom:151.050000px;}
.y41{bottom:157.530000px;}
.yb2{bottom:160.050000px;}
.y56{bottom:172.290000px;}
.y97{bottom:174.990000px;}
.y27{bottom:176.430000px;}
.y83{bottom:181.290000px;}
.yec{bottom:182.910000px;}
.yce{bottom:183.990000px;}
.y106{bottom:187.590000px;}
.ybd{bottom:189.390000px;}
.y77{bottom:189.930000px;}
.y6a{bottom:192.450000px;}
.y113{bottom:198.750000px;}
.y40{bottom:198.930000px;}
.yb1{bottom:210.450000px;}
.y55{bottom:213.690000px;}
.y26{bottom:217.830000px;}
.y82{bottom:222.690000px;}
.yeb{bottom:224.310000px;}
.y96{bottom:225.390000px;}
.y105{bottom:228.990000px;}
.y76{bottom:231.330000px;}
.y69{bottom:233.850000px;}
.ycd{bottom:234.390000px;}
.ybc{bottom:239.790000px;}
.y3f{bottom:240.330000px;}
.yb0{bottom:251.850000px;}
.y112{bottom:252.750000px;}
.y54{bottom:255.090000px;}
.y25{bottom:259.230000px;}
.y81{bottom:264.090000px;}
.y95{bottom:266.790000px;}
.y104{bottom:270.390000px;}
.y75{bottom:272.730000px;}
.y68{bottom:275.250000px;}
.ycc{bottom:275.790000px;}
.yea{bottom:280.875000px;}
.y3e{bottom:281.775000px;}
.y114{bottom:288.075000px;}
.ybb{bottom:290.235000px;}
.yaf{bottom:293.295000px;}
.y53{bottom:296.535000px;}
.y24{bottom:300.675000px;}
.y80{bottom:305.535000px;}
.y94{bottom:308.235000px;}
.y103{bottom:311.835000px;}
.y74{bottom:314.175000px;}
.y67{bottom:316.695000px;}
.ycb{bottom:317.235000px;}
.y3d{bottom:323.175000px;}
.yba{bottom:331.635000px;}
.yae{bottom:334.695000px;}
.ye9{bottom:337.215000px;}
.y52{bottom:337.935000px;}
.y23{bottom:342.075000px;}
.y7f{bottom:346.935000px;}
.y93{bottom:349.635000px;}
.y102{bottom:353.235000px;}
.y73{bottom:355.575000px;}
.y66{bottom:358.095000px;}
.yca{bottom:358.635000px;}
.y3c{bottom:364.575000px;}
.yad{bottom:376.095000px;}
.ye8{bottom:378.615000px;}
.y51{bottom:379.335000px;}
.yb9{bottom:382.035000px;}
.y22{bottom:383.475000px;}
.y7e{bottom:388.335000px;}
.y92{bottom:391.035000px;}
.y101{bottom:394.635000px;}
.y72{bottom:396.975000px;}
.yc9{bottom:400.035000px;}
.y3b{bottom:405.975000px;}
.y65{bottom:414.435000px;}
.yac{bottom:417.495000px;}
.ye7{bottom:420.015000px;}
.y50{bottom:420.735000px;}
.y21{bottom:424.875000px;}
.y7d{bottom:429.735000px;}
.y91{bottom:432.435000px;}
.y100{bottom:436.035000px;}
.y71{bottom:438.375000px;}
.y3a{bottom:447.375000px;}
.yc8{bottom:450.435000px;}
.y64{bottom:455.835000px;}
.yab{bottom:458.895000px;}
.ye6{bottom:461.415000px;}
.y4f{bottom:462.135000px;}
.y20{bottom:466.275000px;}
.y110{bottom:468.540000px;}
.y7c{bottom:471.135000px;}
.y90{bottom:473.835000px;}
.yff{bottom:477.435000px;}
.y70{bottom:479.775000px;}
.yb8{bottom:482.835000px;}
.y39{bottom:488.775000px;}
.yc7{bottom:491.835000px;}
.yaa{bottom:500.295000px;}
.ye5{bottom:502.815000px;}
.y1f{bottom:507.675000px;}
.y63{bottom:512.175000px;}
.y4e{bottom:512.535000px;}
.y8f{bottom:515.235000px;}
.yfe{bottom:518.835000px;}
.y6f{bottom:521.175000px;}
.y38{bottom:530.175000px;}
.y10c{bottom:532.155000px;}
.yc6{bottom:533.235000px;}
.yb7{bottom:542.235000px;}
.y1e{bottom:549.075000px;}
.ya9{bottom:550.695000px;}
.y4d{bottom:553.935000px;}
.ye4{bottom:559.155000px;}
.yfd{bottom:560.235000px;}
.y62{bottom:562.605000px;}
.y8e{bottom:565.665000px;}
.y37{bottom:571.605000px;}
.y9f{bottom:574.305000px;}
.yc5{bottom:574.665000px;}
.yb6{bottom:583.665000px;}
.yd7{bottom:589.065000px;}
.y4c{bottom:595.365000px;}
.y1d{bottom:599.505000px;}
.ya8{bottom:600.945000px;}
.yfc{bottom:601.665000px;}
.y61{bottom:604.005000px;}
.y8d{bottom:607.065000px;}
.yf6{bottom:613.005000px;}
.ye3{bottom:615.705000px;}
.yc4{bottom:616.065000px;}
.y9e{bottom:625.065000px;}
.y36{bottom:627.945000px;}
.yd6{bottom:630.465000px;}
.y4b{bottom:636.765000px;}
.yfb{bottom:643.065000px;}
.y60{bottom:645.405000px;}
.y8c{bottom:648.465000px;}
.y1c{bottom:649.905000px;}
.ya7{bottom:651.345000px;}
.yd{bottom:652.245000px;}
.yf5{bottom:654.405000px;}
.ye2{bottom:657.105000px;}
.yc3{bottom:657.465000px;}
.y9d{bottom:666.465000px;}
.y35{bottom:669.345000px;}
.yd5{bottom:671.865000px;}
.yc{bottom:675.645000px;}
.y4a{bottom:678.165000px;}
.y7b{bottom:679.425000px;}
.yfa{bottom:684.465000px;}
.y5f{bottom:686.805000px;}
.y8b{bottom:689.865000px;}
.ya6{bottom:692.745000px;}
.yf4{bottom:695.805000px;}
.y1b{bottom:695.985000px;}
.yb{bottom:696.345000px;}
.ye1{bottom:698.505000px;}
.yc2{bottom:698.865000px;}
.yb5{bottom:707.865000px;}
.y34{bottom:710.745000px;}
.yd4{bottom:713.265000px;}
.y9c{bottom:716.865000px;}
.ya{bottom:717.045000px;}
.y49{bottom:720.825000px;}
.yf9{bottom:725.865000px;}
.y5e{bottom:728.205000px;}
.y8a{bottom:731.265000px;}
.ya5{bottom:734.145000px;}
.y7a{bottom:737.205000px;}
.ye0{bottom:739.725000px;}
.yc1{bottom:740.265000px;}
.y1a{bottom:742.065000px;}
.yb4{bottom:749.265000px;}
.y33{bottom:752.145000px;}
.y9{bottom:752.325000px;}
.y10e{bottom:753.840000px;}
.y9b{bottom:758.265000px;}
.y48{bottom:763.665000px;}
.yf8{bottom:767.265000px;}
.y5d{bottom:769.605000px;}
.y89{bottom:772.665000px;}
.yf3{bottom:778.605000px;}
.yc0{bottom:781.665000px;}
.y6e{bottom:784.545000px;}
.y19{bottom:788.145000px;}
.y8{bottom:789.405000px;}
.y32{bottom:793.545000px;}
.ydf{bottom:796.245000px;}
.y9a{bottom:799.665000px;}
.yf7{bottom:808.665000px;}
.y5c{bottom:811.005000px;}
.yd3{bottom:814.065000px;}
.y47{bottom:820.005000px;}
.y88{bottom:823.065000px;}
.y109{bottom:823.305000px;}
.y7{bottom:823.785000px;}
.ya4{bottom:825.945000px;}
.ybf{bottom:832.065000px;}
.y18{bottom:834.045000px;}
.y31{bottom:834.945000px;}
.y6d{bottom:841.065000px;}
.y79{bottom:850.110000px;}
.y5b{bottom:852.450000px;}
.yde{bottom:852.630000px;}
.y6{bottom:858.210000px;}
.yf2{bottom:861.450000px;}
.yd2{bottom:864.510000px;}
.ya3{bottom:867.390000px;}
.y87{bottom:873.510000px;}
.y30{bottom:876.390000px;}
.y17{bottom:880.170000px;}
.y99{bottom:882.510000px;}
.y6c{bottom:891.510000px;}
.y5{bottom:892.410000px;}
.y5a{bottom:893.850000px;}
.ydd{bottom:894.030000px;}
.yf1{bottom:902.850000px;}
.yd1{bottom:905.910000px;}
.ya2{bottom:908.790000px;}
.y2f{bottom:917.790000px;}
.y86{bottom:923.910000px;}
.y4{bottom:927.330000px;}
.y46{bottom:932.910000px;}
.y16{bottom:933.090000px;}
.y59{bottom:935.250000px;}
.ydc{bottom:935.430000px;}
.yf0{bottom:944.250000px;}
.yd0{bottom:947.310000px;}
.ya1{bottom:950.190000px;}
.y3{bottom:956.490000px;}
.y2e{bottom:959.190000px;}
.y85{bottom:965.310000px;}
.y15{bottom:972.330000px;}
.y45{bottom:974.310000px;}
.ydb{bottom:976.830000px;}
.yef{bottom:985.650000px;}
.y58{bottom:991.590000px;}
.ycf{bottom:997.710000px;}
.y2d{bottom:1000.590000px;}
.y84{bottom:1006.710000px;}
.y14{bottom:1010.130000px;}
.y44{bottom:1015.710000px;}
.yda{bottom:1018.230000px;}
.yee{bottom:1027.050000px;}
.ya0{bottom:1032.990000px;}
.y2c{bottom:1041.990000px;}
.y57{bottom:1048.110000px;}
.y13{bottom:1049.370000px;}
.y43{bottom:1057.110000px;}
.yd9{bottom:1059.630000px;}
.y12{bottom:1080.510000px;}
.y2b{bottom:1083.390000px;}
.yb3{bottom:1089.510000px;}
.y107{bottom:1098.330000px;}
.y2a{bottom:1098.510000px;}
.yd8{bottom:1101.030000px;}
.y2{bottom:1107.330000px;}
.y11{bottom:1130.940000px;}
.y29{bottom:1139.940000px;}
.y1{bottom:1141.200000px;}
.h6{height:20.160000px;}
.h9{height:47.344922px;}
.hc{height:52.695866px;}
.h14{height:52.740000px;}
.h13{height:52.920000px;}
.hf{height:52.956000px;}
.he{height:64.546875px;}
.h2{height:65.884219px;}
.hb{height:70.628906px;}
.ha{height:70.664062px;}
.hd{height:71.613281px;}
.h7{height:72.562500px;}
.h8{height:74.704922px;}
.h4{height:75.093750px;}
.h5{height:84.898125px;}
.h12{height:87.616454px;}
.h3{height:87.859687px;}
.h10{height:107.419922px;}
.h11{height:176.390453px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:8.280000px;}
.w4{width:16.740000px;}
.w7{width:163.800000px;}
.w5{width:215.850000px;}
.w6{width:274.635000px;}
.w8{width:288.540000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.497239px;}
.xa{left:10.800000px;}
.x2{left:74.519987px;}
.x9{left:117.035987px;}
.x1{left:127.655987px;}
.xd{left:137.863465px;}
.xf{left:293.220000px;}
.x6{left:297.614987px;}
.xb{left:300.075000px;}
.x7{left:308.594987px;}
.x4{left:346.034987px;}
.xe{left:355.500000px;}
.x5{left:357.014987px;}
.x8{left:411.555000px;}
.x3{left:415.875000px;}
.x10{left:625.244987px;}
.x11{left:863.789987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.161280pt;}
.lsd{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ws13{word-spacing:-96.000000pt;}
.ws3{word-spacing:-64.128000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws12{word-spacing:-21.696000pt;}
.ws14{word-spacing:-21.376000pt;}
.ws2{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.792000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.552000pt;}
.wsd{word-spacing:-13.534613pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:373.244624pt;}
._16{margin-left:-9.952000pt;}
._17{margin-left:-2.303147pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.055147pt;}
._7{width:2.048000pt;}
._8{width:3.309227pt;}
._b{width:4.584960pt;}
._9{width:5.760000pt;}
._3{width:6.784000pt;}
._4{width:7.872000pt;}
._5{width:9.036373pt;}
._a{width:10.048000pt;}
._11{width:12.416000pt;}
._10{width:13.397333pt;}
._d{width:14.698667pt;}
._c{width:17.280000pt;}
._6{width:18.600960pt;}
._e{width:27.136000pt;}
._f{width:28.288000pt;}
._14{width:128.810667pt;}
._12{width:160.810667pt;}
._13{width:172.800000pt;}
._15{width:752.106667pt;}
._18{width:753.642667pt;}
._1{width:880.557653pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs6{font-size:74.672699pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:2.954380pt;}
.y10d{bottom:2.954398pt;}
.y10{bottom:4.000000pt;}
.y111{bottom:23.906667pt;}
.y10f{bottom:24.093333pt;}
.y108{bottom:24.160000pt;}
.yf{bottom:47.072000pt;}
.ye{bottom:51.072000pt;}
.y10a{bottom:96.538962pt;}
.y42{bottom:103.232000pt;}
.ybe{bottom:118.272000pt;}
.y98{bottom:118.752000pt;}
.y28{bottom:120.032000pt;}
.yed{bottom:125.792000pt;}
.y78{bottom:130.752000pt;}
.y6b{bottom:134.266667pt;}
.y41{bottom:140.026667pt;}
.yb2{bottom:142.266667pt;}
.y56{bottom:153.146667pt;}
.y97{bottom:155.546667pt;}
.y27{bottom:156.826667pt;}
.y83{bottom:161.146667pt;}
.yec{bottom:162.586667pt;}
.yce{bottom:163.546667pt;}
.y106{bottom:166.746667pt;}
.ybd{bottom:168.346667pt;}
.y77{bottom:168.826667pt;}
.y6a{bottom:171.066667pt;}
.y113{bottom:176.666667pt;}
.y40{bottom:176.826667pt;}
.yb1{bottom:187.066667pt;}
.y55{bottom:189.946667pt;}
.y26{bottom:193.626667pt;}
.y82{bottom:197.946667pt;}
.yeb{bottom:199.386667pt;}
.y96{bottom:200.346667pt;}
.y105{bottom:203.546667pt;}
.y76{bottom:205.626667pt;}
.y69{bottom:207.866667pt;}
.ycd{bottom:208.346667pt;}
.ybc{bottom:213.146667pt;}
.y3f{bottom:213.626667pt;}
.yb0{bottom:223.866667pt;}
.y112{bottom:224.666667pt;}
.y54{bottom:226.746667pt;}
.y25{bottom:230.426667pt;}
.y81{bottom:234.746667pt;}
.y95{bottom:237.146667pt;}
.y104{bottom:240.346667pt;}
.y75{bottom:242.426667pt;}
.y68{bottom:244.666667pt;}
.ycc{bottom:245.146667pt;}
.yea{bottom:249.666667pt;}
.y3e{bottom:250.466667pt;}
.y114{bottom:256.066667pt;}
.ybb{bottom:257.986667pt;}
.yaf{bottom:260.706667pt;}
.y53{bottom:263.586667pt;}
.y24{bottom:267.266667pt;}
.y80{bottom:271.586667pt;}
.y94{bottom:273.986667pt;}
.y103{bottom:277.186667pt;}
.y74{bottom:279.266667pt;}
.y67{bottom:281.506667pt;}
.ycb{bottom:281.986667pt;}
.y3d{bottom:287.266667pt;}
.yba{bottom:294.786667pt;}
.yae{bottom:297.506667pt;}
.ye9{bottom:299.746667pt;}
.y52{bottom:300.386667pt;}
.y23{bottom:304.066667pt;}
.y7f{bottom:308.386667pt;}
.y93{bottom:310.786667pt;}
.y102{bottom:313.986667pt;}
.y73{bottom:316.066667pt;}
.y66{bottom:318.306667pt;}
.yca{bottom:318.786667pt;}
.y3c{bottom:324.066667pt;}
.yad{bottom:334.306667pt;}
.ye8{bottom:336.546667pt;}
.y51{bottom:337.186667pt;}
.yb9{bottom:339.586667pt;}
.y22{bottom:340.866667pt;}
.y7e{bottom:345.186667pt;}
.y92{bottom:347.586667pt;}
.y101{bottom:350.786667pt;}
.y72{bottom:352.866667pt;}
.yc9{bottom:355.586667pt;}
.y3b{bottom:360.866667pt;}
.y65{bottom:368.386667pt;}
.yac{bottom:371.106667pt;}
.ye7{bottom:373.346667pt;}
.y50{bottom:373.986667pt;}
.y21{bottom:377.666667pt;}
.y7d{bottom:381.986667pt;}
.y91{bottom:384.386667pt;}
.y100{bottom:387.586667pt;}
.y71{bottom:389.666667pt;}
.y3a{bottom:397.666667pt;}
.yc8{bottom:400.386667pt;}
.y64{bottom:405.186667pt;}
.yab{bottom:407.906667pt;}
.ye6{bottom:410.146667pt;}
.y4f{bottom:410.786667pt;}
.y20{bottom:414.466667pt;}
.y110{bottom:416.480000pt;}
.y7c{bottom:418.786667pt;}
.y90{bottom:421.186667pt;}
.yff{bottom:424.386667pt;}
.y70{bottom:426.466667pt;}
.yb8{bottom:429.186667pt;}
.y39{bottom:434.466667pt;}
.yc7{bottom:437.186667pt;}
.yaa{bottom:444.706667pt;}
.ye5{bottom:446.946667pt;}
.y1f{bottom:451.266667pt;}
.y63{bottom:455.266667pt;}
.y4e{bottom:455.586667pt;}
.y8f{bottom:457.986667pt;}
.yfe{bottom:461.186667pt;}
.y6f{bottom:463.266667pt;}
.y38{bottom:471.266667pt;}
.y10c{bottom:473.026667pt;}
.yc6{bottom:473.986667pt;}
.yb7{bottom:481.986667pt;}
.y1e{bottom:488.066667pt;}
.ya9{bottom:489.506667pt;}
.y4d{bottom:492.386667pt;}
.ye4{bottom:497.026667pt;}
.yfd{bottom:497.986667pt;}
.y62{bottom:500.093333pt;}
.y8e{bottom:502.813333pt;}
.y37{bottom:508.093333pt;}
.y9f{bottom:510.493333pt;}
.yc5{bottom:510.813333pt;}
.yb6{bottom:518.813333pt;}
.yd7{bottom:523.613333pt;}
.y4c{bottom:529.213333pt;}
.y1d{bottom:532.893333pt;}
.ya8{bottom:534.173333pt;}
.yfc{bottom:534.813333pt;}
.y61{bottom:536.893333pt;}
.y8d{bottom:539.613333pt;}
.yf6{bottom:544.893333pt;}
.ye3{bottom:547.293333pt;}
.yc4{bottom:547.613333pt;}
.y9e{bottom:555.613333pt;}
.y36{bottom:558.173333pt;}
.yd6{bottom:560.413333pt;}
.y4b{bottom:566.013333pt;}
.yfb{bottom:571.613333pt;}
.y60{bottom:573.693333pt;}
.y8c{bottom:576.413333pt;}
.y1c{bottom:577.693333pt;}
.ya7{bottom:578.973333pt;}
.yd{bottom:579.773333pt;}
.yf5{bottom:581.693333pt;}
.ye2{bottom:584.093333pt;}
.yc3{bottom:584.413333pt;}
.y9d{bottom:592.413333pt;}
.y35{bottom:594.973333pt;}
.yd5{bottom:597.213333pt;}
.yc{bottom:600.573333pt;}
.y4a{bottom:602.813333pt;}
.y7b{bottom:603.933333pt;}
.yfa{bottom:608.413333pt;}
.y5f{bottom:610.493333pt;}
.y8b{bottom:613.213333pt;}
.ya6{bottom:615.773333pt;}
.yf4{bottom:618.493333pt;}
.y1b{bottom:618.653333pt;}
.yb{bottom:618.973333pt;}
.ye1{bottom:620.893333pt;}
.yc2{bottom:621.213333pt;}
.yb5{bottom:629.213333pt;}
.y34{bottom:631.773333pt;}
.yd4{bottom:634.013333pt;}
.y9c{bottom:637.213333pt;}
.ya{bottom:637.373333pt;}
.y49{bottom:640.733333pt;}
.yf9{bottom:645.213333pt;}
.y5e{bottom:647.293333pt;}
.y8a{bottom:650.013333pt;}
.ya5{bottom:652.573333pt;}
.y7a{bottom:655.293333pt;}
.ye0{bottom:657.533333pt;}
.yc1{bottom:658.013333pt;}
.y1a{bottom:659.613333pt;}
.yb4{bottom:666.013333pt;}
.y33{bottom:668.573333pt;}
.y9{bottom:668.733333pt;}
.y10e{bottom:670.080000pt;}
.y9b{bottom:674.013333pt;}
.y48{bottom:678.813333pt;}
.yf8{bottom:682.013333pt;}
.y5d{bottom:684.093333pt;}
.y89{bottom:686.813333pt;}
.yf3{bottom:692.093333pt;}
.yc0{bottom:694.813333pt;}
.y6e{bottom:697.373333pt;}
.y19{bottom:700.573333pt;}
.y8{bottom:701.693333pt;}
.y32{bottom:705.373333pt;}
.ydf{bottom:707.773333pt;}
.y9a{bottom:710.813333pt;}
.yf7{bottom:718.813333pt;}
.y5c{bottom:720.893333pt;}
.yd3{bottom:723.613333pt;}
.y47{bottom:728.893333pt;}
.y88{bottom:731.613333pt;}
.y109{bottom:731.826667pt;}
.y7{bottom:732.253333pt;}
.ya4{bottom:734.173333pt;}
.ybf{bottom:739.613333pt;}
.y18{bottom:741.373333pt;}
.y31{bottom:742.173333pt;}
.y6d{bottom:747.613333pt;}
.y79{bottom:755.653333pt;}
.y5b{bottom:757.733333pt;}
.yde{bottom:757.893333pt;}
.y6{bottom:762.853333pt;}
.yf2{bottom:765.733333pt;}
.yd2{bottom:768.453333pt;}
.ya3{bottom:771.013333pt;}
.y87{bottom:776.453333pt;}
.y30{bottom:779.013333pt;}
.y17{bottom:782.373333pt;}
.y99{bottom:784.453333pt;}
.y6c{bottom:792.453333pt;}
.y5{bottom:793.253333pt;}
.y5a{bottom:794.533333pt;}
.ydd{bottom:794.693333pt;}
.yf1{bottom:802.533333pt;}
.yd1{bottom:805.253333pt;}
.ya2{bottom:807.813333pt;}
.y2f{bottom:815.813333pt;}
.y86{bottom:821.253333pt;}
.y4{bottom:824.293333pt;}
.y46{bottom:829.253333pt;}
.y16{bottom:829.413333pt;}
.y59{bottom:831.333333pt;}
.ydc{bottom:831.493333pt;}
.yf0{bottom:839.333333pt;}
.yd0{bottom:842.053333pt;}
.ya1{bottom:844.613333pt;}
.y3{bottom:850.213333pt;}
.y2e{bottom:852.613333pt;}
.y85{bottom:858.053333pt;}
.y15{bottom:864.293333pt;}
.y45{bottom:866.053333pt;}
.ydb{bottom:868.293333pt;}
.yef{bottom:876.133333pt;}
.y58{bottom:881.413333pt;}
.ycf{bottom:886.853333pt;}
.y2d{bottom:889.413333pt;}
.y84{bottom:894.853333pt;}
.y14{bottom:897.893333pt;}
.y44{bottom:902.853333pt;}
.yda{bottom:905.093333pt;}
.yee{bottom:912.933333pt;}
.ya0{bottom:918.213333pt;}
.y2c{bottom:926.213333pt;}
.y57{bottom:931.653333pt;}
.y13{bottom:932.773333pt;}
.y43{bottom:939.653333pt;}
.yd9{bottom:941.893333pt;}
.y12{bottom:960.453333pt;}
.y2b{bottom:963.013333pt;}
.yb3{bottom:968.453333pt;}
.y107{bottom:976.293333pt;}
.y2a{bottom:976.453333pt;}
.yd8{bottom:978.693333pt;}
.y2{bottom:984.293333pt;}
.y11{bottom:1005.280000pt;}
.y29{bottom:1013.280000pt;}
.y1{bottom:1014.400000pt;}
.h6{height:17.920000pt;}
.h9{height:42.084375pt;}
.hc{height:46.840769pt;}
.h14{height:46.880000pt;}
.h13{height:47.040000pt;}
.hf{height:47.072000pt;}
.he{height:57.375000pt;}
.h2{height:58.563750pt;}
.hb{height:62.781250pt;}
.ha{height:62.812500pt;}
.hd{height:63.656250pt;}
.h7{height:64.500000pt;}
.h8{height:66.404375pt;}
.h4{height:66.750000pt;}
.h5{height:75.465000pt;}
.h12{height:77.881292pt;}
.h3{height:78.097500pt;}
.h10{height:95.484375pt;}
.h11{height:156.791514pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:7.360000pt;}
.w4{width:14.880000pt;}
.w7{width:145.600000pt;}
.w5{width:191.866667pt;}
.w6{width:244.120000pt;}
.w8{width:256.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.330879pt;}
.xa{left:9.600000pt;}
.x2{left:66.239988pt;}
.x9{left:104.031988pt;}
.x1{left:113.471988pt;}
.xd{left:122.545302pt;}
.xf{left:260.640000pt;}
.x6{left:264.546655pt;}
.xb{left:266.733333pt;}
.x7{left:274.306655pt;}
.x4{left:307.586655pt;}
.xe{left:316.000000pt;}
.x5{left:317.346655pt;}
.x8{left:365.826667pt;}
.x3{left:369.666667pt;}
.x10{left:555.773322pt;}
.x11{left:767.813322pt;}
}

