
    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_da18bfff852e0941ce481e20.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_5f1652a403a7a3c2311828bf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_e1e29a591cfdabad1d72715c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.157227;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_685174fdda555e0b0135c0b0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_9be1ab3ccd46864d5ed9263f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.170898;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.053216px;}
.lse{letter-spacing:-0.854496px;}
.lsd{letter-spacing:-0.834624px;}
.lsa{letter-spacing:-0.558579px;}
.ls5{letter-spacing:-0.349112px;}
.lsc{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.034911px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.070200px;}
.ls3{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.139645px;}
.ls10{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.198720px;}
.ls6{letter-spacing:0.364320px;}
.ls4{letter-spacing:2.747520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-17.734888px;}
.ws2{word-spacing:-17.595243px;}
.ws4{word-spacing:-17.246131px;}
.ws5{word-spacing:-17.056800px;}
.ws7{word-spacing:-17.036664px;}
.ws6{word-spacing:-16.891200px;}
.ws3{word-spacing:-16.692480px;}
.ws0{word-spacing:-15.119280px;}
.ws9{word-spacing:-14.343948px;}
.wsa{word-spacing:-13.608000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-5.279530px;}
._6{margin-left:-3.984235px;}
._2{margin-left:-2.808000px;}
._0{margin-left:-1.169525px;}
._1{width:1.361525px;}
._4{width:2.848320px;}
._3{width:4.504320px;}
._5{width:5.961600px;}
._7{width:7.617600px;}
._a{width:9.074880px;}
._8{width:10.134720px;}
._9{width:11.635445px;}
._d{width:12.763670px;}
._14{width:13.910400px;}
._c{width:18.149760px;}
._12{width:20.466000px;}
._13{width:21.846950px;}
._10{width:23.713920px;}
._11{width:25.038720px;}
._f{width:29.808000px;}
._e{width:30.867840px;}
.fc1{color:rgb(181,8,46);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.120000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:50.848916px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:224.670000px;}
.y3{bottom:241.950000px;}
.y2{bottom:256.170000px;}
.y29{bottom:272.550000px;}
.y84{bottom:275.430000px;}
.y4b{bottom:283.530000px;}
.yb0{bottom:289.830000px;}
.y28{bottom:291.090000px;}
.y27{bottom:295.590000px;}
.y83{bottom:296.850000px;}
.ya2{bottom:299.910000px;}
.y6e{bottom:305.130000px;}
.y4a{bottom:306.210000px;}
.yf5{bottom:306.930000px;}
.y26{bottom:308.550000px;}
.yd5{bottom:309.810000px;}
.yaf{bottom:312.510000px;}
.y82{bottom:315.390000px;}
.y119{bottom:318.990000px;}
.ya1{bottom:322.770000px;}
.y6d{bottom:323.670000px;}
.yf4{bottom:325.650000px;}
.yd4{bottom:328.350000px;}
.y49{bottom:328.890000px;}
.yd3{bottom:332.850000px;}
.y81{bottom:334.110000px;}
.yae{bottom:335.370000px;}
.y118{bottom:338.790000px;}
.y25{bottom:341.670000px;}
.y6c{bottom:342.390000px;}
.yf3{bottom:344.190000px;}
.ya0{bottom:345.450000px;}
.yd2{bottom:345.810000px;}
.y48{bottom:351.750000px;}
.y80{bottom:352.650000px;}
.yad{bottom:358.050000px;}
.y117{bottom:358.590000px;}
.ycc{bottom:360.030000px;}
.y6b{bottom:360.930000px;}
.yf2{bottom:364.170000px;}
.y24{bottom:364.350000px;}
.y9f{bottom:368.310000px;}
.y7f{bottom:371.370000px;}
.yd1{bottom:373.350000px;}
.y47{bottom:374.430000px;}
.y116{bottom:378.210000px;}
.y6a{bottom:380.730000px;}
.ycb{bottom:382.710000px;}
.yf1{bottom:386.850000px;}
.y23{bottom:387.210000px;}
.y7e{bottom:389.910000px;}
.y9e{bottom:390.990000px;}
.yd0{bottom:391.890000px;}
.y46{bottom:397.110000px;}
.y115{bottom:398.010000px;}
.y69{bottom:403.590000px;}
.yca{bottom:405.390000px;}
.y7d{bottom:408.450000px;}
.yf0{bottom:409.530000px;}
.y22{bottom:409.890000px;}
.ycf{bottom:410.610000px;}
.y9d{bottom:413.670000px;}
.y114{bottom:417.855000px;}
.y45{bottom:420.015000px;}
.y68{bottom:426.315000px;}
.yc9{bottom:428.295000px;}
.y7c{bottom:428.475000px;}
.yce{bottom:429.195000px;}
.yef{bottom:432.435000px;}
.y21{bottom:432.615000px;}
.y9c{bottom:436.575000px;}
.y113{bottom:437.655000px;}
.y44{bottom:442.695000px;}
.y67{bottom:449.175000px;}
.yc8{bottom:450.975000px;}
.y7b{bottom:451.155000px;}
.yee{bottom:455.115000px;}
.y20{bottom:455.475000px;}
.y112{bottom:459.075000px;}
.y9b{bottom:459.255000px;}
.y43{bottom:465.375000px;}
.y66{bottom:471.855000px;}
.yc7{bottom:473.655000px;}
.y7a{bottom:473.835000px;}
.y111{bottom:477.615000px;}
.yed{bottom:477.795000px;}
.y1f{bottom:478.155000px;}
.y9a{bottom:481.935000px;}
.y42{bottom:488.235000px;}
.y65{bottom:494.535000px;}
.y110{bottom:496.155000px;}
.yc6{bottom:496.515000px;}
.y79{bottom:496.695000px;}
.yec{bottom:500.655000px;}
.y1e{bottom:500.835000px;}
.y99{bottom:504.795000px;}
.y41{bottom:510.915000px;}
.y10f{bottom:514.875000px;}
.y64{bottom:517.395000px;}
.yc5{bottom:519.195000px;}
.y78{bottom:519.375000px;}
.yeb{bottom:523.335000px;}
.y1d{bottom:523.695000px;}
.y98{bottom:527.475000px;}
.y10e{bottom:533.415000px;}
.y40{bottom:533.775000px;}
.y63{bottom:540.075000px;}
.yc4{bottom:541.875000px;}
.y77{bottom:542.055000px;}
.yea{bottom:546.015000px;}
.y1c{bottom:546.375000px;}
.y97{bottom:550.155000px;}
.y10d{bottom:551.955000px;}
.y3f{bottom:556.455000px;}
.y62{bottom:562.755000px;}
.yc3{bottom:564.735000px;}
.y76{bottom:564.915000px;}
.ye9{bottom:568.875000px;}
.y10c{bottom:569.055000px;}
.y1b{bottom:569.235000px;}
.y96{bottom:573.015000px;}
.y3e{bottom:579.135000px;}
.y61{bottom:585.615000px;}
.yc2{bottom:587.415000px;}
.y75{bottom:587.595000px;}
.y10b{bottom:588.855000px;}
.ye8{bottom:591.555000px;}
.y1a{bottom:591.915000px;}
.y95{bottom:595.695000px;}
.y3d{bottom:601.995000px;}
.y60{bottom:608.295000px;}
.y10a{bottom:608.655000px;}
.yc1{bottom:610.275000px;}
.y74{bottom:610.455000px;}
.ye7{bottom:614.415000px;}
.y19{bottom:614.595000px;}
.y94{bottom:618.555000px;}
.y3c{bottom:624.675000px;}
.y109{bottom:628.455000px;}
.y5f{bottom:630.975000px;}
.yc0{bottom:632.955000px;}
.y73{bottom:633.135000px;}
.ye6{bottom:637.095000px;}
.y17{bottom:637.455000px;}
.y93{bottom:641.235000px;}
.y18{bottom:643.395000px;}
.y3b{bottom:647.355000px;}
.y108{bottom:648.255000px;}
.y5e{bottom:652.575000px;}
.yac{bottom:653.835000px;}
.ybf{bottom:655.635000px;}
.y72{bottom:655.815000px;}
.y16{bottom:658.875000px;}
.ye5{bottom:659.775000px;}
.y92{bottom:663.945000px;}
.y107{bottom:668.085000px;}
.y3a{bottom:670.245000px;}
.y5d{bottom:671.145000px;}
.yab{bottom:676.545000px;}
.y15{bottom:677.445000px;}
.ybe{bottom:678.525000px;}
.y71{bottom:678.705000px;}
.ye4{bottom:682.665000px;}
.y91{bottom:686.805000px;}
.y106{bottom:687.885000px;}
.y5c{bottom:689.865000px;}
.y39{bottom:692.925000px;}
.y14{bottom:696.165000px;}
.yaa{bottom:699.405000px;}
.ybd{bottom:699.945000px;}
.y70{bottom:701.385000px;}
.ye3{bottom:705.345000px;}
.y105{bottom:707.685000px;}
.y5b{bottom:708.405000px;}
.y90{bottom:709.485000px;}
.y13{bottom:714.705000px;}
.y38{bottom:715.605000px;}
.ybc{bottom:718.485000px;}
.ya9{bottom:722.085000px;}
.y6f{bottom:724.065000px;}
.y5a{bottom:726.945000px;}
.y104{bottom:727.305000px;}
.ye2{bottom:728.025000px;}
.y8f{bottom:732.165000px;}
.y12{bottom:733.425000px;}
.ybb{bottom:737.205000px;}
.y37{bottom:738.465000px;}
.ya8{bottom:744.765000px;}
.y59{bottom:746.925000px;}
.y103{bottom:747.105000px;}
.ye1{bottom:750.885000px;}
.y11{bottom:751.965000px;}
.y8e{bottom:755.025000px;}
.yba{bottom:755.745000px;}
.y36{bottom:761.145000px;}
.ya7{bottom:766.365000px;}
.y102{bottom:766.905000px;}
.y58{bottom:769.605000px;}
.y10{bottom:770.505000px;}
.ye0{bottom:773.565000px;}
.yb9{bottom:774.465000px;}
.y8d{bottom:777.705000px;}
.y35{bottom:784.005000px;}
.ya6{bottom:784.905000px;}
.y101{bottom:786.705000px;}
.yf{bottom:789.225000px;}
.y57{bottom:792.465000px;}
.yb8{bottom:793.005000px;}
.ydf{bottom:796.425000px;}
.y8c{bottom:800.385000px;}
.ya5{bottom:803.445000px;}
.y100{bottom:806.505000px;}
.y34{bottom:806.685000px;}
.ye{bottom:807.765000px;}
.yb7{bottom:811.545000px;}
.y56{bottom:815.145000px;}
.yde{bottom:819.105000px;}
.ya4{bottom:822.165000px;}
.y8b{bottom:823.245000px;}
.yff{bottom:826.305000px;}
.yd{bottom:826.485000px;}
.y33{bottom:829.365000px;}
.yb6{bottom:830.265000px;}
.y55{bottom:837.825000px;}
.ya3{bottom:840.705000px;}
.ydd{bottom:841.785000px;}
.yc{bottom:845.025000px;}
.y8a{bottom:845.925000px;}
.yfe{bottom:846.105000px;}
.yb5{bottom:848.805000px;}
.y32{bottom:852.225000px;}
.y54{bottom:860.685000px;}
.yb{bottom:863.565000px;}
.ydc{bottom:864.645000px;}
.yfd{bottom:865.905000px;}
.yb4{bottom:867.525000px;}
.y89{bottom:868.785000px;}
.y31{bottom:874.905000px;}
.y53{bottom:883.365000px;}
.ya{bottom:884.265000px;}
.yfc{bottom:885.525000px;}
.yb3{bottom:886.065000px;}
.ydb{bottom:887.325000px;}
.y88{bottom:890.205000px;}
.y30{bottom:897.585000px;}
.yb2{bottom:904.650000px;}
.y52{bottom:906.090000px;}
.yfb{bottom:906.990000px;}
.y87{bottom:908.790000px;}
.y9{bottom:909.150000px;}
.yda{bottom:910.050000px;}
.y2f{bottom:920.490000px;}
.yb1{bottom:923.370000px;}
.yfa{bottom:925.530000px;}
.y86{bottom:927.510000px;}
.y51{bottom:928.950000px;}
.yd9{bottom:932.910000px;}
.y8{bottom:933.990000px;}
.y2e{bottom:943.170000px;}
.yf9{bottom:944.250000px;}
.y85{bottom:946.050000px;}
.y50{bottom:951.630000px;}
.yd8{bottom:954.330000px;}
.ycd{bottom:958.470000px;}
.y7{bottom:958.830000px;}
.yf8{bottom:962.790000px;}
.y2d{bottom:966.030000px;}
.yd7{bottom:972.870000px;}
.y4f{bottom:974.310000px;}
.yf7{bottom:981.330000px;}
.y6{bottom:983.670000px;}
.y2c{bottom:988.710000px;}
.yd6{bottom:991.590000px;}
.y4e{bottom:997.170000px;}
.yf6{bottom:1000.050000px;}
.y5{bottom:1008.510000px;}
.y2b{bottom:1010.130000px;}
.y4d{bottom:1016.070000px;}
.y1{bottom:1028.490000px;}
.y2a{bottom:1028.850000px;}
.y4c{bottom:1030.470000px;}
.hb{height:28.220625px;}
.hd{height:30.969141px;}
.h2{height:35.991211px;}
.h3{height:36.180000px;}
.hf{height:36.355078px;}
.h5{height:45.107227px;}
.h4{height:47.546716px;}
.hc{height:48.656250px;}
.h7{height:50.493164px;}
.h8{height:53.223936px;}
.he{height:55.879102px;}
.h9{height:61.938281px;}
.ha{height:65.288028px;}
.h6{height:67.324219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:191.369987px;}
.xe{left:195.509987px;}
.x28{left:208.289987px;}
.x9{left:212.609987px;}
.x2f{left:215.669987px;}
.x4c{left:216.749987px;}
.x1c{left:220.169987px;}
.x17{left:224.309987px;}
.x8{left:241.049987px;}
.x33{left:243.209987px;}
.x49{left:250.589987px;}
.x2b{left:254.009987px;}
.x19{left:256.169987px;}
.x51{left:261.389987px;}
.x47{left:271.829973px;}
.x29{left:274.889987px;}
.x48{left:276.689987px;}
.x12{left:279.209987px;}
.x2c{left:281.234987px;}
.x6{left:284.654987px;}
.x14{left:288.434987px;}
.x1a{left:291.314987px;}
.x2{left:299.054987px;}
.x1f{left:306.074987px;}
.x34{left:316.874987px;}
.x5{left:326.954987px;}
.x58{left:336.134987px;}
.x52{left:341.894987px;}
.x37{left:346.934987px;}
.x41{left:348.014987px;}
.xf{left:349.454987px;}
.x30{left:351.974987px;}
.x53{left:355.574987px;}
.x15{left:358.994987px;}
.x4f{left:371.054987px;}
.x45{left:374.834987px;}
.x3f{left:380.414987px;}
.x4d{left:392.654987px;}
.x1d{left:394.634987px;}
.x31{left:400.934987px;}
.x7{left:406.154987px;}
.x38{left:410.114987px;}
.x3{left:411.914987px;}
.x35{left:428.834987px;}
.x4a{left:439.814987px;}
.x1e{left:442.514987px;}
.x1{left:446.474987px;}
.x3c{left:447.914987px;}
.x46{left:455.834987px;}
.x32{left:457.814987px;}
.x2a{left:460.334987px;}
.x20{left:466.814987px;}
.x54{left:476.744987px;}
.x36{left:493.304987px;}
.x4b{left:499.064987px;}
.x44{left:505.724987px;}
.x55{left:508.244987px;}
.x3d{left:509.324987px;}
.x21{left:523.184987px;}
.x22{left:541.724987px;}
.xa{left:551.444987px;}
.x39{left:557.204987px;}
.x56{left:564.044987px;}
.x4e{left:573.584987px;}
.x11{left:575.024987px;}
.x40{left:578.444987px;}
.x23{left:583.664987px;}
.x2d{left:594.464987px;}
.x16{left:598.964987px;}
.x24{left:605.984987px;}
.x5a{left:611.564987px;}
.x18{left:612.824987px;}
.x2e{left:615.884987px;}
.x26{left:619.484987px;}
.x3a{left:625.064987px;}
.x59{left:627.584987px;}
.x1b{left:629.384987px;}
.x42{left:633.164987px;}
.x27{left:637.124987px;}
.x3b{left:641.264987px;}
.x50{left:645.764987px;}
.x10{left:653.324987px;}
.x25{left:656.564987px;}
.x3e{left:661.109987px;}
.x13{left:675.869987px;}
.x57{left:682.889987px;}
.x4{left:686.489987px;}
.xb{left:696.389973px;}
.x43{left:697.649987px;}
.xc{left:701.609987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.936192pt;}
.lse{letter-spacing:-0.759552pt;}
.lsd{letter-spacing:-0.741888pt;}
.lsa{letter-spacing:-0.496515pt;}
.ls5{letter-spacing:-0.310322pt;}
.lsc{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.031032pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.062400pt;}
.ls3{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.124129pt;}
.ls10{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.176640pt;}
.ls6{letter-spacing:0.323840pt;}
.ls4{letter-spacing:2.442240pt;}
.ws8{word-spacing:-15.764345pt;}
.ws2{word-spacing:-15.640216pt;}
.ws4{word-spacing:-15.329894pt;}
.ws5{word-spacing:-15.161600pt;}
.ws7{word-spacing:-15.143701pt;}
.ws6{word-spacing:-15.014400pt;}
.ws3{word-spacing:-14.837760pt;}
.ws0{word-spacing:-13.439360pt;}
.ws9{word-spacing:-12.750176pt;}
.wsa{word-spacing:-12.096000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-4.692916pt;}
._6{margin-left:-3.541542pt;}
._2{margin-left:-2.496000pt;}
._0{margin-left:-1.039578pt;}
._1{width:1.210245pt;}
._4{width:2.531840pt;}
._3{width:4.003840pt;}
._5{width:5.299200pt;}
._7{width:6.771200pt;}
._a{width:8.066560pt;}
._8{width:9.008640pt;}
._9{width:10.342618pt;}
._d{width:11.345484pt;}
._14{width:12.364800pt;}
._c{width:16.133120pt;}
._12{width:18.192000pt;}
._13{width:19.419511pt;}
._10{width:21.079040pt;}
._11{width:22.256640pt;}
._f{width:26.496000pt;}
._e{width:27.438080pt;}
.fs9{font-size:29.440000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:45.199037pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:199.706667pt;}
.y3{bottom:215.066667pt;}
.y2{bottom:227.706667pt;}
.y29{bottom:242.266667pt;}
.y84{bottom:244.826667pt;}
.y4b{bottom:252.026667pt;}
.yb0{bottom:257.626667pt;}
.y28{bottom:258.746667pt;}
.y27{bottom:262.746667pt;}
.y83{bottom:263.866667pt;}
.ya2{bottom:266.586667pt;}
.y6e{bottom:271.226667pt;}
.y4a{bottom:272.186667pt;}
.yf5{bottom:272.826667pt;}
.y26{bottom:274.266667pt;}
.yd5{bottom:275.386667pt;}
.yaf{bottom:277.786667pt;}
.y82{bottom:280.346667pt;}
.y119{bottom:283.546667pt;}
.ya1{bottom:286.906667pt;}
.y6d{bottom:287.706667pt;}
.yf4{bottom:289.466667pt;}
.yd4{bottom:291.866667pt;}
.y49{bottom:292.346667pt;}
.yd3{bottom:295.866667pt;}
.y81{bottom:296.986667pt;}
.yae{bottom:298.106667pt;}
.y118{bottom:301.146667pt;}
.y25{bottom:303.706667pt;}
.y6c{bottom:304.346667pt;}
.yf3{bottom:305.946667pt;}
.ya0{bottom:307.066667pt;}
.yd2{bottom:307.386667pt;}
.y48{bottom:312.666667pt;}
.y80{bottom:313.466667pt;}
.yad{bottom:318.266667pt;}
.y117{bottom:318.746667pt;}
.ycc{bottom:320.026667pt;}
.y6b{bottom:320.826667pt;}
.yf2{bottom:323.706667pt;}
.y24{bottom:323.866667pt;}
.y9f{bottom:327.386667pt;}
.y7f{bottom:330.106667pt;}
.yd1{bottom:331.866667pt;}
.y47{bottom:332.826667pt;}
.y116{bottom:336.186667pt;}
.y6a{bottom:338.426667pt;}
.ycb{bottom:340.186667pt;}
.yf1{bottom:343.866667pt;}
.y23{bottom:344.186667pt;}
.y7e{bottom:346.586667pt;}
.y9e{bottom:347.546667pt;}
.yd0{bottom:348.346667pt;}
.y46{bottom:352.986667pt;}
.y115{bottom:353.786667pt;}
.y69{bottom:358.746667pt;}
.yca{bottom:360.346667pt;}
.y7d{bottom:363.066667pt;}
.yf0{bottom:364.026667pt;}
.y22{bottom:364.346667pt;}
.ycf{bottom:364.986667pt;}
.y9d{bottom:367.706667pt;}
.y114{bottom:371.426667pt;}
.y45{bottom:373.346667pt;}
.y68{bottom:378.946667pt;}
.yc9{bottom:380.706667pt;}
.y7c{bottom:380.866667pt;}
.yce{bottom:381.506667pt;}
.yef{bottom:384.386667pt;}
.y21{bottom:384.546667pt;}
.y9c{bottom:388.066667pt;}
.y113{bottom:389.026667pt;}
.y44{bottom:393.506667pt;}
.y67{bottom:399.266667pt;}
.yc8{bottom:400.866667pt;}
.y7b{bottom:401.026667pt;}
.yee{bottom:404.546667pt;}
.y20{bottom:404.866667pt;}
.y112{bottom:408.066667pt;}
.y9b{bottom:408.226667pt;}
.y43{bottom:413.666667pt;}
.y66{bottom:419.426667pt;}
.yc7{bottom:421.026667pt;}
.y7a{bottom:421.186667pt;}
.y111{bottom:424.546667pt;}
.yed{bottom:424.706667pt;}
.y1f{bottom:425.026667pt;}
.y9a{bottom:428.386667pt;}
.y42{bottom:433.986667pt;}
.y65{bottom:439.586667pt;}
.y110{bottom:441.026667pt;}
.yc6{bottom:441.346667pt;}
.y79{bottom:441.506667pt;}
.yec{bottom:445.026667pt;}
.y1e{bottom:445.186667pt;}
.y99{bottom:448.706667pt;}
.y41{bottom:454.146667pt;}
.y10f{bottom:457.666667pt;}
.y64{bottom:459.906667pt;}
.yc5{bottom:461.506667pt;}
.y78{bottom:461.666667pt;}
.yeb{bottom:465.186667pt;}
.y1d{bottom:465.506667pt;}
.y98{bottom:468.866667pt;}
.y10e{bottom:474.146667pt;}
.y40{bottom:474.466667pt;}
.y63{bottom:480.066667pt;}
.yc4{bottom:481.666667pt;}
.y77{bottom:481.826667pt;}
.yea{bottom:485.346667pt;}
.y1c{bottom:485.666667pt;}
.y97{bottom:489.026667pt;}
.y10d{bottom:490.626667pt;}
.y3f{bottom:494.626667pt;}
.y62{bottom:500.226667pt;}
.yc3{bottom:501.986667pt;}
.y76{bottom:502.146667pt;}
.ye9{bottom:505.666667pt;}
.y10c{bottom:505.826667pt;}
.y1b{bottom:505.986667pt;}
.y96{bottom:509.346667pt;}
.y3e{bottom:514.786667pt;}
.y61{bottom:520.546667pt;}
.yc2{bottom:522.146667pt;}
.y75{bottom:522.306667pt;}
.y10b{bottom:523.426667pt;}
.ye8{bottom:525.826667pt;}
.y1a{bottom:526.146667pt;}
.y95{bottom:529.506667pt;}
.y3d{bottom:535.106667pt;}
.y60{bottom:540.706667pt;}
.y10a{bottom:541.026667pt;}
.yc1{bottom:542.466667pt;}
.y74{bottom:542.626667pt;}
.ye7{bottom:546.146667pt;}
.y19{bottom:546.306667pt;}
.y94{bottom:549.826667pt;}
.y3c{bottom:555.266667pt;}
.y109{bottom:558.626667pt;}
.y5f{bottom:560.866667pt;}
.yc0{bottom:562.626667pt;}
.y73{bottom:562.786667pt;}
.ye6{bottom:566.306667pt;}
.y17{bottom:566.626667pt;}
.y93{bottom:569.986667pt;}
.y18{bottom:571.906667pt;}
.y3b{bottom:575.426667pt;}
.y108{bottom:576.226667pt;}
.y5e{bottom:580.066667pt;}
.yac{bottom:581.186667pt;}
.ybf{bottom:582.786667pt;}
.y72{bottom:582.946667pt;}
.y16{bottom:585.666667pt;}
.ye5{bottom:586.466667pt;}
.y92{bottom:590.173333pt;}
.y107{bottom:593.853333pt;}
.y3a{bottom:595.773333pt;}
.y5d{bottom:596.573333pt;}
.yab{bottom:601.373333pt;}
.y15{bottom:602.173333pt;}
.ybe{bottom:603.133333pt;}
.y71{bottom:603.293333pt;}
.ye4{bottom:606.813333pt;}
.y91{bottom:610.493333pt;}
.y106{bottom:611.453333pt;}
.y5c{bottom:613.213333pt;}
.y39{bottom:615.933333pt;}
.y14{bottom:618.813333pt;}
.yaa{bottom:621.693333pt;}
.ybd{bottom:622.173333pt;}
.y70{bottom:623.453333pt;}
.ye3{bottom:626.973333pt;}
.y105{bottom:629.053333pt;}
.y5b{bottom:629.693333pt;}
.y90{bottom:630.653333pt;}
.y13{bottom:635.293333pt;}
.y38{bottom:636.093333pt;}
.ybc{bottom:638.653333pt;}
.ya9{bottom:641.853333pt;}
.y6f{bottom:643.613333pt;}
.y5a{bottom:646.173333pt;}
.y104{bottom:646.493333pt;}
.ye2{bottom:647.133333pt;}
.y8f{bottom:650.813333pt;}
.y12{bottom:651.933333pt;}
.ybb{bottom:655.293333pt;}
.y37{bottom:656.413333pt;}
.ya8{bottom:662.013333pt;}
.y59{bottom:663.933333pt;}
.y103{bottom:664.093333pt;}
.ye1{bottom:667.453333pt;}
.y11{bottom:668.413333pt;}
.y8e{bottom:671.133333pt;}
.yba{bottom:671.773333pt;}
.y36{bottom:676.573333pt;}
.ya7{bottom:681.213333pt;}
.y102{bottom:681.693333pt;}
.y58{bottom:684.093333pt;}
.y10{bottom:684.893333pt;}
.ye0{bottom:687.613333pt;}
.yb9{bottom:688.413333pt;}
.y8d{bottom:691.293333pt;}
.y35{bottom:696.893333pt;}
.ya6{bottom:697.693333pt;}
.y101{bottom:699.293333pt;}
.yf{bottom:701.533333pt;}
.y57{bottom:704.413333pt;}
.yb8{bottom:704.893333pt;}
.ydf{bottom:707.933333pt;}
.y8c{bottom:711.453333pt;}
.ya5{bottom:714.173333pt;}
.y100{bottom:716.893333pt;}
.y34{bottom:717.053333pt;}
.ye{bottom:718.013333pt;}
.yb7{bottom:721.373333pt;}
.y56{bottom:724.573333pt;}
.yde{bottom:728.093333pt;}
.ya4{bottom:730.813333pt;}
.y8b{bottom:731.773333pt;}
.yff{bottom:734.493333pt;}
.yd{bottom:734.653333pt;}
.y33{bottom:737.213333pt;}
.yb6{bottom:738.013333pt;}
.y55{bottom:744.733333pt;}
.ya3{bottom:747.293333pt;}
.ydd{bottom:748.253333pt;}
.yc{bottom:751.133333pt;}
.y8a{bottom:751.933333pt;}
.yfe{bottom:752.093333pt;}
.yb5{bottom:754.493333pt;}
.y32{bottom:757.533333pt;}
.y54{bottom:765.053333pt;}
.yb{bottom:767.613333pt;}
.ydc{bottom:768.573333pt;}
.yfd{bottom:769.693333pt;}
.yb4{bottom:771.133333pt;}
.y89{bottom:772.253333pt;}
.y31{bottom:777.693333pt;}
.y53{bottom:785.213333pt;}
.ya{bottom:786.013333pt;}
.yfc{bottom:787.133333pt;}
.yb3{bottom:787.613333pt;}
.ydb{bottom:788.733333pt;}
.y88{bottom:791.293333pt;}
.y30{bottom:797.853333pt;}
.yb2{bottom:804.133333pt;}
.y52{bottom:805.413333pt;}
.yfb{bottom:806.213333pt;}
.y87{bottom:807.813333pt;}
.y9{bottom:808.133333pt;}
.yda{bottom:808.933333pt;}
.y2f{bottom:818.213333pt;}
.yb1{bottom:820.773333pt;}
.yfa{bottom:822.693333pt;}
.y86{bottom:824.453333pt;}
.y51{bottom:825.733333pt;}
.yd9{bottom:829.253333pt;}
.y8{bottom:830.213333pt;}
.y2e{bottom:838.373333pt;}
.yf9{bottom:839.333333pt;}
.y85{bottom:840.933333pt;}
.y50{bottom:845.893333pt;}
.yd8{bottom:848.293333pt;}
.ycd{bottom:851.973333pt;}
.y7{bottom:852.293333pt;}
.yf8{bottom:855.813333pt;}
.y2d{bottom:858.693333pt;}
.yd7{bottom:864.773333pt;}
.y4f{bottom:866.053333pt;}
.yf7{bottom:872.293333pt;}
.y6{bottom:874.373333pt;}
.y2c{bottom:878.853333pt;}
.yd6{bottom:881.413333pt;}
.y4e{bottom:886.373333pt;}
.yf6{bottom:888.933333pt;}
.y5{bottom:896.453333pt;}
.y2b{bottom:897.893333pt;}
.y4d{bottom:903.173333pt;}
.y1{bottom:914.213333pt;}
.y2a{bottom:914.533333pt;}
.y4c{bottom:915.973333pt;}
.hb{height:25.085000pt;}
.hd{height:27.528125pt;}
.h2{height:31.992188pt;}
.h3{height:32.160000pt;}
.hf{height:32.315625pt;}
.h5{height:40.095312pt;}
.h4{height:42.263748pt;}
.hc{height:43.250000pt;}
.h7{height:44.882812pt;}
.h8{height:47.310165pt;}
.he{height:49.670313pt;}
.h9{height:55.056250pt;}
.ha{height:58.033803pt;}
.h6{height:59.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:170.106655pt;}
.xe{left:173.786655pt;}
.x28{left:185.146655pt;}
.x9{left:188.986655pt;}
.x2f{left:191.706655pt;}
.x4c{left:192.666655pt;}
.x1c{left:195.706655pt;}
.x17{left:199.386655pt;}
.x8{left:214.266655pt;}
.x33{left:216.186655pt;}
.x49{left:222.746655pt;}
.x2b{left:225.786655pt;}
.x19{left:227.706655pt;}
.x51{left:232.346655pt;}
.x47{left:241.626643pt;}
.x29{left:244.346655pt;}
.x48{left:245.946655pt;}
.x12{left:248.186655pt;}
.x2c{left:249.986655pt;}
.x6{left:253.026655pt;}
.x14{left:256.386655pt;}
.x1a{left:258.946655pt;}
.x2{left:265.826655pt;}
.x1f{left:272.066655pt;}
.x34{left:281.666655pt;}
.x5{left:290.626655pt;}
.x58{left:298.786655pt;}
.x52{left:303.906655pt;}
.x37{left:308.386655pt;}
.x41{left:309.346655pt;}
.xf{left:310.626655pt;}
.x30{left:312.866655pt;}
.x53{left:316.066655pt;}
.x15{left:319.106655pt;}
.x4f{left:329.826655pt;}
.x45{left:333.186655pt;}
.x3f{left:338.146655pt;}
.x4d{left:349.026655pt;}
.x1d{left:350.786655pt;}
.x31{left:356.386655pt;}
.x7{left:361.026655pt;}
.x38{left:364.546655pt;}
.x3{left:366.146655pt;}
.x35{left:381.186655pt;}
.x4a{left:390.946655pt;}
.x1e{left:393.346655pt;}
.x1{left:396.866655pt;}
.x3c{left:398.146655pt;}
.x46{left:405.186655pt;}
.x32{left:406.946655pt;}
.x2a{left:409.186655pt;}
.x20{left:414.946655pt;}
.x54{left:423.773322pt;}
.x36{left:438.493322pt;}
.x4b{left:443.613322pt;}
.x44{left:449.533322pt;}
.x55{left:451.773322pt;}
.x3d{left:452.733322pt;}
.x21{left:465.053322pt;}
.x22{left:481.533322pt;}
.xa{left:490.173322pt;}
.x39{left:495.293322pt;}
.x56{left:501.373322pt;}
.x4e{left:509.853322pt;}
.x11{left:511.133322pt;}
.x40{left:514.173322pt;}
.x23{left:518.813322pt;}
.x2d{left:528.413322pt;}
.x16{left:532.413322pt;}
.x24{left:538.653322pt;}
.x5a{left:543.613322pt;}
.x18{left:544.733322pt;}
.x2e{left:547.453322pt;}
.x26{left:550.653322pt;}
.x3a{left:555.613322pt;}
.x59{left:557.853322pt;}
.x1b{left:559.453322pt;}
.x42{left:562.813322pt;}
.x27{left:566.333322pt;}
.x3b{left:570.013322pt;}
.x50{left:574.013322pt;}
.x10{left:580.733322pt;}
.x25{left:583.613322pt;}
.x3e{left:587.653322pt;}
.x13{left:600.773322pt;}
.x57{left:607.013322pt;}
.x4{left:610.213322pt;}
.xb{left:619.013310pt;}
.x43{left:620.133322pt;}
.xc{left:623.653322pt;}
}

