
    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_99930d8988697970d952fbd8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.219000;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_8f7baa268e2babc1588f479a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.055000;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_955675098a3c533fcd979214.woff')format("woff");}.ff3{font-family:ff3;line-height:1.199000;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_4bedb61ab8411e88c5a19772.woff')format("woff");}.ff4{font-family:ff4;line-height:1.183000;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_bcdba9ae196efd7a164dd891.woff')format("woff");}.ff5{font-family:ff5;line-height:1.199000;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_ac30e267a29019d3938d255a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c9595dba2c6d023cb430820f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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;}
.m4{transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,0.277778,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.277778,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.277778,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m1{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.789200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:41.999100px;}
.v1{vertical-align:54.000000px;}
.lsf{letter-spacing:-4.326000px;}
.ls8{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.798000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.lse{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.840000px;}
.lsb{letter-spacing:1.074600px;}
.ls2{letter-spacing:1.080000px;}
.ls1{letter-spacing:7.257600px;}
.ls5{letter-spacing:13.446000px;}
.ls11{letter-spacing:15.983520px;}
.ls9{letter-spacing:16.945200px;}
.ls3{letter-spacing:17.776800px;}
.lsa{letter-spacing:19.224000px;}
.ls6{letter-spacing:20.298600px;}
.lsd{letter-spacing:285.031500px;}
.ls0{letter-spacing:500.140800px;}
.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;}
}
.ws10e{word-spacing:-27.983520px;}
.ws7{word-spacing:-13.500000px;}
.ws4d{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.000000px;}
.ws107{word-spacing:-11.340000px;}
.wsd7{word-spacing:-9.750000px;}
.wsb2{word-spacing:-9.702000px;}
.ws3{word-spacing:-9.000000px;}
.ws28{word-spacing:-1.765800px;}
.ws31{word-spacing:-0.761400px;}
.ws3e{word-spacing:-0.712800px;}
.ws3f{word-spacing:-0.702000px;}
.ws29{word-spacing:-0.648000px;}
.wsb4{word-spacing:-0.546000px;}
.ws2a{word-spacing:-0.486000px;}
.ws8b{word-spacing:-0.108000px;}
.wsb{word-spacing:-0.070200px;}
.ws42{word-spacing:-0.059400px;}
.wsa{word-spacing:-0.054000px;}
.ws6d{word-spacing:0.000000px;}
.ws33{word-spacing:0.324000px;}
.ws32{word-spacing:0.329400px;}
.ws59{word-spacing:0.432000px;}
.ws58{word-spacing:0.437400px;}
.ws71{word-spacing:0.486000px;}
.ws72{word-spacing:0.491400px;}
.ws89{word-spacing:0.810000px;}
.ws99{word-spacing:0.837000px;}
.wsba{word-spacing:0.840000px;}
.ws2b{word-spacing:0.918000px;}
.ws9a{word-spacing:0.972000px;}
.ws47{word-spacing:1.026000px;}
.ws46{word-spacing:1.036800px;}
.wsa3{word-spacing:1.075200px;}
.wsa5{word-spacing:1.079400px;}
.ws1b{word-spacing:1.080000px;}
.wsa4{word-spacing:1.092000px;}
.ws25{word-spacing:1.242000px;}
.ws2f{word-spacing:1.296000px;}
.wsc{word-spacing:1.350000px;}
.ws85{word-spacing:1.404000px;}
.ws19{word-spacing:1.458000px;}
.ws81{word-spacing:1.566000px;}
.ws80{word-spacing:1.582200px;}
.ws3c{word-spacing:1.593000px;}
.ws3b{word-spacing:1.603800px;}
.wsfe{word-spacing:1.638000px;}
.ws3a{word-spacing:1.679400px;}
.ws39{word-spacing:1.695600px;}
.ws3d{word-spacing:1.728000px;}
.ws45{word-spacing:1.782000px;}
.ws34{word-spacing:1.890000px;}
.ws9e{word-spacing:1.974000px;}
.ws22{word-spacing:2.025000px;}
.ws20{word-spacing:2.030400px;}
.ws21{word-spacing:2.041200px;}
.ws23{word-spacing:2.052000px;}
.wsf{word-spacing:2.160000px;}
.ws40{word-spacing:2.268000px;}
.ws84{word-spacing:2.305800px;}
.ws11{word-spacing:2.322000px;}
.ws6e{word-spacing:2.359800px;}
.ws26{word-spacing:2.376000px;}
.ws51{word-spacing:2.430000px;}
.wsb7{word-spacing:2.436000px;}
.ws64{word-spacing:2.538000px;}
.ws5e{word-spacing:2.592000px;}
.ws5f{word-spacing:2.619000px;}
.ws14{word-spacing:2.646000px;}
.wsb3{word-spacing:2.688000px;}
.ws61{word-spacing:2.700000px;}
.ws106{word-spacing:2.856000px;}
.wsac{word-spacing:2.885400px;}
.wsab{word-spacing:2.898000px;}
.ws65{word-spacing:2.970000px;}
.wsf9{word-spacing:2.982000px;}
.wsf8{word-spacing:3.024000px;}
.ws52{word-spacing:3.132000px;}
.ws37{word-spacing:3.186000px;}
.wsc1{word-spacing:3.213600px;}
.wse3{word-spacing:3.217500px;}
.wsed{word-spacing:3.233100px;}
.wsb0{word-spacing:3.234000px;}
.wsbc{word-spacing:3.237000px;}
.ws9b{word-spacing:3.348000px;}
.ws10c{word-spacing:3.402000px;}
.ws70{word-spacing:3.412800px;}
.ws6f{word-spacing:3.429000px;}
.wsb1{word-spacing:3.444000px;}
.ws43{word-spacing:3.456000px;}
.wsb5{word-spacing:3.473400px;}
.ws8e{word-spacing:3.483000px;}
.wsa0{word-spacing:3.486000px;}
.ws9f{word-spacing:3.528000px;}
.ws8d{word-spacing:3.553200px;}
.ws8c{word-spacing:3.558600px;}
.ws54{word-spacing:3.564000px;}
.ws1e{word-spacing:3.618000px;}
.ws1d{word-spacing:3.672000px;}
.ws102{word-spacing:3.696000px;}
.ws7b{word-spacing:3.834000px;}
.ws41{word-spacing:3.839400px;}
.ws9{word-spacing:3.888000px;}
.wsfa{word-spacing:3.948000px;}
.ws4{word-spacing:3.984000px;}
.wsa8{word-spacing:3.990000px;}
.ws8a{word-spacing:3.996000px;}
.ws1f{word-spacing:4.050000px;}
.ws92{word-spacing:4.071600px;}
.wsfc{word-spacing:4.074000px;}
.ws93{word-spacing:4.077000px;}
.ws38{word-spacing:4.104000px;}
.ws87{word-spacing:4.109400px;}
.ws15{word-spacing:4.266000px;}
.wsb9{word-spacing:4.284000px;}
.ws1c{word-spacing:4.320000px;}
.ws48{word-spacing:4.438800px;}
.wse{word-spacing:4.444200px;}
.wsd{word-spacing:4.455000px;}
.ws9c{word-spacing:4.465800px;}
.ws6{word-spacing:4.482000px;}
.ws56{word-spacing:4.590000px;}
.ws7a{word-spacing:4.644000px;}
.ws103{word-spacing:4.653600px;}
.ws104{word-spacing:4.657800px;}
.ws105{word-spacing:4.662000px;}
.wsa1{word-spacing:4.704000px;}
.wsa2{word-spacing:4.725000px;}
.ws5c{word-spacing:4.860000px;}
.wsff{word-spacing:4.872000px;}
.ws100{word-spacing:4.897200px;}
.ws7c{word-spacing:4.908600px;}
.ws7d{word-spacing:4.914000px;}
.ws2d{word-spacing:4.968000px;}
.ws109{word-spacing:5.040000px;}
.wsfb{word-spacing:5.082000px;}
.ws6b{word-spacing:5.136000px;}
.ws74{word-spacing:5.173200px;}
.ws75{word-spacing:5.184000px;}
.ws88{word-spacing:5.238000px;}
.ws53{word-spacing:5.346000px;}
.ws10{word-spacing:5.400000px;}
.ws24{word-spacing:5.670000px;}
.ws79{word-spacing:5.724000px;}
.ws49{word-spacing:5.994000px;}
.ws17{word-spacing:6.139800px;}
.ws16{word-spacing:6.150600px;}
.ws18{word-spacing:6.156000px;}
.ws2e{word-spacing:6.210000px;}
.ws108{word-spacing:6.216000px;}
.wsae{word-spacing:6.312600px;}
.ws35{word-spacing:6.318000px;}
.wsaf{word-spacing:6.342000px;}
.ws1a{word-spacing:6.372000px;}
.ws50{word-spacing:6.534000px;}
.ws101{word-spacing:6.552000px;}
.ws5d{word-spacing:6.588000px;}
.ws77{word-spacing:6.636600px;}
.ws76{word-spacing:6.642000px;}
.ws7e{word-spacing:6.696000px;}
.ws60{word-spacing:6.804000px;}
.ws4a{word-spacing:6.912000px;}
.ws2{word-spacing:6.972000px;}
.ws10f{word-spacing:6.978000px;}
.ws1{word-spacing:6.990000px;}
.ws27{word-spacing:7.128000px;}
.ws10a{word-spacing:7.224000px;}
.ws10b{word-spacing:7.228200px;}
.ws91{word-spacing:7.338600px;}
.ws90{word-spacing:7.344000px;}
.wsad{word-spacing:7.812000px;}
.ws5{word-spacing:7.968000px;}
.wsb6{word-spacing:8.022000px;}
.ws44{word-spacing:8.100000px;}
.ws67{word-spacing:8.208000px;}
.ws8{word-spacing:8.217000px;}
.ws55{word-spacing:8.262000px;}
.ws8f{word-spacing:8.586000px;}
.wsb8{word-spacing:8.652000px;}
.ws83{word-spacing:8.802000px;}
.ws2c{word-spacing:8.964000px;}
.ws6c{word-spacing:9.552000px;}
.ws97{word-spacing:9.628200px;}
.ws96{word-spacing:9.703800px;}
.ws95{word-spacing:9.720000px;}
.ws73{word-spacing:9.990000px;}
.wsfd{word-spacing:10.038000px;}
.ws63{word-spacing:10.152000px;}
.ws62{word-spacing:10.173600px;}
.ws5a{word-spacing:10.260000px;}
.ws36{word-spacing:10.422000px;}
.ws9d{word-spacing:10.500000px;}
.wsa6{word-spacing:10.584000px;}
.ws7f{word-spacing:10.746000px;}
.ws12{word-spacing:10.908000px;}
.ws30{word-spacing:11.016000px;}
.ws94{word-spacing:11.286000px;}
.wsbb{word-spacing:12.000000px;}
.ws82{word-spacing:12.258000px;}
.ws13{word-spacing:12.636000px;}
.wsaa{word-spacing:12.637800px;}
.wsa9{word-spacing:12.642000px;}
.ws66{word-spacing:12.744000px;}
.wsd8{word-spacing:12.885600px;}
.wsc9{word-spacing:12.901200px;}
.wsf5{word-spacing:12.916800px;}
.wse5{word-spacing:12.940200px;}
.ws5b{word-spacing:13.824000px;}
.ws98{word-spacing:13.932000px;}
.ws69{word-spacing:13.980600px;}
.ws6a{word-spacing:14.094000px;}
.ws86{word-spacing:14.418000px;}
.ws4f{word-spacing:15.066000px;}
.ws68{word-spacing:15.174000px;}
.ws78{word-spacing:16.578000px;}
.ws57{word-spacing:17.172000px;}
.wsda{word-spacing:17.210700px;}
.wsd3{word-spacing:17.214600px;}
.wsa7{word-spacing:19.236000px;}
.wsf0{word-spacing:21.543600px;}
.ws4b{word-spacing:23.452200px;}
.ws4e{word-spacing:23.544000px;}
.ws4c{word-spacing:24.570000px;}
.wsc3{word-spacing:25.896000px;}
.wsd1{word-spacing:29.179800px;}
.wsf7{word-spacing:31.820100px;}
.wscd{word-spacing:31.839600px;}
.wsf3{word-spacing:31.855200px;}
.wsea{word-spacing:31.859100px;}
.wsf2{word-spacing:31.890300px;}
.wscb{word-spacing:44.811000px;}
.wse9{word-spacing:45.357000px;}
.wsee{word-spacing:45.396000px;}
.wsf1{word-spacing:46.484100px;}
.wsc7{word-spacing:49.686000px;}
.wseb{word-spacing:50.793600px;}
.wsce{word-spacing:50.797500px;}
.wsf4{word-spacing:50.813100px;}
.wsbf{word-spacing:54.288000px;}
.wse4{word-spacing:56.706000px;}
.wsc8{word-spacing:59.436000px;}
.wse8{word-spacing:59.475000px;}
.wsc0{word-spacing:59.709000px;}
.wsf6{word-spacing:61.655100px;}
.wse6{word-spacing:61.666800px;}
.wsd5{word-spacing:64.311000px;}
.wsc4{word-spacing:64.857000px;}
.wsef{word-spacing:64.896000px;}
.wse0{word-spacing:69.186000px;}
.wsbd{word-spacing:69.459000px;}
.wse2{word-spacing:73.023600px;}
.wsd9{word-spacing:74.607000px;}
.wsbe{word-spacing:77.610000px;}
.wsd4{word-spacing:78.936000px;}
.wsca{word-spacing:80.589600px;}
.wse7{word-spacing:81.120000px;}
.wsd0{word-spacing:81.155100px;}
.wsc6{word-spacing:81.159000px;}
.wscc{word-spacing:83.811000px;}
.wsdf{word-spacing:84.357000px;}
.wsde{word-spacing:84.376500px;}
.wsc2{word-spacing:87.594000px;}
.wse1{word-spacing:91.962000px;}
.wsc5{word-spacing:94.107000px;}
.ws10d{word-spacing:96.000000px;}
.wsdb{word-spacing:98.436000px;}
.wsd6{word-spacing:98.631000px;}
.wsdc{word-spacing:113.061000px;}
.wsd2{word-spacing:113.607000px;}
.wsec{word-spacing:116.844000px;}
.wsdd{word-spacing:154.209900px;}
.wscf{word-spacing:182.169000px;}
._8{margin-left:-2222.944680px;}
._9{margin-left:-1082.134680px;}
._e{margin-left:-22.293600px;}
._32{margin-left:-20.516400px;}
._10{margin-left:-17.878800px;}
._c{margin-left:-16.686600px;}
._5{margin-left:-4.860000px;}
._1{margin-left:-3.223800px;}
._b{margin-left:-1.080000px;}
._2{width:1.080000px;}
._d{width:3.883800px;}
._f{width:5.209800px;}
._4{width:7.074000px;}
._7{width:12.000000px;}
._3{width:14.904000px;}
._11{width:15.984000px;}
._a{width:18.090000px;}
._2e{width:23.634000px;}
._6{width:29.754000px;}
._2b{width:54.015000px;}
._27{width:55.200600px;}
._2a{width:59.475000px;}
._1d{width:60.547500px;}
._2f{width:71.436300px;}
._25{width:73.518900px;}
._23{width:74.591400px;}
._24{width:79.006200px;}
._29{width:83.265000px;}
._26{width:86.521500px;}
._1a{width:90.936300px;}
._21{width:93.003300px;}
._19{width:94.146000px;}
._28{width:101.673000px;}
._1e{width:103.919400px;}
._2d{width:112.515000px;}
._22{width:117.975000px;}
._1b{width:123.419400px;}
._18{width:126.617400px;}
._1c{width:142.896000px;}
._2c{width:145.544100px;}
._1f{width:152.638200px;}
._30{width:153.913500px;}
._20{width:172.157700px;}
._17{width:265.863000px;}
._14{width:266.916000px;}
._15{width:274.287000px;}
._16{width:290.472000px;}
._13{width:297.375000px;}
._12{width:310.545300px;}
._0{width:1185.355200px;}
._33{width:1884.604800px;}
._31{width:2351.942400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.000000px;}
.fs8{font-size:30.000000px;}
.fs4{font-size:33.000000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:70.500000px;}
.yc1{bottom:98.989500px;}
.y71{bottom:98.998500px;}
.y74{bottom:99.000000px;}
.ye3{bottom:106.527000px;}
.yc0{bottom:110.989950px;}
.y73{bottom:112.500000px;}
.y70{bottom:114.118500px;}
.ybf{bottom:122.990400px;}
.y72{bottom:126.000000px;}
.y6e{bottom:126.238500px;}
.ye2{bottom:126.379500px;}
.y6f{bottom:129.238500px;}
.y6d{bottom:129.239400px;}
.ybe{bottom:134.990850px;}
.ye1{bottom:139.536000px;}
.y6c{bottom:144.358050px;}
.ybd{bottom:146.991300px;}
.ybc{bottom:158.991750px;}
.y6b{bottom:159.476700px;}
.ybb{bottom:170.992200px;}
.y6a{bottom:174.596700px;}
.y3d{bottom:180.001950px;}
.yba{bottom:182.992650px;}
.y69{bottom:189.716700px;}
.yb9{bottom:194.993100px;}
.y3c{bottom:195.001800px;}
.ye0{bottom:202.623000px;}
.y68{bottom:204.835350px;}
.yb8{bottom:206.993550px;}
.y3b{bottom:210.001650px;}
.yb7{bottom:218.994000px;}
.y67{bottom:219.954000px;}
.y65{bottom:219.954300px;}
.y3a{bottom:225.001500px;}
.y66{bottom:225.579000px;}
.ydf{bottom:226.135500px;}
.yb6{bottom:230.994450px;}
.y64{bottom:235.090500px;}
.y62{bottom:235.098150px;}
.y39{bottom:240.001350px;}
.y63{bottom:240.715500px;}
.yb5{bottom:242.994900px;}
.yde{bottom:245.988000px;}
.y61{bottom:250.234350px;}
.yb4{bottom:254.995350px;}
.y38{bottom:255.001200px;}
.ydd{bottom:260.503500px;}
.y60{bottom:265.370550px;}
.yb3{bottom:266.995800px;}
.y37{bottom:270.001050px;}
.yb2{bottom:278.996250px;}
.y5f{bottom:280.506750px;}
.y36{bottom:285.000900px;}
.yb1{bottom:290.996700px;}
.y5e{bottom:295.642950px;}
.y35{bottom:300.000750px;}
.yb0{bottom:302.997150px;}
.y5d{bottom:310.779150px;}
.yaf{bottom:314.997600px;}
.y34{bottom:315.000600px;}
.ydc{bottom:324.946500px;}
.y5c{bottom:325.915350px;}
.yae{bottom:326.998050px;}
.y33{bottom:330.000450px;}
.yad{bottom:338.998500px;}
.y5b{bottom:341.051550px;}
.y32{bottom:345.000300px;}
.ydb{bottom:348.457500px;}
.yac{bottom:350.998950px;}
.y5a{bottom:356.187750px;}
.y31{bottom:360.000150px;}
.yab{bottom:362.999400px;}
.yda{bottom:368.310000px;}
.y59{bottom:371.323950px;}
.yaa{bottom:374.999850px;}
.y30{bottom:375.004050px;}
.yd9{bottom:382.825500px;}
.y58{bottom:386.460150px;}
.y2f{bottom:390.003900px;}
.ya9{bottom:391.141500px;}
.y57{bottom:401.596350px;}
.y2e{bottom:405.003750px;}
.y56{bottom:416.732550px;}
.ya8{bottom:418.500000px;}
.y2d{bottom:420.003600px;}
.y55{bottom:431.868750px;}
.ya7{bottom:432.000000px;}
.y2c{bottom:435.003450px;}
.ya6{bottom:445.500000px;}
.y54{bottom:447.004950px;}
.yd8{bottom:447.268500px;}
.y2b{bottom:450.003300px;}
.y53{bottom:462.141150px;}
.y2a{bottom:465.003150px;}
.yd7{bottom:470.781000px;}
.ya5{bottom:474.000150px;}
.y52{bottom:477.277350px;}
.y29{bottom:480.003000px;}
.ya3{bottom:486.000000px;}
.ya4{bottom:489.000000px;}
.ya2{bottom:489.001200px;}
.yd6{bottom:490.632000px;}
.y51{bottom:492.413550px;}
.y28{bottom:495.002850px;}
.yd5{bottom:503.788500px;}
.ya1{bottom:504.001050px;}
.y50{bottom:507.549750px;}
.y27{bottom:510.002700px;}
.ya0{bottom:519.000900px;}
.y4f{bottom:522.685950px;}
.y26{bottom:525.002550px;}
.y9f{bottom:534.000750px;}
.y4e{bottom:537.822150px;}
.y25{bottom:540.002400px;}
.y9e{bottom:549.000600px;}
.y4d{bottom:552.958350px;}
.y24{bottom:555.002250px;}
.y9d{bottom:564.000450px;}
.yd4{bottom:566.877000px;}
.y4c{bottom:568.094550px;}
.y23{bottom:570.002100px;}
.y9c{bottom:579.000300px;}
.y4b{bottom:583.230750px;}
.y22{bottom:585.001950px;}
.y9b{bottom:594.000150px;}
.yd3{bottom:594.186000px;}
.y4a{bottom:598.366950px;}
.y21{bottom:600.001800px;}
.y99{bottom:606.000000px;}
.y9a{bottom:609.000000px;}
.y98{bottom:609.003900px;}
.y49{bottom:613.503150px;}
.yc6{bottom:613.618500px;}
.yd2{bottom:614.037000px;}
.y20{bottom:615.001650px;}
.yc5{bottom:622.618500px;}
.y97{bottom:624.003750px;}
.y48{bottom:628.639350px;}
.y1f{bottom:630.001500px;}
.yd1{bottom:634.783500px;}
.y96{bottom:639.003600px;}
.y47{bottom:643.775550px;}
.y1e{bottom:645.001350px;}
.y95{bottom:654.003450px;}
.y46{bottom:658.911750px;}
.y1d{bottom:660.001200px;}
.y76{bottom:668.275605px;}
.y94{bottom:669.003300px;}
.y45{bottom:674.047950px;}
.y1c{bottom:675.001050px;}
.yc4{bottom:681.675000px;}
.y93{bottom:684.003150px;}
.y44{bottom:689.184150px;}
.y1b{bottom:690.000900px;}
.yc3{bottom:690.676500px;}
.y92{bottom:699.003000px;}
.yd0{bottom:703.701000px;}
.y43{bottom:704.320350px;}
.y1a{bottom:705.000750px;}
.y91{bottom:714.002850px;}
.y42{bottom:719.456550px;}
.y19{bottom:720.000600px;}
.y90{bottom:729.002700px;}
.ycf{bottom:730.605000px;}
.y41{bottom:734.592750px;}
.y18{bottom:735.000450px;}
.y8f{bottom:744.002550px;}
.y40{bottom:749.728950px;}
.y17{bottom:750.000300px;}
.yce{bottom:750.456000px;}
.y8e{bottom:759.002400px;}
.y3f{bottom:764.865150px;}
.y16{bottom:765.000150px;}
.ycd{bottom:768.765000px;}
.y8d{bottom:774.002250px;}
.y15{bottom:780.000000px;}
.y3e{bottom:780.001350px;}
.y8c{bottom:789.002100px;}
.y8b{bottom:804.001950px;}
.y8a{bottom:819.001800px;}
.y14{bottom:822.000450px;}
.yc2{bottom:822.576000px;}
.y89{bottom:834.001650px;}
.ycc{bottom:835.645500px;}
.y13{bottom:837.000300px;}
.y88{bottom:849.001500px;}
.y12{bottom:852.000150px;}
.ycb{bottom:860.515500px;}
.y87{bottom:864.001350px;}
.y11{bottom:867.000000px;}
.y86{bottom:879.001200px;}
.yca{bottom:880.368000px;}
.y85{bottom:894.001050px;}
.yc9{bottom:898.677000px;}
.y10{bottom:900.000000px;}
.y84{bottom:909.000900px;}
.y83{bottom:924.000750px;}
.yf{bottom:925.500000px;}
.yd{bottom:925.500150px;}
.ye{bottom:931.125000px;}
.y104{bottom:931.492500px;}
.yf7{bottom:931.495650px;}
.y82{bottom:939.000600px;}
.yb{bottom:940.500000px;}
.y103{bottom:943.492950px;}
.yf6{bottom:943.496100px;}
.yc{bottom:946.125000px;}
.y81{bottom:954.000450px;}
.y102{bottom:955.493400px;}
.yf5{bottom:955.496550px;}
.y9{bottom:961.500000px;}
.yc8{bottom:965.557575px;}
.ya{bottom:967.125000px;}
.y101{bottom:967.493850px;}
.yf4{bottom:967.497000px;}
.y80{bottom:969.000300px;}
.y6{bottom:976.500000px;}
.y7{bottom:979.197300px;}
.y100{bottom:979.494300px;}
.yf3{bottom:979.497450px;}
.y8{bottom:982.125000px;}
.y7f{bottom:984.000150px;}
.yff{bottom:991.494750px;}
.yf2{bottom:991.497900px;}
.y7d{bottom:996.000000px;}
.y7e{bottom:999.000000px;}
.y7c{bottom:999.000750px;}
.yfe{bottom:1003.495200px;}
.yf1{bottom:1003.498350px;}
.y5{bottom:1003.500000px;}
.y7b{bottom:1014.000600px;}
.yfd{bottom:1015.495650px;}
.yf0{bottom:1015.498800px;}
.yfc{bottom:1027.496100px;}
.yef{bottom:1027.499250px;}
.y7a{bottom:1029.000450px;}
.y4{bottom:1030.500000px;}
.yfb{bottom:1039.496550px;}
.yee{bottom:1039.499700px;}
.y79{bottom:1044.000300px;}
.yfa{bottom:1051.495950px;}
.yed{bottom:1051.500150px;}
.yc7{bottom:1055.748000px;}
.y78{bottom:1059.000150px;}
.yf9{bottom:1063.495350px;}
.yec{bottom:1063.499550px;}
.y77{bottom:1074.000000px;}
.yf8{bottom:1075.495800px;}
.yeb{bottom:1075.500000px;}
.ye4{bottom:1082.961000px;}
.ye5{bottom:1082.963925px;}
.ye6{bottom:1082.964900px;}
.ye7{bottom:1082.968800px;}
.ye8{bottom:1082.970750px;}
.ye9{bottom:1082.972700px;}
.yea{bottom:1082.974650px;}
.y3{bottom:1084.500000px;}
.y2{bottom:1098.000000px;}
.y1{bottom:1111.500000px;}
.hd{height:26.001000px;}
.ha{height:28.890000px;}
.h5{height:31.779000px;}
.hc{height:37.557000px;}
.h8{height:39.774000px;}
.h9{height:40.446000px;}
.h1{height:46.224000px;}
.h6{height:51.138000px;}
.h4{height:52.002000px;}
.h7{height:68.835938px;}
.hb{height:79.556100px;}
.h3{height:92.448000px;}
.h2{height:100.224000px;}
.h0{height:1188.000000px;}
.w0{width:865.500000px;}
.x0{left:0.000000px;}
.x1{left:75.000000px;}
.x3c{left:80.250000px;}
.x23{left:87.000000px;}
.x18{left:88.500000px;}
.x3b{left:93.375000px;}
.x17{left:129.000000px;}
.x2{left:138.217500px;}
.x16{left:142.500000px;}
.x3a{left:172.314750px;}
.x4{left:182.382000px;}
.x39{left:198.189300px;}
.x38{left:210.564000px;}
.x15{left:217.069500px;}
.x37{left:222.938700px;}
.x3{left:230.634300px;}
.x36{left:235.313400px;}
.xf{left:236.692500px;}
.x35{left:247.688100px;}
.x5{left:260.764350px;}
.x12{left:266.817450px;}
.x34{left:272.437500px;}
.x33{left:292.312500px;}
.x32{left:294.561750px;}
.x31{left:305.062500px;}
.x30{left:335.437500px;}
.x2f{left:338.062500px;}
.x6{left:342.192300px;}
.xd{left:368.301000px;}
.x7{left:380.914500px;}
.x8{left:394.039500px;}
.x24{left:436.500000px;}
.x19{left:462.001350px;}
.x2d{left:467.249400px;}
.x2b{left:474.000000px;}
.x1a{left:475.505400px;}
.x2e{left:480.374400px;}
.x1f{left:494.655000px;}
.x20{left:505.155000px;}
.xe{left:515.578500px;}
.x9{left:539.826000px;}
.x13{left:545.236500px;}
.x14{left:554.979000px;}
.xa{left:557.442000px;}
.x2a{left:561.102000px;}
.x28{left:577.690500px;}
.x21{left:580.896000px;}
.x29{left:588.607500px;}
.x22{left:591.396000px;}
.x2c{left:607.069500px;}
.x1b{left:623.307000px;}
.x10{left:629.382000px;}
.x1c{left:632.712000px;}
.x11{left:639.124500px;}
.xb{left:668.042100px;}
.xc{left:709.384500px;}
.x26{left:737.926500px;}
.x27{left:748.426500px;}
.x1d{left:758.430000px;}
.x1e{left:768.754500px;}
.x25{left:837.000000px;}
@media print{
.v2{vertical-align:-9.590400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:37.332533pt;}
.v1{vertical-align:48.000000pt;}
.lsf{letter-spacing:-3.845333pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.709333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.955200pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1{letter-spacing:6.451200pt;}
.ls5{letter-spacing:11.952000pt;}
.ls11{letter-spacing:14.207573pt;}
.ls9{letter-spacing:15.062400pt;}
.ls3{letter-spacing:15.801600pt;}
.lsa{letter-spacing:17.088000pt;}
.ls6{letter-spacing:18.043200pt;}
.lsd{letter-spacing:253.361333pt;}
.ls0{letter-spacing:444.569600pt;}
.ws10e{word-spacing:-24.874240pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4d{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws107{word-spacing:-10.080000pt;}
.wsd7{word-spacing:-8.666667pt;}
.wsb2{word-spacing:-8.624000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws28{word-spacing:-1.569600pt;}
.ws31{word-spacing:-0.676800pt;}
.ws3e{word-spacing:-0.633600pt;}
.ws3f{word-spacing:-0.624000pt;}
.ws29{word-spacing:-0.576000pt;}
.wsb4{word-spacing:-0.485333pt;}
.ws2a{word-spacing:-0.432000pt;}
.ws8b{word-spacing:-0.096000pt;}
.wsb{word-spacing:-0.062400pt;}
.ws42{word-spacing:-0.052800pt;}
.wsa{word-spacing:-0.048000pt;}
.ws6d{word-spacing:0.000000pt;}
.ws33{word-spacing:0.288000pt;}
.ws32{word-spacing:0.292800pt;}
.ws59{word-spacing:0.384000pt;}
.ws58{word-spacing:0.388800pt;}
.ws71{word-spacing:0.432000pt;}
.ws72{word-spacing:0.436800pt;}
.ws89{word-spacing:0.720000pt;}
.ws99{word-spacing:0.744000pt;}
.wsba{word-spacing:0.746667pt;}
.ws2b{word-spacing:0.816000pt;}
.ws9a{word-spacing:0.864000pt;}
.ws47{word-spacing:0.912000pt;}
.ws46{word-spacing:0.921600pt;}
.wsa3{word-spacing:0.955733pt;}
.wsa5{word-spacing:0.959467pt;}
.ws1b{word-spacing:0.960000pt;}
.wsa4{word-spacing:0.970667pt;}
.ws25{word-spacing:1.104000pt;}
.ws2f{word-spacing:1.152000pt;}
.wsc{word-spacing:1.200000pt;}
.ws85{word-spacing:1.248000pt;}
.ws19{word-spacing:1.296000pt;}
.ws81{word-spacing:1.392000pt;}
.ws80{word-spacing:1.406400pt;}
.ws3c{word-spacing:1.416000pt;}
.ws3b{word-spacing:1.425600pt;}
.wsfe{word-spacing:1.456000pt;}
.ws3a{word-spacing:1.492800pt;}
.ws39{word-spacing:1.507200pt;}
.ws3d{word-spacing:1.536000pt;}
.ws45{word-spacing:1.584000pt;}
.ws34{word-spacing:1.680000pt;}
.ws9e{word-spacing:1.754667pt;}
.ws22{word-spacing:1.800000pt;}
.ws20{word-spacing:1.804800pt;}
.ws21{word-spacing:1.814400pt;}
.ws23{word-spacing:1.824000pt;}
.wsf{word-spacing:1.920000pt;}
.ws40{word-spacing:2.016000pt;}
.ws84{word-spacing:2.049600pt;}
.ws11{word-spacing:2.064000pt;}
.ws6e{word-spacing:2.097600pt;}
.ws26{word-spacing:2.112000pt;}
.ws51{word-spacing:2.160000pt;}
.wsb7{word-spacing:2.165333pt;}
.ws64{word-spacing:2.256000pt;}
.ws5e{word-spacing:2.304000pt;}
.ws5f{word-spacing:2.328000pt;}
.ws14{word-spacing:2.352000pt;}
.wsb3{word-spacing:2.389333pt;}
.ws61{word-spacing:2.400000pt;}
.ws106{word-spacing:2.538667pt;}
.wsac{word-spacing:2.564800pt;}
.wsab{word-spacing:2.576000pt;}
.ws65{word-spacing:2.640000pt;}
.wsf9{word-spacing:2.650667pt;}
.wsf8{word-spacing:2.688000pt;}
.ws52{word-spacing:2.784000pt;}
.ws37{word-spacing:2.832000pt;}
.wsc1{word-spacing:2.856533pt;}
.wse3{word-spacing:2.860000pt;}
.wsed{word-spacing:2.873867pt;}
.wsb0{word-spacing:2.874667pt;}
.wsbc{word-spacing:2.877333pt;}
.ws9b{word-spacing:2.976000pt;}
.ws10c{word-spacing:3.024000pt;}
.ws70{word-spacing:3.033600pt;}
.ws6f{word-spacing:3.048000pt;}
.wsb1{word-spacing:3.061333pt;}
.ws43{word-spacing:3.072000pt;}
.wsb5{word-spacing:3.087467pt;}
.ws8e{word-spacing:3.096000pt;}
.wsa0{word-spacing:3.098667pt;}
.ws9f{word-spacing:3.136000pt;}
.ws8d{word-spacing:3.158400pt;}
.ws8c{word-spacing:3.163200pt;}
.ws54{word-spacing:3.168000pt;}
.ws1e{word-spacing:3.216000pt;}
.ws1d{word-spacing:3.264000pt;}
.ws102{word-spacing:3.285333pt;}
.ws7b{word-spacing:3.408000pt;}
.ws41{word-spacing:3.412800pt;}
.ws9{word-spacing:3.456000pt;}
.wsfa{word-spacing:3.509333pt;}
.ws4{word-spacing:3.541333pt;}
.wsa8{word-spacing:3.546667pt;}
.ws8a{word-spacing:3.552000pt;}
.ws1f{word-spacing:3.600000pt;}
.ws92{word-spacing:3.619200pt;}
.wsfc{word-spacing:3.621333pt;}
.ws93{word-spacing:3.624000pt;}
.ws38{word-spacing:3.648000pt;}
.ws87{word-spacing:3.652800pt;}
.ws15{word-spacing:3.792000pt;}
.wsb9{word-spacing:3.808000pt;}
.ws1c{word-spacing:3.840000pt;}
.ws48{word-spacing:3.945600pt;}
.wse{word-spacing:3.950400pt;}
.wsd{word-spacing:3.960000pt;}
.ws9c{word-spacing:3.969600pt;}
.ws6{word-spacing:3.984000pt;}
.ws56{word-spacing:4.080000pt;}
.ws7a{word-spacing:4.128000pt;}
.ws103{word-spacing:4.136533pt;}
.ws104{word-spacing:4.140267pt;}
.ws105{word-spacing:4.144000pt;}
.wsa1{word-spacing:4.181333pt;}
.wsa2{word-spacing:4.200000pt;}
.ws5c{word-spacing:4.320000pt;}
.wsff{word-spacing:4.330667pt;}
.ws100{word-spacing:4.353067pt;}
.ws7c{word-spacing:4.363200pt;}
.ws7d{word-spacing:4.368000pt;}
.ws2d{word-spacing:4.416000pt;}
.ws109{word-spacing:4.480000pt;}
.wsfb{word-spacing:4.517333pt;}
.ws6b{word-spacing:4.565333pt;}
.ws74{word-spacing:4.598400pt;}
.ws75{word-spacing:4.608000pt;}
.ws88{word-spacing:4.656000pt;}
.ws53{word-spacing:4.752000pt;}
.ws10{word-spacing:4.800000pt;}
.ws24{word-spacing:5.040000pt;}
.ws79{word-spacing:5.088000pt;}
.ws49{word-spacing:5.328000pt;}
.ws17{word-spacing:5.457600pt;}
.ws16{word-spacing:5.467200pt;}
.ws18{word-spacing:5.472000pt;}
.ws2e{word-spacing:5.520000pt;}
.ws108{word-spacing:5.525333pt;}
.wsae{word-spacing:5.611200pt;}
.ws35{word-spacing:5.616000pt;}
.wsaf{word-spacing:5.637333pt;}
.ws1a{word-spacing:5.664000pt;}
.ws50{word-spacing:5.808000pt;}
.ws101{word-spacing:5.824000pt;}
.ws5d{word-spacing:5.856000pt;}
.ws77{word-spacing:5.899200pt;}
.ws76{word-spacing:5.904000pt;}
.ws7e{word-spacing:5.952000pt;}
.ws60{word-spacing:6.048000pt;}
.ws4a{word-spacing:6.144000pt;}
.ws2{word-spacing:6.197333pt;}
.ws10f{word-spacing:6.202667pt;}
.ws1{word-spacing:6.213333pt;}
.ws27{word-spacing:6.336000pt;}
.ws10a{word-spacing:6.421333pt;}
.ws10b{word-spacing:6.425067pt;}
.ws91{word-spacing:6.523200pt;}
.ws90{word-spacing:6.528000pt;}
.wsad{word-spacing:6.944000pt;}
.ws5{word-spacing:7.082667pt;}
.wsb6{word-spacing:7.130667pt;}
.ws44{word-spacing:7.200000pt;}
.ws67{word-spacing:7.296000pt;}
.ws8{word-spacing:7.304000pt;}
.ws55{word-spacing:7.344000pt;}
.ws8f{word-spacing:7.632000pt;}
.wsb8{word-spacing:7.690667pt;}
.ws83{word-spacing:7.824000pt;}
.ws2c{word-spacing:7.968000pt;}
.ws6c{word-spacing:8.490667pt;}
.ws97{word-spacing:8.558400pt;}
.ws96{word-spacing:8.625600pt;}
.ws95{word-spacing:8.640000pt;}
.ws73{word-spacing:8.880000pt;}
.wsfd{word-spacing:8.922667pt;}
.ws63{word-spacing:9.024000pt;}
.ws62{word-spacing:9.043200pt;}
.ws5a{word-spacing:9.120000pt;}
.ws36{word-spacing:9.264000pt;}
.ws9d{word-spacing:9.333333pt;}
.wsa6{word-spacing:9.408000pt;}
.ws7f{word-spacing:9.552000pt;}
.ws12{word-spacing:9.696000pt;}
.ws30{word-spacing:9.792000pt;}
.ws94{word-spacing:10.032000pt;}
.wsbb{word-spacing:10.666667pt;}
.ws82{word-spacing:10.896000pt;}
.ws13{word-spacing:11.232000pt;}
.wsaa{word-spacing:11.233600pt;}
.wsa9{word-spacing:11.237333pt;}
.ws66{word-spacing:11.328000pt;}
.wsd8{word-spacing:11.453867pt;}
.wsc9{word-spacing:11.467733pt;}
.wsf5{word-spacing:11.481600pt;}
.wse5{word-spacing:11.502400pt;}
.ws5b{word-spacing:12.288000pt;}
.ws98{word-spacing:12.384000pt;}
.ws69{word-spacing:12.427200pt;}
.ws6a{word-spacing:12.528000pt;}
.ws86{word-spacing:12.816000pt;}
.ws4f{word-spacing:13.392000pt;}
.ws68{word-spacing:13.488000pt;}
.ws78{word-spacing:14.736000pt;}
.ws57{word-spacing:15.264000pt;}
.wsda{word-spacing:15.298400pt;}
.wsd3{word-spacing:15.301867pt;}
.wsa7{word-spacing:17.098667pt;}
.wsf0{word-spacing:19.149867pt;}
.ws4b{word-spacing:20.846400pt;}
.ws4e{word-spacing:20.928000pt;}
.ws4c{word-spacing:21.840000pt;}
.wsc3{word-spacing:23.018667pt;}
.wsd1{word-spacing:25.937600pt;}
.wsf7{word-spacing:28.284533pt;}
.wscd{word-spacing:28.301867pt;}
.wsf3{word-spacing:28.315733pt;}
.wsea{word-spacing:28.319200pt;}
.wsf2{word-spacing:28.346933pt;}
.wscb{word-spacing:39.832000pt;}
.wse9{word-spacing:40.317333pt;}
.wsee{word-spacing:40.352000pt;}
.wsf1{word-spacing:41.319200pt;}
.wsc7{word-spacing:44.165333pt;}
.wseb{word-spacing:45.149867pt;}
.wsce{word-spacing:45.153333pt;}
.wsf4{word-spacing:45.167200pt;}
.wsbf{word-spacing:48.256000pt;}
.wse4{word-spacing:50.405333pt;}
.wsc8{word-spacing:52.832000pt;}
.wse8{word-spacing:52.866667pt;}
.wsc0{word-spacing:53.074667pt;}
.wsf6{word-spacing:54.804533pt;}
.wse6{word-spacing:54.814933pt;}
.wsd5{word-spacing:57.165333pt;}
.wsc4{word-spacing:57.650667pt;}
.wsef{word-spacing:57.685333pt;}
.wse0{word-spacing:61.498667pt;}
.wsbd{word-spacing:61.741333pt;}
.wse2{word-spacing:64.909867pt;}
.wsd9{word-spacing:66.317333pt;}
.wsbe{word-spacing:68.986667pt;}
.wsd4{word-spacing:70.165333pt;}
.wsca{word-spacing:71.635200pt;}
.wse7{word-spacing:72.106667pt;}
.wsd0{word-spacing:72.137867pt;}
.wsc6{word-spacing:72.141333pt;}
.wscc{word-spacing:74.498667pt;}
.wsdf{word-spacing:74.984000pt;}
.wsde{word-spacing:75.001333pt;}
.wsc2{word-spacing:77.861333pt;}
.wse1{word-spacing:81.744000pt;}
.wsc5{word-spacing:83.650667pt;}
.ws10d{word-spacing:85.333333pt;}
.wsdb{word-spacing:87.498667pt;}
.wsd6{word-spacing:87.672000pt;}
.wsdc{word-spacing:100.498667pt;}
.wsd2{word-spacing:100.984000pt;}
.wsec{word-spacing:103.861333pt;}
.wsdd{word-spacing:137.075467pt;}
.wscf{word-spacing:161.928000pt;}
._8{margin-left:-1975.950827pt;}
._9{margin-left:-961.897493pt;}
._e{margin-left:-19.816533pt;}
._32{margin-left:-18.236800pt;}
._10{margin-left:-15.892267pt;}
._c{margin-left:-14.832533pt;}
._5{margin-left:-4.320000pt;}
._1{margin-left:-2.865600pt;}
._b{margin-left:-0.960000pt;}
._2{width:0.960000pt;}
._d{width:3.452267pt;}
._f{width:4.630933pt;}
._4{width:6.288000pt;}
._7{width:10.666667pt;}
._3{width:13.248000pt;}
._11{width:14.208000pt;}
._a{width:16.080000pt;}
._2e{width:21.008000pt;}
._6{width:26.448000pt;}
._2b{width:48.013333pt;}
._27{width:49.067200pt;}
._2a{width:52.866667pt;}
._1d{width:53.820000pt;}
._2f{width:63.498933pt;}
._25{width:65.350133pt;}
._23{width:66.303467pt;}
._24{width:70.227733pt;}
._29{width:74.013333pt;}
._26{width:76.908000pt;}
._1a{width:80.832267pt;}
._21{width:82.669600pt;}
._19{width:83.685333pt;}
._28{width:90.376000pt;}
._1e{width:92.372800pt;}
._2d{width:100.013333pt;}
._22{width:104.866667pt;}
._1b{width:109.706133pt;}
._18{width:112.548800pt;}
._1c{width:127.018667pt;}
._2c{width:129.372533pt;}
._1f{width:135.678400pt;}
._30{width:136.812000pt;}
._20{width:153.029067pt;}
._17{width:236.322667pt;}
._14{width:237.258667pt;}
._15{width:243.810667pt;}
._16{width:258.197333pt;}
._13{width:264.333333pt;}
._12{width:276.040267pt;}
._0{width:1053.649067pt;}
._33{width:1675.204267pt;}
._31{width:2090.615467pt;}
.fs9{font-size:24.000000pt;}
.fs8{font-size:26.666667pt;}
.fs4{font-size:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:62.666667pt;}
.yc1{bottom:87.990667pt;}
.y71{bottom:87.998667pt;}
.y74{bottom:88.000000pt;}
.ye3{bottom:94.690667pt;}
.yc0{bottom:98.657733pt;}
.y73{bottom:100.000000pt;}
.y70{bottom:101.438667pt;}
.ybf{bottom:109.324800pt;}
.y72{bottom:112.000000pt;}
.y6e{bottom:112.212000pt;}
.ye2{bottom:112.337333pt;}
.y6f{bottom:114.878667pt;}
.y6d{bottom:114.879467pt;}
.ybe{bottom:119.991867pt;}
.ye1{bottom:124.032000pt;}
.y6c{bottom:128.318267pt;}
.ybd{bottom:130.658933pt;}
.ybc{bottom:141.326000pt;}
.y6b{bottom:141.757067pt;}
.ybb{bottom:151.993067pt;}
.y6a{bottom:155.197067pt;}
.y3d{bottom:160.001733pt;}
.yba{bottom:162.660133pt;}
.y69{bottom:168.637067pt;}
.yb9{bottom:173.327200pt;}
.y3c{bottom:173.334933pt;}
.ye0{bottom:180.109333pt;}
.y68{bottom:182.075867pt;}
.yb8{bottom:183.994267pt;}
.y3b{bottom:186.668133pt;}
.yb7{bottom:194.661333pt;}
.y67{bottom:195.514667pt;}
.y65{bottom:195.514933pt;}
.y3a{bottom:200.001333pt;}
.y66{bottom:200.514667pt;}
.ydf{bottom:201.009333pt;}
.yb6{bottom:205.328400pt;}
.y64{bottom:208.969333pt;}
.y62{bottom:208.976133pt;}
.y39{bottom:213.334533pt;}
.y63{bottom:213.969333pt;}
.yb5{bottom:215.995467pt;}
.yde{bottom:218.656000pt;}
.y61{bottom:222.430533pt;}
.yb4{bottom:226.662533pt;}
.y38{bottom:226.667733pt;}
.ydd{bottom:231.558667pt;}
.y60{bottom:235.884933pt;}
.yb3{bottom:237.329600pt;}
.y37{bottom:240.000933pt;}
.yb2{bottom:247.996667pt;}
.y5f{bottom:249.339333pt;}
.y36{bottom:253.334133pt;}
.yb1{bottom:258.663733pt;}
.y5e{bottom:262.793733pt;}
.y35{bottom:266.667333pt;}
.yb0{bottom:269.330800pt;}
.y5d{bottom:276.248133pt;}
.yaf{bottom:279.997867pt;}
.y34{bottom:280.000533pt;}
.ydc{bottom:288.841333pt;}
.y5c{bottom:289.702533pt;}
.yae{bottom:290.664933pt;}
.y33{bottom:293.333733pt;}
.yad{bottom:301.332000pt;}
.y5b{bottom:303.156933pt;}
.y32{bottom:306.666933pt;}
.ydb{bottom:309.740000pt;}
.yac{bottom:311.999067pt;}
.y5a{bottom:316.611333pt;}
.y31{bottom:320.000133pt;}
.yab{bottom:322.666133pt;}
.yda{bottom:327.386667pt;}
.y59{bottom:330.065733pt;}
.yaa{bottom:333.333200pt;}
.y30{bottom:333.336933pt;}
.yd9{bottom:340.289333pt;}
.y58{bottom:343.520133pt;}
.y2f{bottom:346.670133pt;}
.ya9{bottom:347.681333pt;}
.y57{bottom:356.974533pt;}
.y2e{bottom:360.003333pt;}
.y56{bottom:370.428933pt;}
.ya8{bottom:372.000000pt;}
.y2d{bottom:373.336533pt;}
.y55{bottom:383.883333pt;}
.ya7{bottom:384.000000pt;}
.y2c{bottom:386.669733pt;}
.ya6{bottom:396.000000pt;}
.y54{bottom:397.337733pt;}
.yd8{bottom:397.572000pt;}
.y2b{bottom:400.002933pt;}
.y53{bottom:410.792133pt;}
.y2a{bottom:413.336133pt;}
.yd7{bottom:418.472000pt;}
.ya5{bottom:421.333467pt;}
.y52{bottom:424.246533pt;}
.y29{bottom:426.669333pt;}
.ya3{bottom:432.000000pt;}
.ya4{bottom:434.666667pt;}
.ya2{bottom:434.667733pt;}
.yd6{bottom:436.117333pt;}
.y51{bottom:437.700933pt;}
.y28{bottom:440.002533pt;}
.yd5{bottom:447.812000pt;}
.ya1{bottom:448.000933pt;}
.y50{bottom:451.155333pt;}
.y27{bottom:453.335733pt;}
.ya0{bottom:461.334133pt;}
.y4f{bottom:464.609733pt;}
.y26{bottom:466.668933pt;}
.y9f{bottom:474.667333pt;}
.y4e{bottom:478.064133pt;}
.y25{bottom:480.002133pt;}
.y9e{bottom:488.000533pt;}
.y4d{bottom:491.518533pt;}
.y24{bottom:493.335333pt;}
.y9d{bottom:501.333733pt;}
.yd4{bottom:503.890667pt;}
.y4c{bottom:504.972933pt;}
.y23{bottom:506.668533pt;}
.y9c{bottom:514.666933pt;}
.y4b{bottom:518.427333pt;}
.y22{bottom:520.001733pt;}
.y9b{bottom:528.000133pt;}
.yd3{bottom:528.165333pt;}
.y4a{bottom:531.881733pt;}
.y21{bottom:533.334933pt;}
.y99{bottom:538.666667pt;}
.y9a{bottom:541.333333pt;}
.y98{bottom:541.336800pt;}
.y49{bottom:545.336133pt;}
.yc6{bottom:545.438667pt;}
.yd2{bottom:545.810667pt;}
.y20{bottom:546.668133pt;}
.yc5{bottom:553.438667pt;}
.y97{bottom:554.670000pt;}
.y48{bottom:558.790533pt;}
.y1f{bottom:560.001333pt;}
.yd1{bottom:564.252000pt;}
.y96{bottom:568.003200pt;}
.y47{bottom:572.244933pt;}
.y1e{bottom:573.334533pt;}
.y95{bottom:581.336400pt;}
.y46{bottom:585.699333pt;}
.y1d{bottom:586.667733pt;}
.y76{bottom:594.022760pt;}
.y94{bottom:594.669600pt;}
.y45{bottom:599.153733pt;}
.y1c{bottom:600.000933pt;}
.yc4{bottom:605.933333pt;}
.y93{bottom:608.002800pt;}
.y44{bottom:612.608133pt;}
.y1b{bottom:613.334133pt;}
.yc3{bottom:613.934667pt;}
.y92{bottom:621.336000pt;}
.yd0{bottom:625.512000pt;}
.y43{bottom:626.062533pt;}
.y1a{bottom:626.667333pt;}
.y91{bottom:634.669200pt;}
.y42{bottom:639.516933pt;}
.y19{bottom:640.000533pt;}
.y90{bottom:648.002400pt;}
.ycf{bottom:649.426667pt;}
.y41{bottom:652.971333pt;}
.y18{bottom:653.333733pt;}
.y8f{bottom:661.335600pt;}
.y40{bottom:666.425733pt;}
.y17{bottom:666.666933pt;}
.yce{bottom:667.072000pt;}
.y8e{bottom:674.668800pt;}
.y3f{bottom:679.880133pt;}
.y16{bottom:680.000133pt;}
.ycd{bottom:683.346667pt;}
.y8d{bottom:688.002000pt;}
.y15{bottom:693.333333pt;}
.y3e{bottom:693.334533pt;}
.y8c{bottom:701.335200pt;}
.y8b{bottom:714.668400pt;}
.y8a{bottom:728.001600pt;}
.y14{bottom:730.667067pt;}
.yc2{bottom:731.178667pt;}
.y89{bottom:741.334800pt;}
.ycc{bottom:742.796000pt;}
.y13{bottom:744.000267pt;}
.y88{bottom:754.668000pt;}
.y12{bottom:757.333467pt;}
.ycb{bottom:764.902667pt;}
.y87{bottom:768.001200pt;}
.y11{bottom:770.666667pt;}
.y86{bottom:781.334400pt;}
.yca{bottom:782.549333pt;}
.y85{bottom:794.667600pt;}
.yc9{bottom:798.824000pt;}
.y10{bottom:800.000000pt;}
.y84{bottom:808.000800pt;}
.y83{bottom:821.334000pt;}
.yf{bottom:822.666667pt;}
.yd{bottom:822.666800pt;}
.ye{bottom:827.666667pt;}
.y104{bottom:827.993333pt;}
.yf7{bottom:827.996133pt;}
.y82{bottom:834.667200pt;}
.yb{bottom:836.000000pt;}
.y103{bottom:838.660400pt;}
.yf6{bottom:838.663200pt;}
.yc{bottom:841.000000pt;}
.y81{bottom:848.000400pt;}
.y102{bottom:849.327467pt;}
.yf5{bottom:849.330267pt;}
.y9{bottom:854.666667pt;}
.yc8{bottom:858.273400pt;}
.ya{bottom:859.666667pt;}
.y101{bottom:859.994533pt;}
.yf4{bottom:859.997333pt;}
.y80{bottom:861.333600pt;}
.y6{bottom:868.000000pt;}
.y7{bottom:870.397600pt;}
.y100{bottom:870.661600pt;}
.yf3{bottom:870.664400pt;}
.y8{bottom:873.000000pt;}
.y7f{bottom:874.666800pt;}
.yff{bottom:881.328667pt;}
.yf2{bottom:881.331467pt;}
.y7d{bottom:885.333333pt;}
.y7e{bottom:888.000000pt;}
.y7c{bottom:888.000667pt;}
.yfe{bottom:891.995733pt;}
.yf1{bottom:891.998533pt;}
.y5{bottom:892.000000pt;}
.y7b{bottom:901.333867pt;}
.yfd{bottom:902.662800pt;}
.yf0{bottom:902.665600pt;}
.yfc{bottom:913.329867pt;}
.yef{bottom:913.332667pt;}
.y7a{bottom:914.667067pt;}
.y4{bottom:916.000000pt;}
.yfb{bottom:923.996933pt;}
.yee{bottom:923.999733pt;}
.y79{bottom:928.000267pt;}
.yfa{bottom:934.663067pt;}
.yed{bottom:934.666800pt;}
.yc7{bottom:938.442667pt;}
.y78{bottom:941.333467pt;}
.yf9{bottom:945.329200pt;}
.yec{bottom:945.332933pt;}
.y77{bottom:954.666667pt;}
.yf8{bottom:955.996267pt;}
.yeb{bottom:956.000000pt;}
.ye4{bottom:962.632000pt;}
.ye5{bottom:962.634600pt;}
.ye6{bottom:962.635467pt;}
.ye7{bottom:962.638933pt;}
.ye8{bottom:962.640667pt;}
.ye9{bottom:962.642400pt;}
.yea{bottom:962.644133pt;}
.y3{bottom:964.000000pt;}
.y2{bottom:976.000000pt;}
.y1{bottom:988.000000pt;}
.hd{height:23.112000pt;}
.ha{height:25.680000pt;}
.h5{height:28.248000pt;}
.hc{height:33.384000pt;}
.h8{height:35.354667pt;}
.h9{height:35.952000pt;}
.h1{height:41.088000pt;}
.h6{height:45.456000pt;}
.h4{height:46.224000pt;}
.h7{height:61.187500pt;}
.hb{height:70.716533pt;}
.h3{height:82.176000pt;}
.h2{height:89.088000pt;}
.h0{height:1056.000000pt;}
.w0{width:769.333333pt;}
.x0{left:0.000000pt;}
.x1{left:66.666667pt;}
.x3c{left:71.333333pt;}
.x23{left:77.333333pt;}
.x18{left:78.666667pt;}
.x3b{left:83.000000pt;}
.x17{left:114.666667pt;}
.x2{left:122.860000pt;}
.x16{left:126.666667pt;}
.x3a{left:153.168667pt;}
.x4{left:162.117333pt;}
.x39{left:176.168267pt;}
.x38{left:187.168000pt;}
.x15{left:192.950667pt;}
.x37{left:198.167733pt;}
.x3{left:205.008267pt;}
.x36{left:209.167467pt;}
.xf{left:210.393333pt;}
.x35{left:220.167200pt;}
.x5{left:231.790533pt;}
.x12{left:237.171067pt;}
.x34{left:242.166667pt;}
.x33{left:259.833333pt;}
.x32{left:261.832667pt;}
.x31{left:271.166667pt;}
.x30{left:298.166667pt;}
.x2f{left:300.500000pt;}
.x6{left:304.170933pt;}
.xd{left:327.378667pt;}
.x7{left:338.590667pt;}
.x8{left:350.257333pt;}
.x24{left:388.000000pt;}
.x19{left:410.667867pt;}
.x2d{left:415.332800pt;}
.x2b{left:421.333333pt;}
.x1a{left:422.671467pt;}
.x2e{left:426.999467pt;}
.x1f{left:439.693333pt;}
.x20{left:449.026667pt;}
.xe{left:458.292000pt;}
.x9{left:479.845333pt;}
.x13{left:484.654667pt;}
.x14{left:493.314667pt;}
.xa{left:495.504000pt;}
.x2a{left:498.757333pt;}
.x28{left:513.502667pt;}
.x21{left:516.352000pt;}
.x29{left:523.206667pt;}
.x22{left:525.685333pt;}
.x2c{left:539.617333pt;}
.x1b{left:554.050667pt;}
.x10{left:559.450667pt;}
.x1c{left:562.410667pt;}
.x11{left:568.110667pt;}
.xb{left:593.815200pt;}
.xc{left:630.564000pt;}
.x26{left:655.934667pt;}
.x27{left:665.268000pt;}
.x1d{left:674.160000pt;}
.x1e{left:683.337333pt;}
.x25{left:744.000000pt;}
}

