
    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_c122c715a84443d424b4319c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_9775350cc19f464f408295e0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.692383;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_df0665c8216520224c5730ad.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_295ea937bcaedf44b5cf501e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_92fb57adf17f66fc4b314280.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_2d954d07e772183920312474.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_26423f056f9d73ca8ddc620e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.680664;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;}
.m6{transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-ms-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-webkit-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:12.978295px;}
.ls2{letter-spacing:17.406593px;}
.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;}
}
.ws3{word-spacing:-20.015992px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-16.559993px;}
.ws4{word-spacing:-15.011994px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-4.326300px;}
._0{margin-left:-2.482510px;}
._1{margin-left:-1.369405px;}
._4{width:1.554594px;}
._d{width:2.624651px;}
._f{width:3.743075px;}
._9{width:5.012603px;}
._8{width:6.029936px;}
._e{width:7.147026px;}
._7{width:8.177950px;}
._5{width:9.401603px;}
._10{width:10.498021px;}
._3{width:11.684969px;}
._2{width:12.726165px;}
._a{width:14.474596px;}
._13{width:16.169188px;}
._1a{width:17.828353px;}
._c{width:19.234188px;}
._b{width:20.989715px;}
._18{width:22.291496px;}
._17{width:23.820008px;}
._11{width:24.824540px;}
._12{width:25.958699px;}
._15{width:27.411802px;}
._14{width:28.424919px;}
._16{width:29.723614px;}
._20{width:30.795437px;}
._1b{width:32.085240px;}
._19{width:33.263789px;}
._1c{width:34.675876px;}
._1f{width:35.912608px;}
._1d{width:37.394317px;}
._1e{width:38.455360px;}
.fc1{color:rgb(128,0,128);}
.fc2{color:rgb(101,101,153);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.999986px;}
.fs5{font-size:53.999978px;}
.fs6{font-size:57.067680px;}
.fs2{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y23{bottom:99.660260px;}
.y22{bottom:115.679954px;}
.y12a{bottom:119.639952px;}
.yae{bottom:120.899952px;}
.y4b{bottom:126.119950px;}
.y129{bottom:135.119946px;}
.y80{bottom:138.179945px;}
.yc9{bottom:143.399943px;}
.y81{bottom:146.460241px;}
.y121{bottom:146.640241px;}
.y21{bottom:146.819941px;}
.y5c{bottom:146.820241px;}
.y101{bottom:148.619941px;}
.y91{bottom:150.239940px;}
.y128{bottom:150.779940px;}
.yad{bottom:152.039939px;}
.y4a{bottom:157.079937px;}
.ye8{bottom:157.259937px;}
.y127{bottom:166.259933px;}
.y7f{bottom:169.319932px;}
.yc8{bottom:174.539930px;}
.y20{bottom:177.779929px;}
.y5b{bottom:177.780229px;}
.y100{bottom:179.579928px;}
.y90{bottom:181.379927px;}
.y126{bottom:181.739927px;}
.yac{bottom:182.999927px;}
.y49{bottom:188.219925px;}
.y125{bottom:197.219921px;}
.y7e{bottom:200.279920px;}
.yc7{bottom:205.499918px;}
.y120{bottom:208.740217px;}
.y1f{bottom:208.919916px;}
.y5a{bottom:208.920216px;}
.yff{bottom:210.719916px;}
.y8f{bottom:212.339915px;}
.y124{bottom:212.879915px;}
.yab{bottom:214.139914px;}
.y48{bottom:219.179912px;}
.ye7{bottom:219.359912px;}
.y123{bottom:219.719912px;}
.y7d{bottom:231.419907px;}
.yc6{bottom:236.639905px;}
.y1e{bottom:239.879904px;}
.y59{bottom:239.880204px;}
.yfe{bottom:241.679903px;}
.y8e{bottom:243.479903px;}
.yaa{bottom:245.099902px;}
.y47{bottom:250.319900px;}
.y7c{bottom:262.379895px;}
.yc5{bottom:267.599893px;}
.y122{bottom:270.660192px;}
.y11f{bottom:270.840192px;}
.y1d{bottom:271.019892px;}
.y58{bottom:271.020192px;}
.yfd{bottom:272.819891px;}
.y8d{bottom:274.439890px;}
.ya9{bottom:276.239890px;}
.ye6{bottom:280.919888px;}
.y46{bottom:281.279887px;}
.y7b{bottom:293.519883px;}
.yc4{bottom:298.739881px;}
.y108{bottom:299.999880px;}
.y1c{bottom:301.979879px;}
.y57{bottom:301.980179px;}
.yfc{bottom:303.779878px;}
.y8c{bottom:305.579878px;}
.ya8{bottom:307.199877px;}
.y45{bottom:312.419875px;}
.y107{bottom:319.079872px;}
.y7a{bottom:324.479870px;}
.yc3{bottom:329.699868px;}
.y11e{bottom:332.940167px;}
.y1b{bottom:333.119867px;}
.y56{bottom:333.120167px;}
.yfb{bottom:334.919866px;}
.yd5{bottom:336.539865px;}
.y8b{bottom:337.979865px;}
.ya7{bottom:338.339865px;}
.y3c{bottom:339.959864px;}
.y44{bottom:343.379863px;}
.y79{bottom:355.619858px;}
.y8a{bottom:356.879857px;}
.y106{bottom:357.059857px;}
.yc2{bottom:360.839856px;}
.y1a{bottom:364.079854px;}
.y55{bottom:364.080154px;}
.yfa{bottom:365.879854px;}
.yd4{bottom:367.679853px;}
.ya6{bottom:369.299852px;}
.y43{bottom:374.519850px;}
.y89{bottom:375.959850px;}
.y78{bottom:386.579845px;}
.y114{bottom:388.019845px;}
.yc1{bottom:393.239843px;}
.y88{bottom:394.859842px;}
.y11d{bottom:395.040142px;}
.y19{bottom:395.219842px;}
.y54{bottom:395.220142px;}
.yf9{bottom:397.019841px;}
.yd3{bottom:400.079840px;}
.ya5{bottom:400.439840px;}
.y10c{bottom:401.699839px;}
.y42{bottom:405.479838px;}
.y113{bottom:406.919837px;}
.yc0{bottom:412.139835px;}
.y87{bottom:413.759834px;}
.y105{bottom:413.939834px;}
.y77{bottom:417.719833px;}
.yd2{bottom:418.979832px;}
.y10b{bottom:420.779832px;}
.y112{bottom:425.819830px;}
.y18{bottom:426.179830px;}
.y53{bottom:426.180130px;}
.yf8{bottom:427.979829px;}
.y15d{bottom:428.879828px;}
.ybf{bottom:431.219828px;}
.ya4{bottom:431.399827px;}
.y86{bottom:432.839827px;}
.y41{bottom:436.439825px;}
.ye5{bottom:436.619825px;}
.yd1{bottom:437.879825px;}
.y10a{bottom:439.679824px;}
.y104{bottom:443.459823px;}
.y15c{bottom:444.719822px;}
.y111{bottom:444.899822px;}
.y76{bottom:448.679821px;}
.ybe{bottom:450.119820px;}
.y85{bottom:451.739819px;}
.yd0{bottom:456.959817px;}
.y17{bottom:457.139817px;}
.y52{bottom:457.140117px;}
.y109{bottom:458.579817px;}
.yf7{bottom:458.939816px;}
.y15b{bottom:460.199816px;}
.ya3{bottom:462.539815px;}
.y110{bottom:463.799814px;}
.y40{bottom:467.579813px;}
.ybd{bottom:469.019812px;}
.y84{bottom:470.819812px;}
.y103{bottom:474.599810px;}
.y15a{bottom:475.499810px;}
.ycf{bottom:475.859810px;}
.y75{bottom:479.639808px;}
.y10f{bottom:482.879807px;}
.ybc{bottom:488.099805px;}
.y16{bottom:488.279805px;}
.y51{bottom:488.280105px;}
.y3f{bottom:488.459805px;}
.y83{bottom:489.719804px;}
.y159{bottom:491.159804px;}
.yf6{bottom:491.519803px;}
.ya2{bottom:493.499803px;}
.yce{bottom:494.939802px;}
.ye4{bottom:498.719801px;}
.y10e{bottom:501.779799px;}
.y102{bottom:505.559798px;}
.y158{bottom:506.819797px;}
.ybb{bottom:506.999797px;}
.yf5{bottom:510.419796px;}
.y74{bottom:510.779796px;}
.ycd{bottom:513.839794px;}
.y3e{bottom:518.879792px;}
.y15{bottom:519.239792px;}
.y50{bottom:519.240092px;}
.y10d{bottom:520.679792px;}
.y157{bottom:523.199791px;}
.ya1{bottom:524.639790px;}
.yf4{bottom:529.319788px;}
.ye3{bottom:529.679788px;}
.ycc{bottom:532.919787px;}
.yba{bottom:536.699785px;}
.y156{bottom:538.859784px;}
.y73{bottom:541.739783px;}
.yf3{bottom:548.399781px;}
.y14{bottom:550.379780px;}
.y4f{bottom:550.380080px;}
.ycb{bottom:551.819779px;}
.y155{bottom:554.159778px;}
.ya0{bottom:555.599778px;}
.y3b{bottom:557.219777px;}
.ye2{bottom:560.819776px;}
.y154{bottom:560.999776px;}
.yf2{bottom:567.299773px;}
.yb9{bottom:567.659773px;}
.y153{bottom:569.819772px;}
.y72{bottom:572.879771px;}
.y13{bottom:581.339767px;}
.y4e{bottom:581.340067px;}
.y152{bottom:585.299766px;}
.yf1{bottom:586.379765px;}
.y9f{bottom:586.739765px;}
.ye1{bottom:591.779763px;}
.y151{bottom:592.139763px;}
.yb8{bottom:598.799760px;}
.y150{bottom:600.779760px;}
.y71{bottom:603.839758px;}
.yf0{bottom:605.279758px;}
.y11c{bottom:612.300055px;}
.y12{bottom:612.479755px;}
.y4d{bottom:612.480055px;}
.y14f{bottom:616.439753px;}
.y9e{bottom:617.699753px;}
.ye0{bottom:622.919751px;}
.yef{bottom:624.179750px;}
.yb7{bottom:629.759748px;}
.y14e{bottom:631.919747px;}
.y70{bottom:634.979746px;}
.yee{bottom:643.259743px;}
.y11{bottom:643.439743px;}
.y4c{bottom:643.440043px;}
.y14d{bottom:647.399741px;}
.y9d{bottom:648.839740px;}
.ydf{bottom:653.879738px;}
.y14c{bottom:654.239738px;}
.yb6{bottom:660.899736px;}
.yed{bottom:662.159735px;}
.y14b{bottom:662.879735px;}
.y6f{bottom:665.939734px;}
.y11b{bottom:674.400030px;}
.y10{bottom:674.579730px;}
.y33{bottom:674.580030px;}
.y14a{bottom:678.539729px;}
.y9c{bottom:679.799728px;}
.yec{bottom:681.239728px;}
.y34{bottom:681.419727px;}
.yde{bottom:685.019726px;}
.yb5{bottom:691.859723px;}
.y149{bottom:694.019722px;}
.y6e{bottom:697.079721px;}
.yeb{bottom:700.139720px;}
.yf{bottom:705.539718px;}
.y32{bottom:705.540018px;}
.y148{bottom:709.319716px;}
.y9b{bottom:710.939716px;}
.ydd{bottom:715.979714px;}
.yea{bottom:719.039712px;}
.yb4{bottom:722.999711px;}
.y147{bottom:725.159710px;}
.y6d{bottom:728.039709px;}
.y146{bottom:731.999707px;}
.y11a{bottom:736.500005px;}
.ye{bottom:736.679705px;}
.y31{bottom:736.680005px;}
.ye9{bottom:738.119705px;}
.y145{bottom:740.459704px;}
.y9a{bottom:741.899703px;}
.y82{bottom:743.519703px;}
.ydc{bottom:748.379701px;}
.yb3{bottom:755.399698px;}
.y144{bottom:756.119698px;}
.y6c{bottom:759.179696px;}
.ydb{bottom:767.459693px;}
.yd{bottom:767.639693px;}
.y30{bottom:767.639993px;}
.y143{bottom:771.599691px;}
.y99{bottom:773.039691px;}
.yb2{bottom:774.299690px;}
.y3d{bottom:774.479690px;}
.y142{bottom:778.439689px;}
.yda{bottom:786.359685px;}
.y141{bottom:787.079685px;}
.y6b{bottom:790.139684px;}
.yb1{bottom:793.199683px;}
.y119{bottom:798.599981px;}
.yc{bottom:798.779680px;}
.y2f{bottom:798.779980px;}
.y140{bottom:802.739679px;}
.y98{bottom:803.999678px;}
.yd9{bottom:805.439678px;}
.yb0{bottom:812.279675px;}
.y13f{bottom:818.219673px;}
.y6a{bottom:821.279671px;}
.yd8{bottom:824.339670px;}
.yb{bottom:829.739668px;}
.y2e{bottom:829.739968px;}
.yaf{bottom:831.179668px;}
.y13e{bottom:833.519667px;}
.y97{bottom:834.959666px;}
.yd7{bottom:843.239663px;}
.y13d{bottom:849.359660px;}
.y69{bottom:852.239659px;}
.y118{bottom:860.699956px;}
.ya{bottom:860.879656px;}
.y2d{bottom:860.879956px;}
.yd6{bottom:862.319655px;}
.y13c{bottom:864.839654px;}
.y96{bottom:866.099654px;}
.y13b{bottom:880.139648px;}
.y68{bottom:883.379647px;}
.y9{bottom:891.839643px;}
.y2c{bottom:891.839943px;}
.y13a{bottom:895.799642px;}
.y95{bottom:898.499641px;}
.y139{bottom:911.459635px;}
.y67{bottom:914.339634px;}
.y94{bottom:917.399633px;}
.y117{bottom:922.799931px;}
.y8{bottom:922.979631px;}
.y2b{bottom:922.979931px;}
.y138{bottom:926.939629px;}
.y93{bottom:936.479625px;}
.y137{bottom:942.419623px;}
.y66{bottom:945.479622px;}
.y7{bottom:953.939618px;}
.y2a{bottom:953.939918px;}
.y92{bottom:955.379618px;}
.y136{bottom:957.899617px;}
.yca{bottom:960.779616px;}
.y135{bottom:973.199611px;}
.y65{bottom:976.439609px;}
.y134{bottom:980.039608px;}
.y116{bottom:984.899906px;}
.y6{bottom:985.079606px;}
.y29{bottom:985.079906px;}
.y133{bottom:989.039604px;}
.y132{bottom:1004.519598px;}
.y64{bottom:1008.839596px;}
.y5{bottom:1013.339595px;}
.y3a{bottom:1016.039594px;}
.y28{bottom:1016.039894px;}
.y131{bottom:1019.999592px;}
.y63{bottom:1027.919589px;}
.y130{bottom:1035.479586px;}
.y4{bottom:1039.259584px;}
.y62{bottom:1046.819581px;}
.y115{bottom:1046.999881px;}
.y39{bottom:1047.179581px;}
.y27{bottom:1047.179881px;}
.y12f{bottom:1051.139580px;}
.y61{bottom:1065.899574px;}
.y12e{bottom:1066.619573px;}
.y3{bottom:1067.879573px;}
.y38{bottom:1078.139569px;}
.y26{bottom:1078.139869px;}
.y12d{bottom:1082.099567px;}
.y60{bottom:1084.799566px;}
.y12c{bottom:1097.579561px;}
.y2{bottom:1100.999560px;}
.y5f{bottom:1103.699559px;}
.y37{bottom:1109.279556px;}
.y25{bottom:1109.279856px;}
.y12b{bottom:1113.239555px;}
.y5e{bottom:1122.779551px;}
.y1{bottom:1137.179545px;}
.y36{bottom:1140.239544px;}
.y24{bottom:1140.239844px;}
.y5d{bottom:1141.679543px;}
.y35{bottom:1147.079541px;}
.h4{height:32.273425px;}
.hb{height:38.035832px;}
.ha{height:39.313461px;}
.h3{height:40.909906px;}
.h9{height:48.410137px;}
.h5{height:49.289043px;}
.h1{height:57.668180px;}
.h6{height:58.121696px;}
.h7{height:59.383101px;}
.h2{height:63.175756px;}
.h8{height:64.546849px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619949px;}
.x18{left:132.659947px;}
.x1{left:163.079935px;}
.x13{left:170.099932px;}
.x4{left:180.719930px;}
.x2{left:195.299740px;}
.x19{left:240.299904px;}
.x1a{left:253.259899px;}
.x11{left:258.479897px;}
.x12{left:263.519895px;}
.x7{left:314.819874px;}
.x8{left:319.859872px;}
.xd{left:369.899852px;}
.xe{left:374.939850px;}
.x5{left:416.699875px;}
.x6{left:420.120034px;}
.xb{left:499.859800px;}
.xc{left:504.899798px;}
.x14{left:589.319764px;}
.x15{left:594.359762px;}
.x16{left:596.339761px;}
.x17{left:601.379759px;}
.xf{left:637.019745px;}
.x10{left:642.059743px;}
.x9{left:692.639723px;}
.xa{left:697.679721px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:11.536262pt;}
.ls2{letter-spacing:15.472527pt;}
.ws3{word-spacing:-17.791993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-3.845600pt;}
._0{margin-left:-2.206675pt;}
._1{margin-left:-1.217249pt;}
._4{width:1.381862pt;}
._d{width:2.333023pt;}
._f{width:3.327178pt;}
._9{width:4.455647pt;}
._8{width:5.359943pt;}
._e{width:6.352912pt;}
._7{width:7.269289pt;}
._5{width:8.356980pt;}
._10{width:9.331575pt;}
._3{width:10.386639pt;}
._2{width:11.312147pt;}
._a{width:12.866307pt;}
._13{width:14.372611pt;}
._1a{width:15.847425pt;}
._c{width:17.097056pt;}
._b{width:18.657524pt;}
._18{width:19.814663pt;}
._17{width:21.173340pt;}
._11{width:22.066257pt;}
._12{width:23.074399pt;}
._15{width:24.366046pt;}
._14{width:25.266595pt;}
._16{width:26.420990pt;}
._20{width:27.373722pt;}
._1b{width:28.520213pt;}
._19{width:29.567812pt;}
._1c{width:30.823001pt;}
._1f{width:31.922318pt;}
._1d{width:33.239393pt;}
._1e{width:34.182542pt;}
.fs3{font-size:31.999987pt;}
.fs5{font-size:47.999981pt;}
.fs6{font-size:50.726827pt;}
.fs2{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:88.586898pt;}
.y22{bottom:102.826626pt;}
.y12a{bottom:106.346624pt;}
.yae{bottom:107.466624pt;}
.y4b{bottom:112.106622pt;}
.y129{bottom:120.106619pt;}
.y80{bottom:122.826618pt;}
.yc9{bottom:127.466616pt;}
.y81{bottom:130.186881pt;}
.y121{bottom:130.346881pt;}
.y21{bottom:130.506614pt;}
.y5c{bottom:130.506881pt;}
.y101{bottom:132.106614pt;}
.y91{bottom:133.546613pt;}
.y128{bottom:134.026613pt;}
.yad{bottom:135.146613pt;}
.y4a{bottom:139.626611pt;}
.ye8{bottom:139.786611pt;}
.y127{bottom:147.786608pt;}
.y7f{bottom:150.506606pt;}
.yc8{bottom:155.146605pt;}
.y20{bottom:158.026603pt;}
.y5b{bottom:158.026870pt;}
.y100{bottom:159.626603pt;}
.y90{bottom:161.226602pt;}
.y126{bottom:161.546602pt;}
.yac{bottom:162.666602pt;}
.y49{bottom:167.306600pt;}
.y125{bottom:175.306597pt;}
.y7e{bottom:178.026595pt;}
.yc7{bottom:182.666594pt;}
.y120{bottom:185.546859pt;}
.y1f{bottom:185.706592pt;}
.y5a{bottom:185.706859pt;}
.yff{bottom:187.306592pt;}
.y8f{bottom:188.746591pt;}
.y124{bottom:189.226591pt;}
.yab{bottom:190.346591pt;}
.y48{bottom:194.826589pt;}
.ye7{bottom:194.986589pt;}
.y123{bottom:195.306589pt;}
.y7d{bottom:205.706584pt;}
.yc6{bottom:210.346583pt;}
.y1e{bottom:213.226581pt;}
.y59{bottom:213.226848pt;}
.yfe{bottom:214.826581pt;}
.y8e{bottom:216.426580pt;}
.yaa{bottom:217.866580pt;}
.y47{bottom:222.506578pt;}
.y7c{bottom:233.226573pt;}
.yc5{bottom:237.866572pt;}
.y122{bottom:240.586837pt;}
.y11f{bottom:240.746837pt;}
.y1d{bottom:240.906570pt;}
.y58{bottom:240.906837pt;}
.yfd{bottom:242.506570pt;}
.y8d{bottom:243.946569pt;}
.ya9{bottom:245.546568pt;}
.ye6{bottom:249.706567pt;}
.y46{bottom:250.026567pt;}
.y7b{bottom:260.906562pt;}
.yc4{bottom:265.546560pt;}
.y108{bottom:266.666560pt;}
.y1c{bottom:268.426559pt;}
.y57{bottom:268.426826pt;}
.yfc{bottom:270.026559pt;}
.y8c{bottom:271.626558pt;}
.ya8{bottom:273.066557pt;}
.y45{bottom:277.706556pt;}
.y107{bottom:283.626553pt;}
.y7a{bottom:288.426551pt;}
.yc3{bottom:293.066549pt;}
.y11e{bottom:295.946815pt;}
.y1b{bottom:296.106548pt;}
.y56{bottom:296.106815pt;}
.yfb{bottom:297.706548pt;}
.yd5{bottom:299.146547pt;}
.y8b{bottom:300.426546pt;}
.ya7{bottom:300.746546pt;}
.y3c{bottom:302.186546pt;}
.y44{bottom:305.226545pt;}
.y79{bottom:316.106540pt;}
.y8a{bottom:317.226540pt;}
.y106{bottom:317.386540pt;}
.yc2{bottom:320.746538pt;}
.y1a{bottom:323.626537pt;}
.y55{bottom:323.626804pt;}
.yfa{bottom:325.226537pt;}
.yd4{bottom:326.826536pt;}
.ya6{bottom:328.266535pt;}
.y43{bottom:332.906534pt;}
.y89{bottom:334.186533pt;}
.y78{bottom:343.626529pt;}
.y114{bottom:344.906529pt;}
.yc1{bottom:349.546527pt;}
.y88{bottom:350.986526pt;}
.y11d{bottom:351.146793pt;}
.y19{bottom:351.306526pt;}
.y54{bottom:351.306793pt;}
.yf9{bottom:352.906526pt;}
.yd3{bottom:355.626524pt;}
.ya5{bottom:355.946524pt;}
.y10c{bottom:357.066524pt;}
.y42{bottom:360.426522pt;}
.y113{bottom:361.706522pt;}
.yc0{bottom:366.346520pt;}
.y87{bottom:367.786520pt;}
.y105{bottom:367.946519pt;}
.y77{bottom:371.306518pt;}
.yd2{bottom:372.426518pt;}
.y10b{bottom:374.026517pt;}
.y112{bottom:378.506515pt;}
.y18{bottom:378.826515pt;}
.y53{bottom:378.826782pt;}
.yf8{bottom:380.426514pt;}
.y15d{bottom:381.226514pt;}
.ybf{bottom:383.306513pt;}
.ya4{bottom:383.466513pt;}
.y86{bottom:384.746513pt;}
.y41{bottom:387.946511pt;}
.ye5{bottom:388.106511pt;}
.yd1{bottom:389.226511pt;}
.y10a{bottom:390.826510pt;}
.y104{bottom:394.186509pt;}
.y15c{bottom:395.306509pt;}
.y111{bottom:395.466508pt;}
.y76{bottom:398.826507pt;}
.ybe{bottom:400.106507pt;}
.y85{bottom:401.546506pt;}
.yd0{bottom:406.186504pt;}
.y17{bottom:406.346504pt;}
.y52{bottom:406.346771pt;}
.y109{bottom:407.626504pt;}
.yf7{bottom:407.946503pt;}
.y15b{bottom:409.066503pt;}
.ya3{bottom:411.146502pt;}
.y110{bottom:412.266502pt;}
.y40{bottom:415.626500pt;}
.ybd{bottom:416.906500pt;}
.y84{bottom:418.506499pt;}
.y103{bottom:421.866498pt;}
.y15a{bottom:422.666498pt;}
.ycf{bottom:422.986497pt;}
.y75{bottom:426.346496pt;}
.y10f{bottom:429.226495pt;}
.ybc{bottom:433.866493pt;}
.y16{bottom:434.026493pt;}
.y51{bottom:434.026760pt;}
.y3f{bottom:434.186493pt;}
.y83{bottom:435.306493pt;}
.y159{bottom:436.586492pt;}
.yf6{bottom:436.906492pt;}
.ya2{bottom:438.666491pt;}
.yce{bottom:439.946491pt;}
.ye4{bottom:443.306489pt;}
.y10e{bottom:446.026488pt;}
.y102{bottom:449.386487pt;}
.y158{bottom:450.506486pt;}
.ybb{bottom:450.666486pt;}
.yf5{bottom:453.706485pt;}
.y74{bottom:454.026485pt;}
.ycd{bottom:456.746484pt;}
.y3e{bottom:461.226482pt;}
.y15{bottom:461.546482pt;}
.y50{bottom:461.546749pt;}
.y10d{bottom:462.826482pt;}
.y157{bottom:465.066481pt;}
.ya1{bottom:466.346480pt;}
.yf4{bottom:470.506478pt;}
.ye3{bottom:470.826478pt;}
.ycc{bottom:473.706477pt;}
.yba{bottom:477.066476pt;}
.y156{bottom:478.986475pt;}
.y73{bottom:481.546474pt;}
.yf3{bottom:487.466472pt;}
.y14{bottom:489.226471pt;}
.y4f{bottom:489.226738pt;}
.ycb{bottom:490.506470pt;}
.y155{bottom:492.586470pt;}
.ya0{bottom:493.866469pt;}
.y3b{bottom:495.306469pt;}
.ye2{bottom:498.506467pt;}
.y154{bottom:498.666467pt;}
.yf2{bottom:504.266465pt;}
.yb9{bottom:504.586465pt;}
.y153{bottom:506.506464pt;}
.y72{bottom:509.226463pt;}
.y13{bottom:516.746460pt;}
.y4e{bottom:516.746727pt;}
.y152{bottom:520.266459pt;}
.yf1{bottom:521.226458pt;}
.y9f{bottom:521.546458pt;}
.ye1{bottom:526.026456pt;}
.y151{bottom:526.346456pt;}
.yb8{bottom:532.266454pt;}
.y150{bottom:534.026453pt;}
.y71{bottom:536.746452pt;}
.yf0{bottom:538.026451pt;}
.y11c{bottom:544.266716pt;}
.y12{bottom:544.426449pt;}
.y4d{bottom:544.426716pt;}
.y14f{bottom:547.946447pt;}
.y9e{bottom:549.066447pt;}
.ye0{bottom:553.706445pt;}
.yef{bottom:554.826445pt;}
.yb7{bottom:559.786443pt;}
.y14e{bottom:561.706442pt;}
.y70{bottom:564.426441pt;}
.yee{bottom:571.786438pt;}
.y11{bottom:571.946438pt;}
.y4c{bottom:571.946705pt;}
.y14d{bottom:575.466436pt;}
.y9d{bottom:576.746436pt;}
.ydf{bottom:581.226434pt;}
.y14c{bottom:581.546434pt;}
.yb6{bottom:587.466432pt;}
.yed{bottom:588.586431pt;}
.y14b{bottom:589.226431pt;}
.y6f{bottom:591.946430pt;}
.y11b{bottom:599.466694pt;}
.y10{bottom:599.626427pt;}
.y33{bottom:599.626693pt;}
.y14a{bottom:603.146425pt;}
.y9c{bottom:604.266425pt;}
.yec{bottom:605.546424pt;}
.y34{bottom:605.706424pt;}
.yde{bottom:608.906423pt;}
.yb5{bottom:614.986421pt;}
.y149{bottom:616.906420pt;}
.y6e{bottom:619.626419pt;}
.yeb{bottom:622.346418pt;}
.yf{bottom:627.146416pt;}
.y32{bottom:627.146682pt;}
.y148{bottom:630.506414pt;}
.y9b{bottom:631.946414pt;}
.ydd{bottom:636.426412pt;}
.yea{bottom:639.146411pt;}
.yb4{bottom:642.666410pt;}
.y147{bottom:644.586409pt;}
.y6d{bottom:647.146408pt;}
.y146{bottom:650.666406pt;}
.y11a{bottom:654.666671pt;}
.ye{bottom:654.826405pt;}
.y31{bottom:654.826671pt;}
.ye9{bottom:656.106404pt;}
.y145{bottom:658.186403pt;}
.y9a{bottom:659.466403pt;}
.y82{bottom:660.906402pt;}
.ydc{bottom:665.226401pt;}
.yb3{bottom:671.466398pt;}
.y144{bottom:672.106398pt;}
.y6c{bottom:674.826397pt;}
.ydb{bottom:682.186394pt;}
.yd{bottom:682.346394pt;}
.y30{bottom:682.346660pt;}
.y143{bottom:685.866392pt;}
.y99{bottom:687.146392pt;}
.yb2{bottom:688.266391pt;}
.y3d{bottom:688.426391pt;}
.y142{bottom:691.946390pt;}
.yda{bottom:698.986387pt;}
.y141{bottom:699.626387pt;}
.y6b{bottom:702.346386pt;}
.yb1{bottom:705.066385pt;}
.y119{bottom:709.866649pt;}
.yc{bottom:710.026383pt;}
.y2f{bottom:710.026649pt;}
.y140{bottom:713.546381pt;}
.y98{bottom:714.666381pt;}
.yd9{bottom:715.946380pt;}
.yb0{bottom:722.026378pt;}
.y13f{bottom:727.306376pt;}
.y6a{bottom:730.026375pt;}
.yd8{bottom:732.746374pt;}
.yb{bottom:737.546372pt;}
.y2e{bottom:737.546638pt;}
.yaf{bottom:738.826371pt;}
.y13e{bottom:740.906370pt;}
.y97{bottom:742.186370pt;}
.yd7{bottom:749.546367pt;}
.y13d{bottom:754.986365pt;}
.y69{bottom:757.546364pt;}
.y118{bottom:765.066627pt;}
.ya{bottom:765.226361pt;}
.y2d{bottom:765.226627pt;}
.yd6{bottom:766.506360pt;}
.y13c{bottom:768.746359pt;}
.y96{bottom:769.866359pt;}
.y13b{bottom:782.346354pt;}
.y68{bottom:785.226353pt;}
.y9{bottom:792.746350pt;}
.y2c{bottom:792.746616pt;}
.y13a{bottom:796.266348pt;}
.y95{bottom:798.666347pt;}
.y139{bottom:810.186343pt;}
.y67{bottom:812.746342pt;}
.y94{bottom:815.466340pt;}
.y117{bottom:820.266605pt;}
.y8{bottom:820.426338pt;}
.y2b{bottom:820.426605pt;}
.y138{bottom:823.946337pt;}
.y93{bottom:832.426334pt;}
.y137{bottom:837.706332pt;}
.y66{bottom:840.426330pt;}
.y7{bottom:847.946327pt;}
.y2a{bottom:847.946594pt;}
.y92{bottom:849.226327pt;}
.y136{bottom:851.466326pt;}
.yca{bottom:854.026325pt;}
.y135{bottom:865.066321pt;}
.y65{bottom:867.946319pt;}
.y134{bottom:871.146318pt;}
.y116{bottom:875.466583pt;}
.y6{bottom:875.626316pt;}
.y29{bottom:875.626583pt;}
.y133{bottom:879.146315pt;}
.y132{bottom:892.906310pt;}
.y64{bottom:896.746308pt;}
.y5{bottom:900.746306pt;}
.y3a{bottom:903.146305pt;}
.y28{bottom:903.146572pt;}
.y131{bottom:906.666304pt;}
.y63{bottom:913.706301pt;}
.y130{bottom:920.426298pt;}
.y4{bottom:923.786297pt;}
.y62{bottom:930.506294pt;}
.y115{bottom:930.666561pt;}
.y39{bottom:930.826294pt;}
.y27{bottom:930.826561pt;}
.y12f{bottom:934.346293pt;}
.y61{bottom:947.466288pt;}
.y12e{bottom:948.106287pt;}
.y3{bottom:949.226287pt;}
.y38{bottom:958.346283pt;}
.y26{bottom:958.346550pt;}
.y12d{bottom:961.866282pt;}
.y60{bottom:964.266281pt;}
.y12c{bottom:975.626276pt;}
.y2{bottom:978.666275pt;}
.y5f{bottom:981.066274pt;}
.y37{bottom:986.026272pt;}
.y25{bottom:986.026539pt;}
.y12b{bottom:989.546271pt;}
.y5e{bottom:998.026267pt;}
.y1{bottom:1010.826262pt;}
.y36{bottom:1013.546261pt;}
.y24{bottom:1013.546528pt;}
.y5d{bottom:1014.826261pt;}
.y35{bottom:1019.626259pt;}
.h4{height:28.687489pt;}
.hb{height:33.809628pt;}
.ha{height:34.945299pt;}
.h3{height:36.364360pt;}
.h9{height:43.031233pt;}
.h5{height:43.812482pt;}
.h1{height:51.260604pt;}
.h6{height:51.663729pt;}
.h7{height:52.784979pt;}
.h2{height:56.156228pt;}
.h8{height:57.374977pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439955pt;}
.x18{left:117.919953pt;}
.x1{left:144.959942pt;}
.x13{left:151.199940pt;}
.x4{left:160.639938pt;}
.x2{left:173.599769pt;}
.x19{left:213.599915pt;}
.x1a{left:225.119910pt;}
.x11{left:229.759908pt;}
.x12{left:234.239906pt;}
.x7{left:279.839888pt;}
.x8{left:284.319886pt;}
.xd{left:328.799868pt;}
.xe{left:333.279867pt;}
.x5{left:370.399889pt;}
.x6{left:373.440030pt;}
.xb{left:444.319822pt;}
.xc{left:448.799820pt;}
.x14{left:523.839790pt;}
.x15{left:528.319789pt;}
.x16{left:530.079788pt;}
.x17{left:534.559786pt;}
.xf{left:566.239774pt;}
.x10{left:570.719772pt;}
.x9{left:615.679754pt;}
.xa{left:620.159752pt;}
}

