
    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_613bda93bf98b8984bc02044.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_76d9076bb01f89cd4eabd2a8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01b71328b91827522e6fe36d.woff')format("woff");}.ff3{font-family:ff3;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;}
.m0{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.021238px;}
.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;}
}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.120561px;}
._0{width:1.176763px;}
._2{width:2.191049px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720277px;}
.y8d{bottom:116.400253px;}
.y31{bottom:117.119953px;}
.y63{bottom:126.300249px;}
.y77{bottom:130.259948px;}
.y8a{bottom:136.739945px;}
.y30{bottom:137.819945px;}
.y62{bottom:147.000241px;}
.y76{bottom:150.959940px;}
.y89{bottom:157.439937px;}
.y2f{bottom:158.519937px;}
.y61{bottom:167.700233px;}
.y75{bottom:171.659931px;}
.y88{bottom:178.139929px;}
.y2e{bottom:179.219928px;}
.y60{bottom:188.400225px;}
.y74{bottom:192.359923px;}
.y87{bottom:198.839920px;}
.y2d{bottom:199.919920px;}
.y5f{bottom:209.100216px;}
.y73{bottom:213.059915px;}
.y86{bottom:219.539912px;}
.y2c{bottom:220.619912px;}
.y5e{bottom:229.800208px;}
.y72{bottom:233.759906px;}
.y85{bottom:240.239904px;}
.y2b{bottom:241.319903px;}
.y5d{bottom:250.500200px;}
.y71{bottom:254.459898px;}
.y84{bottom:260.939896px;}
.y2a{bottom:262.019895px;}
.y5c{bottom:271.200192px;}
.y70{bottom:275.159890px;}
.y83{bottom:281.639887px;}
.y29{bottom:282.719887px;}
.y5b{bottom:291.900183px;}
.y6f{bottom:295.859882px;}
.y82{bottom:302.339879px;}
.y28{bottom:303.419879px;}
.y5a{bottom:312.600175px;}
.y6e{bottom:316.559873px;}
.y81{bottom:323.039871px;}
.y27{bottom:324.119870px;}
.y59{bottom:333.300167px;}
.y6d{bottom:337.259865px;}
.y80{bottom:343.739863px;}
.y26{bottom:344.819862px;}
.y58{bottom:354.000158px;}
.y6c{bottom:357.959857px;}
.y7f{bottom:364.439854px;}
.y25{bottom:365.519854px;}
.y57{bottom:374.700150px;}
.y6b{bottom:378.659849px;}
.y7e{bottom:385.139846px;}
.y24{bottom:386.219846px;}
.y56{bottom:395.400142px;}
.y6a{bottom:399.359840px;}
.y7d{bottom:405.839838px;}
.y23{bottom:406.919837px;}
.y55{bottom:416.100134px;}
.y69{bottom:420.059832px;}
.y7c{bottom:426.539829px;}
.y22{bottom:427.619829px;}
.y54{bottom:436.800125px;}
.y68{bottom:440.759824px;}
.y7b{bottom:447.239821px;}
.y21{bottom:448.319821px;}
.y53{bottom:457.500117px;}
.y67{bottom:461.459815px;}
.y7a{bottom:467.939813px;}
.y20{bottom:468.659813px;}
.y52{bottom:478.200109px;}
.y66{bottom:482.159807px;}
.y79{bottom:488.639805px;}
.y1f{bottom:489.719804px;}
.y51{bottom:498.900100px;}
.y65{bottom:502.859799px;}
.y78{bottom:504.839798px;}
.y1e{bottom:510.419796px;}
.y64{bottom:519.059792px;}
.y50{bottom:519.600092px;}
.y1d{bottom:531.119788px;}
.y4f{bottom:540.300084px;}
.y1c{bottom:551.819779px;}
.y4e{bottom:561.000076px;}
.y1b{bottom:572.519771px;}
.y4d{bottom:581.700067px;}
.y1a{bottom:593.219763px;}
.y4c{bottom:602.400059px;}
.y19{bottom:613.919754px;}
.y4b{bottom:623.100051px;}
.y18{bottom:634.619746px;}
.y4a{bottom:643.800042px;}
.y17{bottom:655.319738px;}
.y49{bottom:664.500034px;}
.y16{bottom:676.019730px;}
.y48{bottom:685.200026px;}
.y15{bottom:696.719721px;}
.y47{bottom:705.900018px;}
.y14{bottom:717.419713px;}
.y46{bottom:726.600009px;}
.y13{bottom:738.119705px;}
.y45{bottom:747.300001px;}
.y12{bottom:758.819696px;}
.y44{bottom:767.999993px;}
.y11{bottom:779.519688px;}
.y8c{bottom:788.339985px;}
.y43{bottom:788.699985px;}
.y10{bottom:800.219680px;}
.y8b{bottom:809.039976px;}
.y42{bottom:809.399976px;}
.yf{bottom:820.919672px;}
.y41{bottom:830.099968px;}
.ye{bottom:841.259663px;}
.y40{bottom:850.799960px;}
.yd{bottom:861.959655px;}
.y3f{bottom:871.499951px;}
.yc{bottom:882.659647px;}
.y3e{bottom:892.199943px;}
.yb{bottom:903.359639px;}
.y3d{bottom:912.899935px;}
.ya{bottom:924.059630px;}
.y3c{bottom:933.599927px;}
.y9{bottom:944.759622px;}
.y3b{bottom:954.299918px;}
.y8{bottom:965.459614px;}
.y3a{bottom:974.999910px;}
.y7{bottom:986.159606px;}
.y39{bottom:995.699902px;}
.y6{bottom:1006.859597px;}
.y38{bottom:1016.399893px;}
.y5{bottom:1027.559589px;}
.y37{bottom:1037.099885px;}
.y4{bottom:1048.259581px;}
.y36{bottom:1057.799877px;}
.y3{bottom:1069.319572px;}
.y35{bottom:1078.499869px;}
.y2{bottom:1085.519566px;}
.y34{bottom:1099.199860px;}
.y33{bottom:1119.899852px;}
.y8e{bottom:1140.239844px;}
.y32{bottom:1140.599844px;}
.h3{height:49.992168px;}
.h1{height:50.027324px;}
.h2{height:63.949193px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619938px;}
.x1{left:586.439765px;}
.x5{left:741.779703px;}
.x4{left:755.099698px;}
.x2{left:765.359694px;}
.x6{left:771.299691px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018878pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.996055pt;}
._0{width:1.046011pt;}
._2{width:1.947599pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.306913pt;}
.y8d{bottom:103.466892pt;}
.y31{bottom:104.106625pt;}
.y63{bottom:112.266888pt;}
.y77{bottom:115.786620pt;}
.y8a{bottom:121.546618pt;}
.y30{bottom:122.506618pt;}
.y62{bottom:130.666881pt;}
.y76{bottom:134.186613pt;}
.y89{bottom:139.946611pt;}
.y2f{bottom:140.906610pt;}
.y61{bottom:149.066874pt;}
.y75{bottom:152.586606pt;}
.y88{bottom:158.346603pt;}
.y2e{bottom:159.306603pt;}
.y60{bottom:167.466866pt;}
.y74{bottom:170.986598pt;}
.y87{bottom:176.746596pt;}
.y2d{bottom:177.706596pt;}
.y5f{bottom:185.866859pt;}
.y73{bottom:189.386591pt;}
.y86{bottom:195.146589pt;}
.y2c{bottom:196.106588pt;}
.y5e{bottom:204.266852pt;}
.y72{bottom:207.786584pt;}
.y85{bottom:213.546581pt;}
.y2b{bottom:214.506581pt;}
.y5d{bottom:222.666844pt;}
.y71{bottom:226.186576pt;}
.y84{bottom:231.946574pt;}
.y2a{bottom:232.906574pt;}
.y5c{bottom:241.066837pt;}
.y70{bottom:244.586569pt;}
.y83{bottom:250.346567pt;}
.y29{bottom:251.306566pt;}
.y5b{bottom:259.466830pt;}
.y6f{bottom:262.986561pt;}
.y82{bottom:268.746559pt;}
.y28{bottom:269.706559pt;}
.y5a{bottom:277.866822pt;}
.y6e{bottom:281.386554pt;}
.y81{bottom:287.146552pt;}
.y27{bottom:288.106551pt;}
.y59{bottom:296.266815pt;}
.y6d{bottom:299.786547pt;}
.y80{bottom:305.546544pt;}
.y26{bottom:306.506544pt;}
.y58{bottom:314.666807pt;}
.y6c{bottom:318.186539pt;}
.y7f{bottom:323.946537pt;}
.y25{bottom:324.906537pt;}
.y57{bottom:333.066800pt;}
.y6b{bottom:336.586532pt;}
.y7e{bottom:342.346530pt;}
.y24{bottom:343.306529pt;}
.y56{bottom:351.466793pt;}
.y6a{bottom:354.986525pt;}
.y7d{bottom:360.746522pt;}
.y23{bottom:361.706522pt;}
.y55{bottom:369.866785pt;}
.y69{bottom:373.386517pt;}
.y7c{bottom:379.146515pt;}
.y22{bottom:380.106515pt;}
.y54{bottom:388.266778pt;}
.y68{bottom:391.786510pt;}
.y7b{bottom:397.546508pt;}
.y21{bottom:398.506507pt;}
.y53{bottom:406.666771pt;}
.y67{bottom:410.186503pt;}
.y7a{bottom:415.946500pt;}
.y20{bottom:416.586500pt;}
.y52{bottom:425.066763pt;}
.y66{bottom:428.586495pt;}
.y79{bottom:434.346493pt;}
.y1f{bottom:435.306493pt;}
.y51{bottom:443.466756pt;}
.y65{bottom:446.986488pt;}
.y78{bottom:448.746487pt;}
.y1e{bottom:453.706485pt;}
.y64{bottom:461.386482pt;}
.y50{bottom:461.866749pt;}
.y1d{bottom:472.106478pt;}
.y4f{bottom:480.266741pt;}
.y1c{bottom:490.506470pt;}
.y4e{bottom:498.666734pt;}
.y1b{bottom:508.906463pt;}
.y4d{bottom:517.066727pt;}
.y1a{bottom:527.306456pt;}
.y4c{bottom:535.466719pt;}
.y19{bottom:545.706448pt;}
.y4b{bottom:553.866712pt;}
.y18{bottom:564.106441pt;}
.y4a{bottom:572.266704pt;}
.y17{bottom:582.506434pt;}
.y49{bottom:590.666697pt;}
.y16{bottom:600.906426pt;}
.y48{bottom:609.066690pt;}
.y15{bottom:619.306419pt;}
.y47{bottom:627.466682pt;}
.y14{bottom:637.706412pt;}
.y46{bottom:645.866675pt;}
.y13{bottom:656.106404pt;}
.y45{bottom:664.266668pt;}
.y12{bottom:674.506397pt;}
.y44{bottom:682.666660pt;}
.y11{bottom:692.906390pt;}
.y8c{bottom:700.746653pt;}
.y43{bottom:701.066653pt;}
.y10{bottom:711.306382pt;}
.y8b{bottom:719.146646pt;}
.y42{bottom:719.466646pt;}
.yf{bottom:729.706375pt;}
.y41{bottom:737.866638pt;}
.ye{bottom:747.786368pt;}
.y40{bottom:756.266631pt;}
.yd{bottom:766.186360pt;}
.y3f{bottom:774.666623pt;}
.yc{bottom:784.586353pt;}
.y3e{bottom:793.066616pt;}
.yb{bottom:802.986345pt;}
.y3d{bottom:811.466609pt;}
.ya{bottom:821.386338pt;}
.y3c{bottom:829.866601pt;}
.y9{bottom:839.786331pt;}
.y3b{bottom:848.266594pt;}
.y8{bottom:858.186323pt;}
.y3a{bottom:866.666587pt;}
.y7{bottom:876.586316pt;}
.y39{bottom:885.066579pt;}
.y6{bottom:894.986309pt;}
.y38{bottom:903.466572pt;}
.y5{bottom:913.386301pt;}
.y37{bottom:921.866565pt;}
.y4{bottom:931.786294pt;}
.y36{bottom:940.266557pt;}
.y3{bottom:950.506286pt;}
.y35{bottom:958.666550pt;}
.y2{bottom:964.906281pt;}
.y34{bottom:977.066543pt;}
.y33{bottom:995.466535pt;}
.y8e{bottom:1013.546528pt;}
.y32{bottom:1013.866528pt;}
.h3{height:44.437482pt;}
.h1{height:44.468732pt;}
.h2{height:56.843727pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439945pt;}
.x1{left:521.279791pt;}
.x5{left:659.359736pt;}
.x4{left:671.199732pt;}
.x2{left:680.319728pt;}
.x6{left:685.599726pt;}
}

