
    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_3ba1f8779d1250dc1ee7d9cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1249db07274e27608294375a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_35d4afb0ac0f87ad576348d5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997070;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_d1244ce09d8d3ab41a5423ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1bc3adb3d4563221eb024508.woff')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_679522ae1698394ff6447150.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_783fbc02f8ef424f4285a0f8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_50d0b3d0dada921fd0c8e2f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_ea0b18455cf77bc6cd303a75.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls12{letter-spacing:-0.014400px;}
.lsa{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.021600px;}
.ls16{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.043200px;}
.lsf{letter-spacing:0.050400px;}
.ls2d{letter-spacing:0.246240px;}
.ls4{letter-spacing:0.274080px;}
.ls14{letter-spacing:0.274680px;}
.ls15{letter-spacing:0.275616px;}
.ls0{letter-spacing:0.278640px;}
.ls2{letter-spacing:0.308160px;}
.ls26{letter-spacing:0.322200px;}
.ls24{letter-spacing:0.322800px;}
.ls29{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.399600px;}
.ls13{letter-spacing:0.400200px;}
.ls9{letter-spacing:0.401760px;}
.lsc{letter-spacing:0.446688px;}
.lsd{letter-spacing:0.484704px;}
.ls19{letter-spacing:0.549600px;}
.ls2b{letter-spacing:0.602640px;}
.lse{letter-spacing:0.608256px;}
.ls28{letter-spacing:0.667440px;}
.ls1{letter-spacing:0.676800px;}
.lsb{letter-spacing:0.680400px;}
.ls20{letter-spacing:0.725760px;}
.ls2a{letter-spacing:0.797040px;}
.ls8{letter-spacing:0.874800px;}
.ls2e{letter-spacing:0.920160px;}
.ls2c{letter-spacing:1.030320px;}
.ls1f{letter-spacing:1.440000px;}
.ls1e{letter-spacing:4.611000px;}
.ls27{letter-spacing:5.144400px;}
.ls6{letter-spacing:9.873600px;}
.ls1c{letter-spacing:20.706600px;}
.ls7{letter-spacing:21.616200px;}
.ls1d{letter-spacing:22.369200px;}
.ls1b{letter-spacing:22.389600px;}
.ls5{letter-spacing:22.567200px;}
.ls22{letter-spacing:34.942200px;}
.ls17{letter-spacing:39.214800px;}
.ls18{letter-spacing:39.215400px;}
.ls1a{letter-spacing:59.628000px;}
.ls23{letter-spacing:117.404400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-20.052000px;}
.ws8{word-spacing:-20.030400px;}
.wsb{word-spacing:-20.016000px;}
.wsc{word-spacing:-20.001600px;}
.ws10{word-spacing:-18.934560px;}
.ws2{word-spacing:-18.694800px;}
.ws11{word-spacing:-18.338400px;}
.ws1{word-spacing:-18.014400px;}
.wsd{word-spacing:-13.486176px;}
.ws7{word-spacing:-0.703296px;}
.ws6{word-spacing:-0.579744px;}
.ws0{word-spacing:-0.343440px;}
.ws4{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.064800px;}
.wsf{word-spacing:-0.057600px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:28.065312px;}
._22{margin-left:-230.760000px;}
._b{margin-left:-13.386000px;}
._21{margin-left:-2.127600px;}
._0{margin-left:-1.075560px;}
._2{width:1.045440px;}
._6{width:3.001560px;}
._5{width:4.377600px;}
._8{width:5.760000px;}
._7{width:6.875280px;}
._d{width:8.654400px;}
._10{width:9.783960px;}
._f{width:11.599200px;}
._1d{width:12.660960px;}
._1{width:13.662000px;}
._a{width:15.516000px;}
._9{width:17.416800px;}
._4{width:18.482400px;}
._12{width:21.225600px;}
._3{width:22.536000px;}
._1c{width:23.551200px;}
._c{width:24.688800px;}
._e{width:25.869600px;}
._14{width:27.410400px;}
._17{width:28.461960px;}
._13{width:29.563200px;}
._1b{width:31.262400px;}
._11{width:33.163200px;}
._1a{width:35.765160px;}
._16{width:37.260000px;}
._18{width:39.218400px;}
._1f{width:45.943200px;}
._20{width:46.997880px;}
._19{width:54.849600px;}
._15{width:64.051200px;}
._1e{width:843.983760px;}
.fc4{color:rgb(54,95,145);}
.fc2{color:rgb(0,128,0);}
.fc5{color:rgb(180,180,180);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(52,52,52);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.000000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:47.520000px;}
.fs6{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.040000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.960000px;}
.y8{bottom:4.680000px;}
.y10e{bottom:7.500000px;}
.y3{bottom:12.734985px;}
.y2{bottom:16.919850px;}
.y7{bottom:26.640000px;}
.y9{bottom:43.605075px;}
.y6{bottom:77.580060px;}
.y7f{bottom:119.205075px;}
.y2c{bottom:124.245075px;}
.y4c{bottom:124.605075px;}
.yd4{bottom:126.405075px;}
.yc8{bottom:132.525075px;}
.y9b{bottom:144.765015px;}
.y7e{bottom:153.765015px;}
.y2b{bottom:155.205015px;}
.y4b{bottom:155.565015px;}
.yd3{bottom:157.725015px;}
.yc7{bottom:163.485015px;}
.y9a{bottom:179.325015px;}
.y10d{bottom:185.805015px;}
.y2a{bottom:186.525015px;}
.y7d{bottom:188.325015px;}
.yd2{bottom:188.685015px;}
.y66{bottom:190.125015px;}
.yc6{bottom:194.445015px;}
.y10c{bottom:205.245015px;}
.y99{bottom:213.885015px;}
.y29{bottom:217.485015px;}
.y7c{bottom:219.645015px;}
.y65{bottom:221.085015px;}
.y10b{bottom:223.965015px;}
.yc5{bottom:225.405015px;}
.y10a{bottom:243.045015px;}
.y98{bottom:245.205015px;}
.yde{bottom:247.005015px;}
.y28{bottom:248.445015px;}
.y7b{bottom:250.605015px;}
.y64{bottom:252.405015px;}
.yc4{bottom:256.725015px;}
.y109{bottom:262.125015px;}
.y97{bottom:276.165015px;}
.y27{bottom:279.405015px;}
.ydd{bottom:279.765015px;}
.y108{bottom:281.205015px;}
.y7a{bottom:281.565015px;}
.yd1{bottom:281.925015px;}
.y4a{bottom:283.365015px;}
.yc3{bottom:287.685015px;}
.y107{bottom:299.925015px;}
.y96{bottom:307.125015px;}
.y49{bottom:307.485015px;}
.yb4{bottom:310.365015px;}
.y79{bottom:312.525015px;}
.yd0{bottom:312.885015px;}
.y26{bottom:314.325015px;}
.yc2{bottom:318.645015px;}
.y106{bottom:319.005015px;}
.y105{bottom:338.085015px;}
.yb3{bottom:341.325015px;}
.y95{bottom:341.685015px;}
.y48{bottom:342.045015px;}
.y78{bottom:343.845015px;}
.y25{bottom:345.285015px;}
.ycf{bottom:347.445015px;}
.yc1{bottom:349.605015px;}
.y104{bottom:356.805015px;}
.y24{bottom:374.805015px;}
.yb2{bottom:375.885015px;}
.y63{bottom:376.245015px;}
.y47{bottom:376.965015px;}
.yce{bottom:380.565015px;}
.yc0{bottom:380.925015px;}
.y103{bottom:394.965015px;}
.y23{bottom:404.685015px;}
.y77{bottom:405.765015px;}
.yb1{bottom:406.845015px;}
.y62{bottom:407.565015px;}
.y46{bottom:411.525015px;}
.ybf{bottom:411.885015px;}
.y102{bottom:413.685015px;}
.y22{bottom:425.205015px;}
.y101{bottom:432.765015px;}
.y76{bottom:436.725015px;}
.yb0{bottom:437.805015px;}
.y94{bottom:438.525015px;}
.y61{bottom:442.125165px;}
.ybe{bottom:442.845015px;}
.y21{bottom:446.085015px;}
.y100{bottom:451.845015px;}
.y75{bottom:468.045165px;}
.y93{bottom:469.485015px;}
.y20{bottom:470.205015px;}
.yff{bottom:470.925015px;}
.yaf{bottom:472.725015px;}
.ybd{bottom:473.805015px;}
.y60{bottom:476.685015px;}
.y45{bottom:477.045165px;}
.yfe{bottom:489.645015px;}
.y1f{bottom:494.685015px;}
.y74{bottom:499.005015px;}
.y92{bottom:500.445015px;}
.ybc{bottom:505.125015px;}
.yae{bottom:507.285015px;}
.y5f{bottom:507.645015px;}
.y44{bottom:508.365015px;}
.yfd{bottom:508.725015px;}
.y1e{bottom:518.445015px;}
.yfc{bottom:527.805015px;}
.y73{bottom:529.965015px;}
.y91{bottom:531.765015px;}
.ybb{bottom:536.085015px;}
.y5e{bottom:538.965015px;}
.y43{bottom:539.325015px;}
.y1d{bottom:539.685015px;}
.yad{bottom:541.845015px;}
.yfb{bottom:546.525015px;}
.y1c{bottom:560.565015px;}
.y90{bottom:562.725015px;}
.y72{bottom:564.525015px;}
.yfa{bottom:565.605015px;}
.ydc{bottom:566.325015px;}
.yba{bottom:567.045015px;}
.y5d{bottom:569.925015px;}
.y42{bottom:570.285015px;}
.yac{bottom:576.765015px;}
.y1b{bottom:581.085015px;}
.yf9{bottom:584.685015px;}
.y8f{bottom:593.685015px;}
.yb9{bottom:598.005015px;}
.y71{bottom:599.085015px;}
.y5c{bottom:600.885015px;}
.y41{bottom:601.245015px;}
.yf8{bottom:603.765015px;}
.y1a{bottom:605.565015px;}
.yab{bottom:607.725015px;}
.yf7{bottom:622.485015px;}
.y8e{bottom:624.645015px;}
.y19{bottom:626.085015px;}
.yb8{bottom:629.325015px;}
.y5b{bottom:631.845015px;}
.y40{bottom:632.565015px;}
.y70{bottom:634.005015px;}
.ydb{bottom:635.445015px;}
.yaa{bottom:638.685015px;}
.yf6{bottom:641.565015px;}
.y18{bottom:646.965015px;}
.y8d{bottom:655.965015px;}
.yb7{bottom:660.285015px;}
.yf5{bottom:660.645015px;}
.y5a{bottom:663.165015px;}
.y3f{bottom:663.525015px;}
.y6f{bottom:668.565015px;}
.ya9{bottom:669.645015px;}
.yda{bottom:670.365015px;}
.y17{bottom:671.085015px;}
.yf4{bottom:679.365015px;}
.y8c{bottom:686.925015px;}
.y16{bottom:691.965015px;}
.y59{bottom:694.125015px;}
.y3e{bottom:694.485015px;}
.yb6{bottom:694.845015px;}
.yf3{bottom:698.445015px;}
.ya8{bottom:700.965015px;}
.yd9{bottom:701.325015px;}
.y6e{bottom:703.125015px;}
.y15{bottom:712.485015px;}
.yf2{bottom:717.525015px;}
.y8b{bottom:717.885015px;}
.y58{bottom:725.085015px;}
.y3d{bottom:725.445015px;}
.yb5{bottom:727.965015px;}
.yd8{bottom:732.285015px;}
.ya7{bottom:733.005015px;}
.yf1{bottom:736.245015px;}
.y14{bottom:736.965015px;}
.y6d{bottom:738.045015px;}
.y8a{bottom:748.845015px;}
.yf0{bottom:755.325015px;}
.y57{bottom:756.045015px;}
.y13{bottom:757.485015px;}
.y3c{bottom:760.005015px;}
.yd7{bottom:763.245015px;}
.ya6{bottom:763.965015px;}
.y6c{bottom:769.005015px;}
.yef{bottom:774.405015px;}
.y12{bottom:778.365015px;}
.y89{bottom:779.805015px;}
.y56{bottom:787.005015px;}
.yee{bottom:793.485015px;}
.yd6{bottom:794.565015px;}
.y3b{bottom:794.925015px;}
.ya5{bottom:795.285165px;}
.y6b{bottom:799.965015px;}
.yed{bottom:812.205015px;}
.y11{bottom:812.925015px;}
.y88{bottom:814.725015px;}
.y55{bottom:821.925015px;}
.yd5{bottom:825.525015px;}
.ya4{bottom:827.325015px;}
.y3a{bottom:829.485015px;}
.y6a{bottom:830.925015px;}
.yec{bottom:831.285165px;}
.y10{bottom:843.885015px;}
.y87{bottom:849.285165px;}
.yeb{bottom:850.365015px;}
.y54{bottom:856.485015px;}
.ya3{bottom:858.645015px;}
.ycd{bottom:862.245015px;}
.y39{bottom:864.045015px;}
.y69{bottom:865.485015px;}
.yea{bottom:869.085015px;}
.y86{bottom:880.245015px;}
.yf{bottom:881.325015px;}
.y53{bottom:887.445165px;}
.ye9{bottom:888.165015px;}
.ya2{bottom:889.605165px;}
.ycc{bottom:893.205015px;}
.y38{bottom:895.365015px;}
.y68{bottom:900.405015px;}
.ye8{bottom:907.245015px;}
.ye{bottom:910.485015px;}
.y85{bottom:911.565015px;}
.y52{bottom:918.765015px;}
.ya1{bottom:920.565015px;}
.ycb{bottom:924.165015px;}
.ye7{bottom:925.965015px;}
.y37{bottom:929.925015px;}
.y67{bottom:931.365015px;}
.y84{bottom:942.525015px;}
.yd{bottom:945.045015px;}
.y51{bottom:949.725015px;}
.ya0{bottom:951.525015px;}
.yca{bottom:955.125165px;}
.y36{bottom:962.325015px;}
.ye6{bottom:964.125165px;}
.y83{bottom:973.485015px;}
.yc{bottom:978.165015px;}
.y50{bottom:980.685015px;}
.y9f{bottom:982.845015px;}
.ye5{bottom:983.205015px;}
.yc9{bottom:989.685015px;}
.y35{bottom:993.645015px;}
.ye4{bottom:1001.925015px;}
.y82{bottom:1004.445165px;}
.yb{bottom:1011.645015px;}
.y9e{bottom:1013.805015px;}
.ya{bottom:1019.565015px;}
.ye3{bottom:1021.005015px;}
.y34{bottom:1024.605015px;}
.y81{bottom:1035.405015px;}
.ye2{bottom:1040.085015px;}
.y4f{bottom:1042.965015px;}
.y9d{bottom:1048.365015px;}
.y33{bottom:1055.565015px;}
.ye1{bottom:1058.805015px;}
.y80{bottom:1070.325015px;}
.y4e{bottom:1073.925015px;}
.ye0{bottom:1077.885015px;}
.y9c{bottom:1082.925015px;}
.y32{bottom:1086.525015px;}
.ydf{bottom:1096.965015px;}
.y4d{bottom:1104.885015px;}
.y31{bottom:1117.485015px;}
.y5{bottom:1125.765015px;}
.y30{bottom:1138.365015px;}
.y4{bottom:1146.645015px;}
.y2f{bottom:1159.605015px;}
.y1{bottom:1177.020150px;}
.y2d{bottom:1189.980000px;}
.hf{height:19.079955px;}
.h8{height:23.994141px;}
.h15{height:25.031250px;}
.h2{height:32.039985px;}
.hd{height:43.040391px;}
.h14{height:43.189453px;}
.h6{height:43.920000px;}
.h3{height:47.239453px;}
.h5{height:47.988281px;}
.hc{height:52.488281px;}
.h13{height:58.503516px;}
.h7{height:59.378906px;}
.he{height:65.003906px;}
.h12{height:67.761666px;}
.h10{height:67.762266px;}
.h11{height:67.762866px;}
.hb{height:76.022578px;}
.ha{height:78.380156px;}
.h9{height:89.068359px;}
.h4{height:1237.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:37.080000px;}
.w5{width:38.159955px;}
.w4{width:613.080000px;}
.w8{width:614.520000px;}
.w6{width:633.240000px;}
.w2{width:633.960000px;}
.w3{width:867.465000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.399850px;}
.x9{left:6.840000px;}
.xc{left:8.640060px;}
.x3{left:12.735000px;}
.xb{left:32.399850px;}
.x12{left:75.000000px;}
.x6{left:110.299050px;}
.x4{left:115.560060px;}
.x5{left:119.655000px;}
.x1{left:128.295000px;}
.xe{left:142.560000px;}
.x11{left:147.704550px;}
.xd{left:159.975000px;}
.xf{left:169.560000px;}
.x10{left:217.661550px;}
.x7{left:303.605700px;}
.x8{left:736.335000px;}
.xa{left:752.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls12{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.019200pt;}
.ls16{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.038400pt;}
.lsf{letter-spacing:0.044800pt;}
.ls2d{letter-spacing:0.218880pt;}
.ls4{letter-spacing:0.243627pt;}
.ls14{letter-spacing:0.244160pt;}
.ls15{letter-spacing:0.244992pt;}
.ls0{letter-spacing:0.247680pt;}
.ls2{letter-spacing:0.273920pt;}
.ls26{letter-spacing:0.286400pt;}
.ls24{letter-spacing:0.286933pt;}
.ls29{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.355200pt;}
.ls13{letter-spacing:0.355733pt;}
.ls9{letter-spacing:0.357120pt;}
.lsc{letter-spacing:0.397056pt;}
.lsd{letter-spacing:0.430848pt;}
.ls19{letter-spacing:0.488533pt;}
.ls2b{letter-spacing:0.535680pt;}
.lse{letter-spacing:0.540672pt;}
.ls28{letter-spacing:0.593280pt;}
.ls1{letter-spacing:0.601600pt;}
.lsb{letter-spacing:0.604800pt;}
.ls20{letter-spacing:0.645120pt;}
.ls2a{letter-spacing:0.708480pt;}
.ls8{letter-spacing:0.777600pt;}
.ls2e{letter-spacing:0.817920pt;}
.ls2c{letter-spacing:0.915840pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:4.098667pt;}
.ls27{letter-spacing:4.572800pt;}
.ls6{letter-spacing:8.776533pt;}
.ls1c{letter-spacing:18.405867pt;}
.ls7{letter-spacing:19.214400pt;}
.ls1d{letter-spacing:19.883733pt;}
.ls1b{letter-spacing:19.901867pt;}
.ls5{letter-spacing:20.059733pt;}
.ls22{letter-spacing:31.059733pt;}
.ls17{letter-spacing:34.857600pt;}
.ls18{letter-spacing:34.858133pt;}
.ls1a{letter-spacing:53.002667pt;}
.ls23{letter-spacing:104.359467pt;}
.wse{word-spacing:-17.824000pt;}
.ws8{word-spacing:-17.804800pt;}
.wsb{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.779200pt;}
.ws10{word-spacing:-16.830720pt;}
.ws2{word-spacing:-16.617600pt;}
.ws11{word-spacing:-16.300800pt;}
.ws1{word-spacing:-16.012800pt;}
.wsd{word-spacing:-11.987712pt;}
.ws7{word-spacing:-0.625152pt;}
.ws6{word-spacing:-0.515328pt;}
.ws0{word-spacing:-0.305280pt;}
.ws4{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.057600pt;}
.wsf{word-spacing:-0.051200pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:24.946944pt;}
._22{margin-left:-205.120000pt;}
._b{margin-left:-11.898667pt;}
._21{margin-left:-1.891200pt;}
._0{margin-left:-0.956053pt;}
._2{width:0.929280pt;}
._6{width:2.668053pt;}
._5{width:3.891200pt;}
._8{width:5.120000pt;}
._7{width:6.111360pt;}
._d{width:7.692800pt;}
._10{width:8.696853pt;}
._f{width:10.310400pt;}
._1d{width:11.254187pt;}
._1{width:12.144000pt;}
._a{width:13.792000pt;}
._9{width:15.481600pt;}
._4{width:16.428800pt;}
._12{width:18.867200pt;}
._3{width:20.032000pt;}
._1c{width:20.934400pt;}
._c{width:21.945600pt;}
._e{width:22.995200pt;}
._14{width:24.364800pt;}
._17{width:25.299520pt;}
._13{width:26.278400pt;}
._1b{width:27.788800pt;}
._11{width:29.478400pt;}
._1a{width:31.791253pt;}
._16{width:33.120000pt;}
._18{width:34.860800pt;}
._1f{width:40.838400pt;}
._20{width:41.775893pt;}
._19{width:48.755200pt;}
._15{width:56.934400pt;}
._1e{width:750.207787pt;}
.fs7{font-size:21.333333pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:42.240000pt;}
.fs6{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:84.480000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.520000pt;}
.y8{bottom:4.160000pt;}
.y10e{bottom:6.666667pt;}
.y3{bottom:11.319987pt;}
.y2{bottom:15.039867pt;}
.y7{bottom:23.680000pt;}
.y9{bottom:38.760067pt;}
.y6{bottom:68.960053pt;}
.y7f{bottom:105.960067pt;}
.y2c{bottom:110.440067pt;}
.y4c{bottom:110.760067pt;}
.yd4{bottom:112.360067pt;}
.yc8{bottom:117.800067pt;}
.y9b{bottom:128.680013pt;}
.y7e{bottom:136.680013pt;}
.y2b{bottom:137.960013pt;}
.y4b{bottom:138.280013pt;}
.yd3{bottom:140.200013pt;}
.yc7{bottom:145.320013pt;}
.y9a{bottom:159.400013pt;}
.y10d{bottom:165.160013pt;}
.y2a{bottom:165.800013pt;}
.y7d{bottom:167.400013pt;}
.yd2{bottom:167.720013pt;}
.y66{bottom:169.000013pt;}
.yc6{bottom:172.840013pt;}
.y10c{bottom:182.440013pt;}
.y99{bottom:190.120013pt;}
.y29{bottom:193.320013pt;}
.y7c{bottom:195.240013pt;}
.y65{bottom:196.520013pt;}
.y10b{bottom:199.080013pt;}
.yc5{bottom:200.360013pt;}
.y10a{bottom:216.040013pt;}
.y98{bottom:217.960013pt;}
.yde{bottom:219.560013pt;}
.y28{bottom:220.840013pt;}
.y7b{bottom:222.760013pt;}
.y64{bottom:224.360013pt;}
.yc4{bottom:228.200013pt;}
.y109{bottom:233.000013pt;}
.y97{bottom:245.480013pt;}
.y27{bottom:248.360013pt;}
.ydd{bottom:248.680013pt;}
.y108{bottom:249.960013pt;}
.y7a{bottom:250.280013pt;}
.yd1{bottom:250.600013pt;}
.y4a{bottom:251.880013pt;}
.yc3{bottom:255.720013pt;}
.y107{bottom:266.600013pt;}
.y96{bottom:273.000013pt;}
.y49{bottom:273.320013pt;}
.yb4{bottom:275.880013pt;}
.y79{bottom:277.800013pt;}
.yd0{bottom:278.120013pt;}
.y26{bottom:279.400013pt;}
.yc2{bottom:283.240013pt;}
.y106{bottom:283.560013pt;}
.y105{bottom:300.520013pt;}
.yb3{bottom:303.400013pt;}
.y95{bottom:303.720013pt;}
.y48{bottom:304.040013pt;}
.y78{bottom:305.640013pt;}
.y25{bottom:306.920013pt;}
.ycf{bottom:308.840013pt;}
.yc1{bottom:310.760013pt;}
.y104{bottom:317.160013pt;}
.y24{bottom:333.160013pt;}
.yb2{bottom:334.120013pt;}
.y63{bottom:334.440013pt;}
.y47{bottom:335.080013pt;}
.yce{bottom:338.280013pt;}
.yc0{bottom:338.600013pt;}
.y103{bottom:351.080013pt;}
.y23{bottom:359.720013pt;}
.y77{bottom:360.680013pt;}
.yb1{bottom:361.640013pt;}
.y62{bottom:362.280013pt;}
.y46{bottom:365.800013pt;}
.ybf{bottom:366.120013pt;}
.y102{bottom:367.720013pt;}
.y22{bottom:377.960013pt;}
.y101{bottom:384.680013pt;}
.y76{bottom:388.200013pt;}
.yb0{bottom:389.160013pt;}
.y94{bottom:389.800013pt;}
.y61{bottom:393.000147pt;}
.ybe{bottom:393.640013pt;}
.y21{bottom:396.520013pt;}
.y100{bottom:401.640013pt;}
.y75{bottom:416.040147pt;}
.y93{bottom:417.320013pt;}
.y20{bottom:417.960013pt;}
.yff{bottom:418.600013pt;}
.yaf{bottom:420.200013pt;}
.ybd{bottom:421.160013pt;}
.y60{bottom:423.720013pt;}
.y45{bottom:424.040147pt;}
.yfe{bottom:435.240013pt;}
.y1f{bottom:439.720013pt;}
.y74{bottom:443.560013pt;}
.y92{bottom:444.840013pt;}
.ybc{bottom:449.000013pt;}
.yae{bottom:450.920013pt;}
.y5f{bottom:451.240013pt;}
.y44{bottom:451.880013pt;}
.yfd{bottom:452.200013pt;}
.y1e{bottom:460.840013pt;}
.yfc{bottom:469.160013pt;}
.y73{bottom:471.080013pt;}
.y91{bottom:472.680013pt;}
.ybb{bottom:476.520013pt;}
.y5e{bottom:479.080013pt;}
.y43{bottom:479.400013pt;}
.y1d{bottom:479.720013pt;}
.yad{bottom:481.640013pt;}
.yfb{bottom:485.800013pt;}
.y1c{bottom:498.280013pt;}
.y90{bottom:500.200013pt;}
.y72{bottom:501.800013pt;}
.yfa{bottom:502.760013pt;}
.ydc{bottom:503.400013pt;}
.yba{bottom:504.040013pt;}
.y5d{bottom:506.600013pt;}
.y42{bottom:506.920013pt;}
.yac{bottom:512.680013pt;}
.y1b{bottom:516.520013pt;}
.yf9{bottom:519.720013pt;}
.y8f{bottom:527.720013pt;}
.yb9{bottom:531.560013pt;}
.y71{bottom:532.520013pt;}
.y5c{bottom:534.120013pt;}
.y41{bottom:534.440013pt;}
.yf8{bottom:536.680013pt;}
.y1a{bottom:538.280013pt;}
.yab{bottom:540.200013pt;}
.yf7{bottom:553.320013pt;}
.y8e{bottom:555.240013pt;}
.y19{bottom:556.520013pt;}
.yb8{bottom:559.400013pt;}
.y5b{bottom:561.640013pt;}
.y40{bottom:562.280013pt;}
.y70{bottom:563.560013pt;}
.ydb{bottom:564.840013pt;}
.yaa{bottom:567.720013pt;}
.yf6{bottom:570.280013pt;}
.y18{bottom:575.080013pt;}
.y8d{bottom:583.080013pt;}
.yb7{bottom:586.920013pt;}
.yf5{bottom:587.240013pt;}
.y5a{bottom:589.480013pt;}
.y3f{bottom:589.800013pt;}
.y6f{bottom:594.280013pt;}
.ya9{bottom:595.240013pt;}
.yda{bottom:595.880013pt;}
.y17{bottom:596.520013pt;}
.yf4{bottom:603.880013pt;}
.y8c{bottom:610.600013pt;}
.y16{bottom:615.080013pt;}
.y59{bottom:617.000013pt;}
.y3e{bottom:617.320013pt;}
.yb6{bottom:617.640013pt;}
.yf3{bottom:620.840013pt;}
.ya8{bottom:623.080013pt;}
.yd9{bottom:623.400013pt;}
.y6e{bottom:625.000013pt;}
.y15{bottom:633.320013pt;}
.yf2{bottom:637.800013pt;}
.y8b{bottom:638.120013pt;}
.y58{bottom:644.520013pt;}
.y3d{bottom:644.840013pt;}
.yb5{bottom:647.080013pt;}
.yd8{bottom:650.920013pt;}
.ya7{bottom:651.560013pt;}
.yf1{bottom:654.440013pt;}
.y14{bottom:655.080013pt;}
.y6d{bottom:656.040013pt;}
.y8a{bottom:665.640013pt;}
.yf0{bottom:671.400013pt;}
.y57{bottom:672.040013pt;}
.y13{bottom:673.320013pt;}
.y3c{bottom:675.560013pt;}
.yd7{bottom:678.440013pt;}
.ya6{bottom:679.080013pt;}
.y6c{bottom:683.560013pt;}
.yef{bottom:688.360013pt;}
.y12{bottom:691.880013pt;}
.y89{bottom:693.160013pt;}
.y56{bottom:699.560013pt;}
.yee{bottom:705.320013pt;}
.yd6{bottom:706.280013pt;}
.y3b{bottom:706.600013pt;}
.ya5{bottom:706.920147pt;}
.y6b{bottom:711.080013pt;}
.yed{bottom:721.960013pt;}
.y11{bottom:722.600013pt;}
.y88{bottom:724.200013pt;}
.y55{bottom:730.600013pt;}
.yd5{bottom:733.800013pt;}
.ya4{bottom:735.400013pt;}
.y3a{bottom:737.320013pt;}
.y6a{bottom:738.600013pt;}
.yec{bottom:738.920147pt;}
.y10{bottom:750.120013pt;}
.y87{bottom:754.920147pt;}
.yeb{bottom:755.880013pt;}
.y54{bottom:761.320013pt;}
.ya3{bottom:763.240013pt;}
.ycd{bottom:766.440013pt;}
.y39{bottom:768.040013pt;}
.y69{bottom:769.320013pt;}
.yea{bottom:772.520013pt;}
.y86{bottom:782.440013pt;}
.yf{bottom:783.400013pt;}
.y53{bottom:788.840147pt;}
.ye9{bottom:789.480013pt;}
.ya2{bottom:790.760147pt;}
.ycc{bottom:793.960013pt;}
.y38{bottom:795.880013pt;}
.y68{bottom:800.360013pt;}
.ye8{bottom:806.440013pt;}
.ye{bottom:809.320013pt;}
.y85{bottom:810.280013pt;}
.y52{bottom:816.680013pt;}
.ya1{bottom:818.280013pt;}
.ycb{bottom:821.480013pt;}
.ye7{bottom:823.080013pt;}
.y37{bottom:826.600013pt;}
.y67{bottom:827.880013pt;}
.y84{bottom:837.800013pt;}
.yd{bottom:840.040013pt;}
.y51{bottom:844.200013pt;}
.ya0{bottom:845.800013pt;}
.yca{bottom:849.000147pt;}
.y36{bottom:855.400013pt;}
.ye6{bottom:857.000147pt;}
.y83{bottom:865.320013pt;}
.yc{bottom:869.480013pt;}
.y50{bottom:871.720013pt;}
.y9f{bottom:873.640013pt;}
.ye5{bottom:873.960013pt;}
.yc9{bottom:879.720013pt;}
.y35{bottom:883.240013pt;}
.ye4{bottom:890.600013pt;}
.y82{bottom:892.840147pt;}
.yb{bottom:899.240013pt;}
.y9e{bottom:901.160013pt;}
.ya{bottom:906.280013pt;}
.ye3{bottom:907.560013pt;}
.y34{bottom:910.760013pt;}
.y81{bottom:920.360013pt;}
.ye2{bottom:924.520013pt;}
.y4f{bottom:927.080013pt;}
.y9d{bottom:931.880013pt;}
.y33{bottom:938.280013pt;}
.ye1{bottom:941.160013pt;}
.y80{bottom:951.400013pt;}
.y4e{bottom:954.600013pt;}
.ye0{bottom:958.120013pt;}
.y9c{bottom:962.600013pt;}
.y32{bottom:965.800013pt;}
.ydf{bottom:975.080013pt;}
.y4d{bottom:982.120013pt;}
.y31{bottom:993.320013pt;}
.y5{bottom:1000.680013pt;}
.y30{bottom:1011.880013pt;}
.y4{bottom:1019.240013pt;}
.y2f{bottom:1030.760013pt;}
.y1{bottom:1046.240133pt;}
.y2d{bottom:1057.760000pt;}
.hf{height:16.959960pt;}
.h8{height:21.328125pt;}
.h15{height:22.250000pt;}
.h2{height:28.479987pt;}
.hd{height:38.258125pt;}
.h14{height:38.390625pt;}
.h6{height:39.040000pt;}
.h3{height:41.990625pt;}
.h5{height:42.656250pt;}
.hc{height:46.656250pt;}
.h13{height:52.003125pt;}
.h7{height:52.781250pt;}
.he{height:57.781250pt;}
.h12{height:60.232592pt;}
.h10{height:60.233125pt;}
.h11{height:60.233658pt;}
.hb{height:67.575625pt;}
.ha{height:69.671250pt;}
.h9{height:79.171875pt;}
.h4{height:1099.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:32.960000pt;}
.w5{width:33.919960pt;}
.w4{width:544.960000pt;}
.w8{width:546.240000pt;}
.w6{width:562.880000pt;}
.w2{width:563.520000pt;}
.w3{width:771.080000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.799867pt;}
.x9{left:6.080000pt;}
.xc{left:7.680053pt;}
.x3{left:11.320000pt;}
.xb{left:28.799867pt;}
.x12{left:66.666667pt;}
.x6{left:98.043600pt;}
.x4{left:102.720053pt;}
.x5{left:106.360000pt;}
.x1{left:114.040000pt;}
.xe{left:126.720000pt;}
.x11{left:131.292933pt;}
.xd{left:142.200000pt;}
.xf{left:150.720000pt;}
.x10{left:193.476933pt;}
.x7{left:269.871733pt;}
.x8{left:654.520000pt;}
.xa{left:669.253333pt;}
}

