
    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_a961b0f0f1d5e942afbd5753.woff')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_e6a9dfb5d2760145a290c95c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_3aefbda90416bb8fa4cc8d9c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_642e0be3d8f24205a99917f3.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_0a13b83440258f68764a6d80.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d3167cb48592887c72370e29.woff')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_266037a7e25e0eb9de94b157.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_e5515407dffd0db667b5667d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.841797;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_43b9085af98d023e6d102472.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_516dcb800b8db91b65609fd7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.741699;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;}
.m1{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,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);}
.v6{vertical-align:-20.579400px;}
.v3{vertical-align:-11.988000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.006000px;}
.v5{vertical-align:20.579400px;}
.v2{vertical-align:31.992000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000300px;}
.lsd{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.864000px;}
.lse{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.344000px;}
.lsb{letter-spacing:1.536000px;}
.ls1{letter-spacing:1.650000px;}
.ls4{letter-spacing:1.920000px;}
.lsf{letter-spacing:2.064000px;}
.ls0{letter-spacing:2.250000px;}
.ls3{letter-spacing:2.688000px;}
.lsc{letter-spacing:3.024000px;}
.lsa{letter-spacing:3.216000px;}
.ls8{letter-spacing:3.522600px;}
.ls9{letter-spacing:3.552000px;}
.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;}
}
.ws0{word-spacing:-152.250000px;}
.ws5{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.450000px;}
.ws1{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws6{word-spacing:-9.007350px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:655.870200px;}
.ws4{word-spacing:657.868200px;}
._8{margin-left:-8.903400px;}
._b{margin-left:-7.662600px;}
._6{margin-left:-6.340200px;}
._2{margin-left:-4.968000px;}
._4{margin-left:-3.646200px;}
._0{margin-left:-2.250000px;}
._1{margin-left:-1.206600px;}
._3{width:1.730400px;}
._9{width:3.366000px;}
._5{width:5.314800px;}
._a{width:6.408000px;}
._7{width:7.663200px;}
._d{width:8.673600px;}
._c{width:9.768000px;}
._10{width:10.989600px;}
._f{width:13.015800px;}
._e{width:14.299800px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:20.988000px;}
.fsc{font-size:36.029400px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:55.968000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:66.000000px;}
.fsb{font-size:73.440000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:54.209400px;}
.y8{bottom:64.709400px;}
.y55{bottom:76.499850px;}
.yaa{bottom:76.500150px;}
.yf8{bottom:79.496850px;}
.y2a{bottom:79.497000px;}
.y7b{bottom:89.999850px;}
.yb9{bottom:90.000150px;}
.y54{bottom:92.996850px;}
.ya9{bottom:92.997150px;}
.y53{bottom:103.499850px;}
.ya8{bottom:103.500150px;}
.y7a{bottom:106.496850px;}
.y29{bottom:113.527650px;}
.y52{bottom:116.999850px;}
.yb8{bottom:117.000150px;}
.yd8{bottom:119.996850px;}
.ya7{bottom:119.997150px;}
.y51{bottom:130.499850px;}
.ya6{bottom:130.500150px;}
.y28{bottom:133.327650px;}
.y79{bottom:133.496850px;}
.y50{bottom:143.999850px;}
.yb7{bottom:144.000150px;}
.yf7{bottom:146.996850px;}
.ya5{bottom:146.997150px;}
.y27{bottom:153.127650px;}
.y4f{bottom:157.499850px;}
.ya4{bottom:157.500150px;}
.yf6{bottom:160.496850px;}
.y143{bottom:166.780950px;}
.y78{bottom:170.999850px;}
.ya3{bottom:171.000150px;}
.y26{bottom:172.927650px;}
.y4e{bottom:173.996850px;}
.y4d{bottom:184.499850px;}
.ya2{bottom:184.500150px;}
.y142{bottom:185.320950px;}
.y147{bottom:185.335950px;}
.yf5{bottom:187.496850px;}
.y25{bottom:192.727650px;}
.yf4{bottom:197.999850px;}
.y4c{bottom:200.996850px;}
.ya1{bottom:200.997150px;}
.y141{bottom:203.860950px;}
.y146{bottom:203.875950px;}
.y120{bottom:205.480950px;}
.y13a{bottom:205.495950px;}
.y4b{bottom:211.499850px;}
.ya0{bottom:211.500150px;}
.y24{bottom:212.527650px;}
.y145{bottom:214.496850px;}
.y140{bottom:222.400950px;}
.y116{bottom:222.415950px;}
.y11f{bottom:224.020950px;}
.y139{bottom:224.035950px;}
.y77{bottom:224.999850px;}
.y4a{bottom:227.996850px;}
.y9f{bottom:227.997150px;}
.y23{bottom:232.327650px;}
.y76{bottom:238.499850px;}
.y9e{bottom:238.500150px;}
.y13f{bottom:240.940950px;}
.y115{bottom:240.955950px;}
.y104{bottom:241.496850px;}
.y11e{bottom:242.560950px;}
.y138{bottom:242.575950px;}
.y75{bottom:251.999850px;}
.y9d{bottom:252.000150px;}
.y22{bottom:252.127650px;}
.y103{bottom:254.996850px;}
.y49{bottom:256.591950px;}
.yf3{bottom:259.480950px;}
.y13e{bottom:259.495950px;}
.y114{bottom:259.496100px;}
.y11d{bottom:261.100950px;}
.y137{bottom:261.115950px;}
.y74{bottom:265.499850px;}
.y9c{bottom:265.500150px;}
.y148{bottom:268.496850px;}
.y21{bottom:271.927650px;}
.y48{bottom:275.131950px;}
.yf2{bottom:278.020950px;}
.y13d{bottom:278.035950px;}
.y113{bottom:278.036100px;}
.y73{bottom:278.999850px;}
.y9b{bottom:279.000150px;}
.y11c{bottom:279.640950px;}
.y136{bottom:279.655950px;}
.yd7{bottom:281.996850px;}
.y20{bottom:291.727650px;}
.yd6{bottom:292.499850px;}
.yb6{bottom:292.500150px;}
.y47{bottom:293.671950px;}
.y72{bottom:295.496850px;}
.y9a{bottom:295.497150px;}
.yf1{bottom:296.560950px;}
.y13c{bottom:296.575950px;}
.y102{bottom:296.576100px;}
.y11b{bottom:298.180950px;}
.y135{bottom:298.195950px;}
.y71{bottom:305.999850px;}
.y99{bottom:306.000150px;}
.y144{bottom:308.996850px;}
.y1f{bottom:311.527650px;}
.y46{bottom:312.211950px;}
.yf0{bottom:315.100950px;}
.y13b{bottom:315.115950px;}
.y101{bottom:315.116100px;}
.y11a{bottom:316.720950px;}
.y134{bottom:316.735950px;}
.y70{bottom:319.499850px;}
.yb5{bottom:319.500150px;}
.yd5{bottom:322.496850px;}
.y98{bottom:322.497150px;}
.y45{bottom:330.751950px;}
.y128{bottom:332.999850px;}
.y97{bottom:333.000150px;}
.yef{bottom:333.640950px;}
.y111{bottom:333.655950px;}
.y100{bottom:333.656100px;}
.y119{bottom:335.260950px;}
.y133{bottom:335.275950px;}
.y6f{bottom:335.996850px;}
.y1e{bottom:338.827650px;}
.y127{bottom:346.499850px;}
.y96{bottom:346.500150px;}
.y44{bottom:349.291950px;}
.yee{bottom:352.180950px;}
.yff{bottom:352.195950px;}
.y112{bottom:352.196100px;}
.y118{bottom:353.800950px;}
.y126{bottom:359.999850px;}
.y95{bottom:360.000150px;}
.y1d{bottom:365.827500px;}
.y132{bottom:367.315950px;}
.y43{bottom:367.831950px;}
.yed{bottom:370.720950px;}
.yfe{bottom:370.735950px;}
.yd4{bottom:370.736100px;}
.y6e{bottom:372.340950px;}
.y131{bottom:373.499850px;}
.y94{bottom:373.500150px;}
.y125{bottom:376.496850px;}
.y1c{bottom:384.367500px;}
.y42{bottom:386.371950px;}
.y130{bottom:386.999850px;}
.yec{bottom:389.260950px;}
.yfd{bottom:389.275950px;}
.yd3{bottom:389.276100px;}
.yb4{bottom:389.997000px;}
.y6d{bottom:390.880950px;}
.yb3{bottom:400.500150px;}
.y1b{bottom:402.907500px;}
.y12f{bottom:403.496850px;}
.y41{bottom:404.911950px;}
.yeb{bottom:407.800950px;}
.y12a{bottom:407.815950px;}
.yd2{bottom:407.816100px;}
.y6c{bottom:409.420950px;}
.y12e{bottom:413.999850px;}
.yb2{bottom:414.000150px;}
.y1a{bottom:421.447500px;}
.y40{bottom:423.451950px;}
.yea{bottom:426.340950px;}
.y93{bottom:426.341100px;}
.y129{bottom:426.355950px;}
.yd1{bottom:426.356100px;}
.yb1{bottom:427.500150px;}
.y6b{bottom:427.960950px;}
.y12d{bottom:430.496850px;}
.y19{bottom:439.987500px;}
.y12c{bottom:440.999850px;}
.yb0{bottom:441.000150px;}
.y3f{bottom:441.991950px;}
.ye9{bottom:444.880950px;}
.y92{bottom:444.881100px;}
.y124{bottom:444.895950px;}
.yd0{bottom:444.896100px;}
.y6a{bottom:446.500950px;}
.yaf{bottom:454.500150px;}
.y12b{bottom:457.496850px;}
.y18{bottom:458.527500px;}
.y3e{bottom:460.531950px;}
.ye8{bottom:463.420950px;}
.y91{bottom:463.421100px;}
.y123{bottom:463.435950px;}
.ycf{bottom:463.436100px;}
.y69{bottom:465.040950px;}
.yae{bottom:470.997000px;}
.y17{bottom:477.067500px;}
.y3d{bottom:479.071950px;}
.yad{bottom:481.500150px;}
.ye7{bottom:481.960950px;}
.y90{bottom:481.961100px;}
.yfc{bottom:481.975950px;}
.yce{bottom:481.976100px;}
.y68{bottom:483.580950px;}
.y7{bottom:490.644900px;}
.y16{bottom:495.607500px;}
.y3c{bottom:497.611950px;}
.yac{bottom:497.997000px;}
.ye6{bottom:500.500950px;}
.y8f{bottom:500.501100px;}
.ycd{bottom:500.515950px;}
.y110{bottom:500.516100px;}
.y67{bottom:502.120950px;}
.y6{bottom:506.844900px;}
.y15{bottom:514.147500px;}
.y3b{bottom:516.151950px;}
.ye5{bottom:519.040950px;}
.y8e{bottom:519.041100px;}
.ycc{bottom:519.055950px;}
.y10f{bottom:519.056100px;}
.y66{bottom:520.660950px;}
.y5{bottom:523.044900px;}
.y14{bottom:532.687500px;}
.y117{bottom:534.160950px;}
.y3a{bottom:534.691950px;}
.ye4{bottom:537.580950px;}
.y8d{bottom:537.581100px;}
.ycb{bottom:537.595950px;}
.y10e{bottom:537.596100px;}
.y65{bottom:539.200950px;}
.y4{bottom:539.244900px;}
.y13{bottom:551.227500px;}
.y39{bottom:553.231950px;}
.ye3{bottom:556.120950px;}
.y8c{bottom:556.121100px;}
.yca{bottom:556.135950px;}
.y10d{bottom:556.136100px;}
.y64{bottom:557.740950px;}
.y12{bottom:569.767500px;}
.y38{bottom:571.771950px;}
.ye2{bottom:574.660950px;}
.y8b{bottom:574.661100px;}
.yc9{bottom:574.675950px;}
.y10c{bottom:574.676100px;}
.y63{bottom:576.280950px;}
.y11{bottom:588.307500px;}
.y37{bottom:590.311950px;}
.ye1{bottom:593.200950px;}
.y8a{bottom:593.201100px;}
.yc8{bottom:593.215950px;}
.y122{bottom:593.216100px;}
.y62{bottom:594.820950px;}
.y10{bottom:606.847500px;}
.y36{bottom:608.851950px;}
.ye0{bottom:611.740950px;}
.y89{bottom:611.741100px;}
.yfb{bottom:611.755950px;}
.yc7{bottom:611.756100px;}
.y61{bottom:613.360950px;}
.yf{bottom:625.387500px;}
.y35{bottom:627.391950px;}
.ydf{bottom:630.280950px;}
.y88{bottom:630.281100px;}
.yfa{bottom:630.295950px;}
.yc6{bottom:630.296100px;}
.y60{bottom:631.900950px;}
.y34{bottom:645.931950px;}
.yde{bottom:648.820950px;}
.y87{bottom:648.821100px;}
.yf9{bottom:648.835950px;}
.yc5{bottom:648.836100px;}
.y5f{bottom:650.440950px;}
.ye{bottom:651.427650px;}
.y33{bottom:664.471950px;}
.y3{bottom:666.695700px;}
.ydd{bottom:667.360950px;}
.y86{bottom:667.361100px;}
.yc4{bottom:667.375950px;}
.y121{bottom:667.376100px;}
.y5e{bottom:668.980950px;}
.y32{bottom:683.011950px;}
.ydc{bottom:685.900950px;}
.y85{bottom:685.901100px;}
.yc3{bottom:685.915950px;}
.y10b{bottom:685.916100px;}
.y2{bottom:687.997200px;}
.y5d{bottom:701.020950px;}
.y31{bottom:701.551950px;}
.ydb{bottom:704.440950px;}
.y84{bottom:704.441100px;}
.yc2{bottom:704.455950px;}
.y10a{bottom:704.456100px;}
.yd{bottom:708.436650px;}
.y1{bottom:721.297200px;}
.yda{bottom:722.980950px;}
.y83{bottom:722.981100px;}
.yc1{bottom:722.995950px;}
.y109{bottom:722.996100px;}
.y30{bottom:733.591800px;}
.yc{bottom:735.127650px;}
.y5c{bottom:741.520950px;}
.y82{bottom:741.521100px;}
.yc0{bottom:741.535950px;}
.y108{bottom:741.536100px;}
.y5b{bottom:760.060950px;}
.y81{bottom:760.061100px;}
.ybf{bottom:760.075950px;}
.y107{bottom:760.076100px;}
.y2f{bottom:774.091950px;}
.y5a{bottom:778.600950px;}
.y80{bottom:778.601100px;}
.ybe{bottom:778.615950px;}
.y106{bottom:778.616100px;}
.yb{bottom:793.321650px;}
.y2e{bottom:793.891950px;}
.y59{bottom:797.140950px;}
.y7f{bottom:797.141100px;}
.ybd{bottom:797.155950px;}
.y105{bottom:797.156100px;}
.y2d{bottom:813.691950px;}
.y58{bottom:815.680950px;}
.y7e{bottom:815.681100px;}
.ybc{bottom:815.695950px;}
.ya{bottom:822.577650px;}
.y2c{bottom:833.491950px;}
.y57{bottom:834.220950px;}
.y7d{bottom:834.221100px;}
.ybb{bottom:834.235950px;}
.yd9{bottom:905.755500px;}
.y56{bottom:905.755650px;}
.yab{bottom:905.755800px;}
.yba{bottom:906.525000px;}
.y2b{bottom:906.525150px;}
.y7c{bottom:906.525300px;}
.hf{height:21.363562px;}
.h18{height:21.364163px;}
.h7{height:29.182617px;}
.h15{height:33.328125px;}
.h14{height:33.351562px;}
.h16{height:37.494141px;}
.h10{height:37.520508px;}
.h5{height:39.102539px;}
.h6{height:42.108398px;}
.h12{height:42.909961px;}
.hc{height:42.940137px;}
.hb{height:43.447266px;}
.h17{height:45.612900px;}
.h13{height:45.613500px;}
.h19{height:45.614100px;}
.he{height:45.826172px;}
.hd{height:45.858398px;}
.h3{height:47.791992px;}
.h11{height:53.179453px;}
.ha{height:58.365234px;}
.h4{height:64.793109px;}
.h8{height:74.859375px;}
.h9{height:75.635016px;}
.h2{height:102.246094px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x4{left:55.062900px;}
.x6{left:69.094500px;}
.x1{left:76.663050px;}
.x5{left:85.060050px;}
.x3{left:90.694500px;}
.x2{left:106.663050px;}
.x8{left:146.267850px;}
.x7{left:541.723350px;}
@media print{
.v6{vertical-align:-18.292800pt;}
.v3{vertical-align:-10.656000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.005333pt;}
.v5{vertical-align:18.292800pt;}
.v2{vertical-align:28.437333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000267pt;}
.lsd{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.768000pt;}
.lse{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.194667pt;}
.lsb{letter-spacing:1.365333pt;}
.ls1{letter-spacing:1.466667pt;}
.ls4{letter-spacing:1.706667pt;}
.lsf{letter-spacing:1.834667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls3{letter-spacing:2.389333pt;}
.lsc{letter-spacing:2.688000pt;}
.lsa{letter-spacing:2.858667pt;}
.ls8{letter-spacing:3.131200pt;}
.ls9{letter-spacing:3.157333pt;}
.ws0{word-spacing:-135.333333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.733333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws6{word-spacing:-8.006533pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:582.995733pt;}
.ws4{word-spacing:584.771733pt;}
._8{margin-left:-7.914133pt;}
._b{margin-left:-6.811200pt;}
._6{margin-left:-5.635733pt;}
._2{margin-left:-4.416000pt;}
._4{margin-left:-3.241067pt;}
._0{margin-left:-2.000000pt;}
._1{margin-left:-1.072533pt;}
._3{width:1.538133pt;}
._9{width:2.992000pt;}
._5{width:4.724267pt;}
._a{width:5.696000pt;}
._7{width:6.811733pt;}
._d{width:7.709867pt;}
._c{width:8.682667pt;}
._10{width:9.768533pt;}
._f{width:11.569600pt;}
._e{width:12.710933pt;}
.fs9{font-size:18.656000pt;}
.fsc{font-size:32.026133pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:49.749333pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:58.666667pt;}
.fsb{font-size:65.280000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:48.186133pt;}
.y8{bottom:57.519467pt;}
.y55{bottom:67.999867pt;}
.yaa{bottom:68.000133pt;}
.yf8{bottom:70.663867pt;}
.y2a{bottom:70.664000pt;}
.y7b{bottom:79.999867pt;}
.yb9{bottom:80.000133pt;}
.y54{bottom:82.663867pt;}
.ya9{bottom:82.664133pt;}
.y53{bottom:91.999867pt;}
.ya8{bottom:92.000133pt;}
.y7a{bottom:94.663867pt;}
.y29{bottom:100.913467pt;}
.y52{bottom:103.999867pt;}
.yb8{bottom:104.000133pt;}
.yd8{bottom:106.663867pt;}
.ya7{bottom:106.664133pt;}
.y51{bottom:115.999867pt;}
.ya6{bottom:116.000133pt;}
.y28{bottom:118.513467pt;}
.y79{bottom:118.663867pt;}
.y50{bottom:127.999867pt;}
.yb7{bottom:128.000133pt;}
.yf7{bottom:130.663867pt;}
.ya5{bottom:130.664133pt;}
.y27{bottom:136.113467pt;}
.y4f{bottom:139.999867pt;}
.ya4{bottom:140.000133pt;}
.yf6{bottom:142.663867pt;}
.y143{bottom:148.249733pt;}
.y78{bottom:151.999867pt;}
.ya3{bottom:152.000133pt;}
.y26{bottom:153.713467pt;}
.y4e{bottom:154.663867pt;}
.y4d{bottom:163.999867pt;}
.ya2{bottom:164.000133pt;}
.y142{bottom:164.729733pt;}
.y147{bottom:164.743067pt;}
.yf5{bottom:166.663867pt;}
.y25{bottom:171.313467pt;}
.yf4{bottom:175.999867pt;}
.y4c{bottom:178.663867pt;}
.ya1{bottom:178.664133pt;}
.y141{bottom:181.209733pt;}
.y146{bottom:181.223067pt;}
.y120{bottom:182.649733pt;}
.y13a{bottom:182.663067pt;}
.y4b{bottom:187.999867pt;}
.ya0{bottom:188.000133pt;}
.y24{bottom:188.913467pt;}
.y145{bottom:190.663867pt;}
.y140{bottom:197.689733pt;}
.y116{bottom:197.703067pt;}
.y11f{bottom:199.129733pt;}
.y139{bottom:199.143067pt;}
.y77{bottom:199.999867pt;}
.y4a{bottom:202.663867pt;}
.y9f{bottom:202.664133pt;}
.y23{bottom:206.513467pt;}
.y76{bottom:211.999867pt;}
.y9e{bottom:212.000133pt;}
.y13f{bottom:214.169733pt;}
.y115{bottom:214.183067pt;}
.y104{bottom:214.663867pt;}
.y11e{bottom:215.609733pt;}
.y138{bottom:215.623067pt;}
.y75{bottom:223.999867pt;}
.y9d{bottom:224.000133pt;}
.y22{bottom:224.113467pt;}
.y103{bottom:226.663867pt;}
.y49{bottom:228.081733pt;}
.yf3{bottom:230.649733pt;}
.y13e{bottom:230.663067pt;}
.y114{bottom:230.663200pt;}
.y11d{bottom:232.089733pt;}
.y137{bottom:232.103067pt;}
.y74{bottom:235.999867pt;}
.y9c{bottom:236.000133pt;}
.y148{bottom:238.663867pt;}
.y21{bottom:241.713467pt;}
.y48{bottom:244.561733pt;}
.yf2{bottom:247.129733pt;}
.y13d{bottom:247.143067pt;}
.y113{bottom:247.143200pt;}
.y73{bottom:247.999867pt;}
.y9b{bottom:248.000133pt;}
.y11c{bottom:248.569733pt;}
.y136{bottom:248.583067pt;}
.yd7{bottom:250.663867pt;}
.y20{bottom:259.313467pt;}
.yd6{bottom:259.999867pt;}
.yb6{bottom:260.000133pt;}
.y47{bottom:261.041733pt;}
.y72{bottom:262.663867pt;}
.y9a{bottom:262.664133pt;}
.yf1{bottom:263.609733pt;}
.y13c{bottom:263.623067pt;}
.y102{bottom:263.623200pt;}
.y11b{bottom:265.049733pt;}
.y135{bottom:265.063067pt;}
.y71{bottom:271.999867pt;}
.y99{bottom:272.000133pt;}
.y144{bottom:274.663867pt;}
.y1f{bottom:276.913467pt;}
.y46{bottom:277.521733pt;}
.yf0{bottom:280.089733pt;}
.y13b{bottom:280.103067pt;}
.y101{bottom:280.103200pt;}
.y11a{bottom:281.529733pt;}
.y134{bottom:281.543067pt;}
.y70{bottom:283.999867pt;}
.yb5{bottom:284.000133pt;}
.yd5{bottom:286.663867pt;}
.y98{bottom:286.664133pt;}
.y45{bottom:294.001733pt;}
.y128{bottom:295.999867pt;}
.y97{bottom:296.000133pt;}
.yef{bottom:296.569733pt;}
.y111{bottom:296.583067pt;}
.y100{bottom:296.583200pt;}
.y119{bottom:298.009733pt;}
.y133{bottom:298.023067pt;}
.y6f{bottom:298.663867pt;}
.y1e{bottom:301.180133pt;}
.y127{bottom:307.999867pt;}
.y96{bottom:308.000133pt;}
.y44{bottom:310.481733pt;}
.yee{bottom:313.049733pt;}
.yff{bottom:313.063067pt;}
.y112{bottom:313.063200pt;}
.y118{bottom:314.489733pt;}
.y126{bottom:319.999867pt;}
.y95{bottom:320.000133pt;}
.y1d{bottom:325.180000pt;}
.y132{bottom:326.503067pt;}
.y43{bottom:326.961733pt;}
.yed{bottom:329.529733pt;}
.yfe{bottom:329.543067pt;}
.yd4{bottom:329.543200pt;}
.y6e{bottom:330.969733pt;}
.y131{bottom:331.999867pt;}
.y94{bottom:332.000133pt;}
.y125{bottom:334.663867pt;}
.y1c{bottom:341.660000pt;}
.y42{bottom:343.441733pt;}
.y130{bottom:343.999867pt;}
.yec{bottom:346.009733pt;}
.yfd{bottom:346.023067pt;}
.yd3{bottom:346.023200pt;}
.yb4{bottom:346.664000pt;}
.y6d{bottom:347.449733pt;}
.yb3{bottom:356.000133pt;}
.y1b{bottom:358.140000pt;}
.y12f{bottom:358.663867pt;}
.y41{bottom:359.921733pt;}
.yeb{bottom:362.489733pt;}
.y12a{bottom:362.503067pt;}
.yd2{bottom:362.503200pt;}
.y6c{bottom:363.929733pt;}
.y12e{bottom:367.999867pt;}
.yb2{bottom:368.000133pt;}
.y1a{bottom:374.620000pt;}
.y40{bottom:376.401733pt;}
.yea{bottom:378.969733pt;}
.y93{bottom:378.969867pt;}
.y129{bottom:378.983067pt;}
.yd1{bottom:378.983200pt;}
.yb1{bottom:380.000133pt;}
.y6b{bottom:380.409733pt;}
.y12d{bottom:382.663867pt;}
.y19{bottom:391.100000pt;}
.y12c{bottom:391.999867pt;}
.yb0{bottom:392.000133pt;}
.y3f{bottom:392.881733pt;}
.ye9{bottom:395.449733pt;}
.y92{bottom:395.449867pt;}
.y124{bottom:395.463067pt;}
.yd0{bottom:395.463200pt;}
.y6a{bottom:396.889733pt;}
.yaf{bottom:404.000133pt;}
.y12b{bottom:406.663867pt;}
.y18{bottom:407.580000pt;}
.y3e{bottom:409.361733pt;}
.ye8{bottom:411.929733pt;}
.y91{bottom:411.929867pt;}
.y123{bottom:411.943067pt;}
.ycf{bottom:411.943200pt;}
.y69{bottom:413.369733pt;}
.yae{bottom:418.664000pt;}
.y17{bottom:424.060000pt;}
.y3d{bottom:425.841733pt;}
.yad{bottom:428.000133pt;}
.ye7{bottom:428.409733pt;}
.y90{bottom:428.409867pt;}
.yfc{bottom:428.423067pt;}
.yce{bottom:428.423200pt;}
.y68{bottom:429.849733pt;}
.y7{bottom:436.128800pt;}
.y16{bottom:440.540000pt;}
.y3c{bottom:442.321733pt;}
.yac{bottom:442.664000pt;}
.ye6{bottom:444.889733pt;}
.y8f{bottom:444.889867pt;}
.ycd{bottom:444.903067pt;}
.y110{bottom:444.903200pt;}
.y67{bottom:446.329733pt;}
.y6{bottom:450.528800pt;}
.y15{bottom:457.020000pt;}
.y3b{bottom:458.801733pt;}
.ye5{bottom:461.369733pt;}
.y8e{bottom:461.369867pt;}
.ycc{bottom:461.383067pt;}
.y10f{bottom:461.383200pt;}
.y66{bottom:462.809733pt;}
.y5{bottom:464.928800pt;}
.y14{bottom:473.500000pt;}
.y117{bottom:474.809733pt;}
.y3a{bottom:475.281733pt;}
.ye4{bottom:477.849733pt;}
.y8d{bottom:477.849867pt;}
.ycb{bottom:477.863067pt;}
.y10e{bottom:477.863200pt;}
.y65{bottom:479.289733pt;}
.y4{bottom:479.328800pt;}
.y13{bottom:489.980000pt;}
.y39{bottom:491.761733pt;}
.ye3{bottom:494.329733pt;}
.y8c{bottom:494.329867pt;}
.yca{bottom:494.343067pt;}
.y10d{bottom:494.343200pt;}
.y64{bottom:495.769733pt;}
.y12{bottom:506.460000pt;}
.y38{bottom:508.241733pt;}
.ye2{bottom:510.809733pt;}
.y8b{bottom:510.809867pt;}
.yc9{bottom:510.823067pt;}
.y10c{bottom:510.823200pt;}
.y63{bottom:512.249733pt;}
.y11{bottom:522.940000pt;}
.y37{bottom:524.721733pt;}
.ye1{bottom:527.289733pt;}
.y8a{bottom:527.289867pt;}
.yc8{bottom:527.303067pt;}
.y122{bottom:527.303200pt;}
.y62{bottom:528.729733pt;}
.y10{bottom:539.420000pt;}
.y36{bottom:541.201733pt;}
.ye0{bottom:543.769733pt;}
.y89{bottom:543.769867pt;}
.yfb{bottom:543.783067pt;}
.yc7{bottom:543.783200pt;}
.y61{bottom:545.209733pt;}
.yf{bottom:555.900000pt;}
.y35{bottom:557.681733pt;}
.ydf{bottom:560.249733pt;}
.y88{bottom:560.249867pt;}
.yfa{bottom:560.263067pt;}
.yc6{bottom:560.263200pt;}
.y60{bottom:561.689733pt;}
.y34{bottom:574.161733pt;}
.yde{bottom:576.729733pt;}
.y87{bottom:576.729867pt;}
.yf9{bottom:576.743067pt;}
.yc5{bottom:576.743200pt;}
.y5f{bottom:578.169733pt;}
.ye{bottom:579.046800pt;}
.y33{bottom:590.641733pt;}
.y3{bottom:592.618400pt;}
.ydd{bottom:593.209733pt;}
.y86{bottom:593.209867pt;}
.yc4{bottom:593.223067pt;}
.y121{bottom:593.223200pt;}
.y5e{bottom:594.649733pt;}
.y32{bottom:607.121733pt;}
.ydc{bottom:609.689733pt;}
.y85{bottom:609.689867pt;}
.yc3{bottom:609.703067pt;}
.y10b{bottom:609.703200pt;}
.y2{bottom:611.553067pt;}
.y5d{bottom:623.129733pt;}
.y31{bottom:623.601733pt;}
.ydb{bottom:626.169733pt;}
.y84{bottom:626.169867pt;}
.yc2{bottom:626.183067pt;}
.y10a{bottom:626.183200pt;}
.yd{bottom:629.721467pt;}
.y1{bottom:641.153067pt;}
.yda{bottom:642.649733pt;}
.y83{bottom:642.649867pt;}
.yc1{bottom:642.663067pt;}
.y109{bottom:642.663200pt;}
.y30{bottom:652.081600pt;}
.yc{bottom:653.446800pt;}
.y5c{bottom:659.129733pt;}
.y82{bottom:659.129867pt;}
.yc0{bottom:659.143067pt;}
.y108{bottom:659.143200pt;}
.y5b{bottom:675.609733pt;}
.y81{bottom:675.609867pt;}
.ybf{bottom:675.623067pt;}
.y107{bottom:675.623200pt;}
.y2f{bottom:688.081733pt;}
.y5a{bottom:692.089733pt;}
.y80{bottom:692.089867pt;}
.ybe{bottom:692.103067pt;}
.y106{bottom:692.103200pt;}
.yb{bottom:705.174800pt;}
.y2e{bottom:705.681733pt;}
.y59{bottom:708.569733pt;}
.y7f{bottom:708.569867pt;}
.ybd{bottom:708.583067pt;}
.y105{bottom:708.583200pt;}
.y2d{bottom:723.281733pt;}
.y58{bottom:725.049733pt;}
.y7e{bottom:725.049867pt;}
.ybc{bottom:725.063067pt;}
.ya{bottom:731.180133pt;}
.y2c{bottom:740.881733pt;}
.y57{bottom:741.529733pt;}
.y7d{bottom:741.529867pt;}
.ybb{bottom:741.543067pt;}
.yd9{bottom:805.116000pt;}
.y56{bottom:805.116133pt;}
.yab{bottom:805.116267pt;}
.yba{bottom:805.800000pt;}
.y2b{bottom:805.800133pt;}
.y7c{bottom:805.800267pt;}
.hf{height:18.989833pt;}
.h18{height:18.990367pt;}
.h7{height:25.940104pt;}
.h15{height:29.625000pt;}
.h14{height:29.645833pt;}
.h16{height:33.328125pt;}
.h10{height:33.351562pt;}
.h5{height:34.757812pt;}
.h6{height:37.429688pt;}
.h12{height:38.142187pt;}
.hc{height:38.169010pt;}
.hb{height:38.619792pt;}
.h17{height:40.544800pt;}
.h13{height:40.545333pt;}
.h19{height:40.545866pt;}
.he{height:40.734375pt;}
.hd{height:40.763021pt;}
.h3{height:42.481771pt;}
.h11{height:47.270625pt;}
.ha{height:51.880208pt;}
.h4{height:57.593875pt;}
.h8{height:66.541667pt;}
.h9{height:67.231125pt;}
.h2{height:90.885417pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x4{left:48.944800pt;}
.x6{left:61.417333pt;}
.x1{left:68.144933pt;}
.x5{left:75.608933pt;}
.x3{left:80.617333pt;}
.x2{left:94.811600pt;}
.x8{left:130.015867pt;}
.x7{left:481.531867pt;}
}

