
    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_f2116390832cbf8c1cb4c2a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7e4c912190b0aec261a8c35f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ffea3bfb4fc04a063a00badf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c859f5e23b4695b569c5167f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea3c00d7998d1a814426662b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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;}
.v1{vertical-align:32.400000px;}
.ls3{letter-spacing:-1.998000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.960000px;}
.ls1{letter-spacing:5.928000px;}
.ls2{letter-spacing:7.640400px;}
.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;}
}
.ws105{word-spacing:-15.960000px;}
.ws8f{word-spacing:-15.000000px;}
.wse1{word-spacing:-13.500000px;}
.wsc{word-spacing:-4.680000px;}
.wsa3{word-spacing:-4.200000px;}
.ws66{word-spacing:-4.140000px;}
.wsdf{word-spacing:-4.080000px;}
.ws6f{word-spacing:-3.540000px;}
.wsd0{word-spacing:-3.300000px;}
.wsab{word-spacing:-3.000000px;}
.wse6{word-spacing:-2.970000px;}
.wscf{word-spacing:-2.880000px;}
.ws115{word-spacing:-2.820000px;}
.wsb4{word-spacing:-2.760000px;}
.wsdb{word-spacing:-2.700000px;}
.wsea{word-spacing:-2.640000px;}
.wsd{word-spacing:-2.520000px;}
.ws9{word-spacing:-2.499000px;}
.ws9d{word-spacing:-2.460000px;}
.ws7{word-spacing:-2.448000px;}
.ws11{word-spacing:-2.400000px;}
.ws10b{word-spacing:-2.220000px;}
.wsac{word-spacing:-2.160000px;}
.ws14{word-spacing:-2.100000px;}
.ws75{word-spacing:-2.040000px;}
.ws3e{word-spacing:-1.980000px;}
.ws3a{word-spacing:-1.920000px;}
.ws53{word-spacing:-1.860000px;}
.ws94{word-spacing:-1.800000px;}
.ws65{word-spacing:-1.680000px;}
.wsc9{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.500000px;}
.ws2d{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.326000px;}
.ws5d{word-spacing:-1.320000px;}
.wsff{word-spacing:-1.260000px;}
.ws4d{word-spacing:-1.200000px;}
.wsd9{word-spacing:-1.080000px;}
.ws9e{word-spacing:-1.020000px;}
.ws43{word-spacing:-0.960000px;}
.ws8e{word-spacing:-0.840000px;}
.ws11c{word-spacing:-0.660000px;}
.ws12{word-spacing:-0.600000px;}
.wsfd{word-spacing:-0.540000px;}
.wsf7{word-spacing:-0.480000px;}
.wsa6{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.180000px;}
.ws111{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060000px;}
.wsf8{word-spacing:0.120000px;}
.ws15{word-spacing:0.240000px;}
.wse8{word-spacing:0.300000px;}
.wsf6{word-spacing:0.360000px;}
.ws22{word-spacing:0.420000px;}
.ws3b{word-spacing:0.480000px;}
.wsf{word-spacing:0.600000px;}
.wsc0{word-spacing:0.660000px;}
.ws21{word-spacing:0.720000px;}
.ws24{word-spacing:0.780000px;}
.ws38{word-spacing:0.840000px;}
.ws36{word-spacing:0.960000px;}
.ws56{word-spacing:1.080000px;}
.ws2{word-spacing:1.122000px;}
.ws10{word-spacing:1.140000px;}
.wsa7{word-spacing:1.260000px;}
.ws84{word-spacing:1.320000px;}
.ws89{word-spacing:1.380000px;}
.ws2e{word-spacing:1.440000px;}
.ws11b{word-spacing:1.560000px;}
.ws37{word-spacing:1.680000px;}
.ws85{word-spacing:1.740000px;}
.ws86{word-spacing:1.800000px;}
.wsd7{word-spacing:1.920000px;}
.ws6{word-spacing:1.938000px;}
.ws3f{word-spacing:1.980000px;}
.wsf2{word-spacing:1.998000px;}
.ws8{word-spacing:2.040000px;}
.wsc7{word-spacing:2.100000px;}
.ws2b{word-spacing:2.160000px;}
.wsa1{word-spacing:2.220000px;}
.ws44{word-spacing:2.280000px;}
.ws93{word-spacing:2.340000px;}
.wsda{word-spacing:2.400000px;}
.ws20{word-spacing:2.460000px;}
.ws3d{word-spacing:2.640000px;}
.ws50{word-spacing:2.700000px;}
.ws4f{word-spacing:2.760000px;}
.ws4{word-spacing:2.856000px;}
.wsfc{word-spacing:2.880000px;}
.ws74{word-spacing:2.940000px;}
.wsf0{word-spacing:3.000000px;}
.ws5b{word-spacing:3.060000px;}
.wsdd{word-spacing:3.120000px;}
.ws33{word-spacing:3.300000px;}
.ws42{word-spacing:3.360000px;}
.wsb{word-spacing:3.417000px;}
.ws82{word-spacing:3.420000px;}
.ws113{word-spacing:3.600000px;}
.wsc5{word-spacing:3.720000px;}
.wsc1{word-spacing:3.780000px;}
.wsa2{word-spacing:3.900000px;}
.ws28{word-spacing:3.960000px;}
.wsdc{word-spacing:4.020000px;}
.ws7a{word-spacing:4.080000px;}
.ws7d{word-spacing:4.140000px;}
.ws30{word-spacing:4.200000px;}
.ws67{word-spacing:4.260000px;}
.ws31{word-spacing:4.320000px;}
.ws4b{word-spacing:4.380000px;}
.ws27{word-spacing:4.440000px;}
.ws90{word-spacing:4.500000px;}
.ws110{word-spacing:4.620000px;}
.ws41{word-spacing:4.680000px;}
.wsde{word-spacing:4.740000px;}
.wsef{word-spacing:4.800000px;}
.ws1e{word-spacing:4.980000px;}
.ws1{word-spacing:4.998000px;}
.ws1c{word-spacing:5.040000px;}
.ws3{word-spacing:5.049000px;}
.wsd4{word-spacing:5.100000px;}
.ws76{word-spacing:5.160000px;}
.ws5{word-spacing:5.202000px;}
.ws61{word-spacing:5.220000px;}
.wsa0{word-spacing:5.280000px;}
.wsa4{word-spacing:5.340000px;}
.ws69{word-spacing:5.400000px;}
.ws64{word-spacing:5.460000px;}
.ws95{word-spacing:5.580000px;}
.ws10c{word-spacing:5.640000px;}
.ws9a{word-spacing:5.700000px;}
.ws10a{word-spacing:5.760000px;}
.wsc8{word-spacing:5.820000px;}
.ws10d{word-spacing:5.880000px;}
.ws29{word-spacing:5.940000px;}
.ws5c{word-spacing:6.000000px;}
.wsfe{word-spacing:6.060000px;}
.ws52{word-spacing:6.120000px;}
.ws6b{word-spacing:6.180000px;}
.ws32{word-spacing:6.240000px;}
.ws11d{word-spacing:6.300000px;}
.ws34{word-spacing:6.360000px;}
.ws68{word-spacing:6.420000px;}
.wsa8{word-spacing:6.480000px;}
.ws91{word-spacing:6.540000px;}
.ws6a{word-spacing:6.660000px;}
.ws81{word-spacing:6.720000px;}
.wsce{word-spacing:6.780000px;}
.ws57{word-spacing:6.840000px;}
.wsa9{word-spacing:6.900000px;}
.wse{word-spacing:6.960000px;}
.wsaf{word-spacing:7.020000px;}
.wscb{word-spacing:7.140000px;}
.ws9f{word-spacing:7.200000px;}
.ws10e{word-spacing:7.260000px;}
.wsc6{word-spacing:7.320000px;}
.ws9c{word-spacing:7.380000px;}
.ws7c{word-spacing:7.500000px;}
.ws2c{word-spacing:7.560000px;}
.ws83{word-spacing:7.620000px;}
.ws79{word-spacing:7.680000px;}
.wsf3{word-spacing:7.740000px;}
.ws5f{word-spacing:7.800000px;}
.wsb1{word-spacing:7.860000px;}
.ws71{word-spacing:7.920000px;}
.ws1b{word-spacing:7.980000px;}
.ws23{word-spacing:8.040000px;}
.wsee{word-spacing:8.100000px;}
.ws4a{word-spacing:8.160000px;}
.ws47{word-spacing:8.340000px;}
.ws51{word-spacing:8.460000px;}
.ws49{word-spacing:8.580000px;}
.ws48{word-spacing:8.640000px;}
.wscd{word-spacing:8.760000px;}
.wsb6{word-spacing:8.820000px;}
.ws99{word-spacing:8.880000px;}
.ws87{word-spacing:8.940000px;}
.ws18{word-spacing:9.000000px;}
.ws16{word-spacing:9.060000px;}
.wsd6{word-spacing:9.120000px;}
.ws17{word-spacing:9.180000px;}
.ws103{word-spacing:9.300000px;}
.ws2f{word-spacing:9.360000px;}
.wsd2{word-spacing:9.420000px;}
.ws62{word-spacing:9.600000px;}
.wsae{word-spacing:9.660000px;}
.ws26{word-spacing:9.720000px;}
.wsfa{word-spacing:9.780000px;}
.ws112{word-spacing:9.960000px;}
.ws63{word-spacing:10.020000px;}
.wsba{word-spacing:10.080000px;}
.ws77{word-spacing:10.140000px;}
.wsb0{word-spacing:10.260000px;}
.ws97{word-spacing:10.380000px;}
.ws96{word-spacing:10.440000px;}
.wsbf{word-spacing:10.500000px;}
.ws116{word-spacing:10.620000px;}
.wsb2{word-spacing:10.740000px;}
.ws107{word-spacing:10.860000px;}
.ws4c{word-spacing:10.980000px;}
.ws6d{word-spacing:11.160000px;}
.ws5a{word-spacing:11.220000px;}
.ws46{word-spacing:11.340000px;}
.ws78{word-spacing:11.460000px;}
.ws92{word-spacing:11.520000px;}
.ws109{word-spacing:11.580000px;}
.ws59{word-spacing:11.640000px;}
.ws1a{word-spacing:11.700000px;}
.wsd5{word-spacing:11.820000px;}
.ws39{word-spacing:12.000000px;}
.ws8d{word-spacing:12.060000px;}
.wsb7{word-spacing:12.120000px;}
.ws25{word-spacing:12.240000px;}
.ws1d{word-spacing:12.300000px;}
.wsd8{word-spacing:12.360000px;}
.ws6e{word-spacing:12.420000px;}
.wsbd{word-spacing:12.480000px;}
.ws119{word-spacing:12.660000px;}
.wsbb{word-spacing:12.720000px;}
.wsd3{word-spacing:12.780000px;}
.wsfb{word-spacing:12.900000px;}
.wsf1{word-spacing:13.020000px;}
.ws8a{word-spacing:13.080000px;}
.wsf9{word-spacing:13.500000px;}
.ws11e{word-spacing:13.740000px;}
.wsbe{word-spacing:14.100000px;}
.wse0{word-spacing:14.160000px;}
.wsed{word-spacing:14.340000px;}
.wseb{word-spacing:14.460000px;}
.ws5e{word-spacing:15.000000px;}
.ws8b{word-spacing:15.180000px;}
.ws117{word-spacing:15.300000px;}
.wsc4{word-spacing:15.420000px;}
.ws6c{word-spacing:15.480000px;}
.ws7b{word-spacing:15.540000px;}
.ws102{word-spacing:15.660000px;}
.ws100{word-spacing:15.720000px;}
.wsc3{word-spacing:15.780000px;}
.ws114{word-spacing:15.840000px;}
.ws4e{word-spacing:16.080000px;}
.ws19{word-spacing:16.260000px;}
.wsb5{word-spacing:16.380000px;}
.wsd1{word-spacing:16.680000px;}
.ws7f{word-spacing:16.800000px;}
.ws101{word-spacing:17.340000px;}
.wsb3{word-spacing:17.400000px;}
.ws3c{word-spacing:17.580000px;}
.ws106{word-spacing:17.760000px;}
.ws80{word-spacing:17.940000px;}
.ws88{word-spacing:18.120000px;}
.wsf4{word-spacing:18.480000px;}
.ws45{word-spacing:18.720000px;}
.wscc{word-spacing:18.960000px;}
.ws58{word-spacing:19.020000px;}
.wse9{word-spacing:19.140000px;}
.ws11a{word-spacing:19.440000px;}
.ws35{word-spacing:19.980000px;}
.ws104{word-spacing:20.580000px;}
.ws108{word-spacing:20.820000px;}
.wsb8{word-spacing:21.840000px;}
.ws7e{word-spacing:22.440000px;}
.ws70{word-spacing:22.620000px;}
.ws13{word-spacing:23.340000px;}
.wsb9{word-spacing:23.580000px;}
.ws72{word-spacing:23.820000px;}
.wsec{word-spacing:24.300000px;}
.wsaa{word-spacing:24.660000px;}
.ws54{word-spacing:25.020000px;}
.ws98{word-spacing:25.260000px;}
.ws9b{word-spacing:25.380000px;}
.wsc2{word-spacing:25.920000px;}
.ws60{word-spacing:26.220000px;}
.ws10f{word-spacing:27.900000px;}
.ws8c{word-spacing:28.620000px;}
.ws40{word-spacing:29.160000px;}
.ws118{word-spacing:29.640000px;}
.ws73{word-spacing:30.840000px;}
.wsbc{word-spacing:31.320000px;}
.wsca{word-spacing:54.420000px;}
.wsf5{word-spacing:61.140000px;}
.wse2{word-spacing:199.638000px;}
.wse7{word-spacing:207.954000px;}
.wse5{word-spacing:222.372000px;}
.wse4{word-spacing:223.128000px;}
.wse3{word-spacing:223.398000px;}
.wsa5{word-spacing:347.058000px;}
._34{margin-left:-15.370800px;}
._0{margin-left:-8.088600px;}
._14{margin-left:-6.642000px;}
._2{margin-left:-5.559000px;}
._1{margin-left:-3.794400px;}
._3{margin-left:-1.906200px;}
._4{width:1.417800px;}
._6{width:3.342600px;}
._5{width:4.355400px;}
._b{width:5.497200px;}
._7{width:7.224000px;}
._8{width:8.880000px;}
._9{width:10.572000px;}
._a{width:11.658000px;}
._e{width:12.660000px;}
._c{width:13.830000px;}
._d{width:16.152000px;}
._10{width:17.184000px;}
._11{width:18.234000px;}
._15{width:21.156000px;}
._32{width:22.516200px;}
._33{width:27.272400px;}
._f{width:29.658000px;}
._35{width:35.844000px;}
._1b{width:95.742000px;}
._1a{width:122.850000px;}
._25{width:135.486000px;}
._17{width:136.674000px;}
._27{width:144.504000px;}
._16{width:157.302000px;}
._18{width:159.300000px;}
._19{width:160.920000px;}
._2d{width:162.000000px;}
._26{width:165.564000px;}
._2e{width:179.226000px;}
._24{width:196.830000px;}
._30{width:214.488000px;}
._13{width:218.052000px;}
._12{width:221.076000px;}
._1f{width:231.606000px;}
._1e{width:235.872000px;}
._1d{width:250.776000px;}
._2f{width:252.196200px;}
._31{width:257.148000px;}
._29{width:262.818000px;}
._2b{width:265.302000px;}
._21{width:266.382000px;}
._2a{width:287.010000px;}
._23{width:293.274000px;}
._28{width:335.178000px;}
._2c{width:359.208000px;}
._22{width:471.744000px;}
._1c{width:593.892000px;}
._20{width:617.868000px;}
.fc2{color:rgb(2,72,176);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:62.923050px;}
.y127{bottom:88.103550px;}
.yff{bottom:88.508850px;}
.yc3{bottom:90.001350px;}
.y9e{bottom:98.393400px;}
.ye9{bottom:99.895650px;}
.y75{bottom:101.978250px;}
.y4b{bottom:101.993250px;}
.y123{bottom:106.103550px;}
.yc2{bottom:108.001350px;}
.y9d{bottom:116.393400px;}
.ye8{bottom:117.895650px;}
.y74{bottom:119.978250px;}
.y4a{bottom:119.993250px;}
.y122{bottom:124.103550px;}
.yc1{bottom:126.001350px;}
.y9c{bottom:134.393400px;}
.ye7{bottom:135.895650px;}
.y73{bottom:137.978250px;}
.y49{bottom:137.993250px;}
.y121{bottom:142.103550px;}
.yc0{bottom:144.001350px;}
.y9b{bottom:152.393400px;}
.ye6{bottom:153.895650px;}
.y72{bottom:155.978250px;}
.y48{bottom:155.993250px;}
.y120{bottom:160.103550px;}
.ybf{bottom:162.001350px;}
.y22{bottom:166.710900px;}
.y9a{bottom:170.393400px;}
.ye5{bottom:171.895650px;}
.y71{bottom:173.978250px;}
.y47{bottom:173.993250px;}
.y11f{bottom:178.103550px;}
.ybe{bottom:180.001350px;}
.y21{bottom:182.010900px;}
.y99{bottom:188.393400px;}
.ye4{bottom:189.895650px;}
.y70{bottom:191.978250px;}
.y46{bottom:191.993250px;}
.y11e{bottom:196.103550px;}
.y20{bottom:197.310900px;}
.ybd{bottom:198.001350px;}
.y98{bottom:206.393400px;}
.ye3{bottom:207.895650px;}
.y6f{bottom:209.978250px;}
.y45{bottom:209.993250px;}
.y1f{bottom:212.610900px;}
.y11d{bottom:214.103550px;}
.ybc{bottom:216.001350px;}
.y97{bottom:224.393400px;}
.ye2{bottom:225.895650px;}
.y1e{bottom:227.910900px;}
.y6e{bottom:227.978250px;}
.y44{bottom:227.993250px;}
.y11c{bottom:232.103550px;}
.ybb{bottom:234.001350px;}
.y96{bottom:242.393400px;}
.y1d{bottom:243.210900px;}
.ye1{bottom:243.895650px;}
.y6d{bottom:245.978250px;}
.y43{bottom:245.993250px;}
.y11b{bottom:250.103550px;}
.yba{bottom:252.001350px;}
.y1c{bottom:258.510900px;}
.y95{bottom:260.393400px;}
.ye0{bottom:261.895650px;}
.y6c{bottom:263.978250px;}
.y42{bottom:263.993250px;}
.y11a{bottom:268.103550px;}
.yb9{bottom:270.001350px;}
.y1b{bottom:273.810900px;}
.y94{bottom:278.393400px;}
.ydf{bottom:279.895650px;}
.y6b{bottom:281.978250px;}
.y41{bottom:281.993250px;}
.y119{bottom:286.103550px;}
.yb8{bottom:288.001350px;}
.y1a{bottom:289.110900px;}
.y93{bottom:296.393400px;}
.yde{bottom:297.895650px;}
.y6a{bottom:299.978250px;}
.y40{bottom:299.993250px;}
.y118{bottom:304.103550px;}
.yb7{bottom:306.001350px;}
.y19{bottom:313.410900px;}
.y92{bottom:314.393400px;}
.ydd{bottom:315.895650px;}
.y69{bottom:317.978250px;}
.y3f{bottom:317.993250px;}
.y117{bottom:322.103550px;}
.yb6{bottom:324.001350px;}
.y91{bottom:332.393400px;}
.ydc{bottom:333.895650px;}
.y68{bottom:335.978250px;}
.y3e{bottom:335.993250px;}
.y116{bottom:340.103550px;}
.yb5{bottom:342.001350px;}
.y18{bottom:347.610900px;}
.y90{bottom:350.393400px;}
.ydb{bottom:351.895650px;}
.y67{bottom:353.978250px;}
.y3d{bottom:353.993250px;}
.y115{bottom:358.103550px;}
.yb4{bottom:360.001350px;}
.y17{bottom:362.910900px;}
.y8f{bottom:368.393400px;}
.yda{bottom:369.895650px;}
.y66{bottom:371.978250px;}
.y3c{bottom:371.993250px;}
.y126{bottom:376.103550px;}
.yb3{bottom:378.001350px;}
.y16{bottom:378.210900px;}
.y8e{bottom:386.393400px;}
.yd9{bottom:387.895650px;}
.y65{bottom:389.978250px;}
.y3b{bottom:389.993250px;}
.y15{bottom:393.510900px;}
.y114{bottom:394.103550px;}
.yb2{bottom:396.001350px;}
.y8d{bottom:404.393400px;}
.yd8{bottom:405.895650px;}
.y64{bottom:407.978250px;}
.y3a{bottom:407.993250px;}
.y14{bottom:408.810900px;}
.y125{bottom:412.103550px;}
.y8c{bottom:422.393400px;}
.yd7{bottom:423.895650px;}
.y13{bottom:424.110900px;}
.y63{bottom:425.978250px;}
.y39{bottom:425.993250px;}
.y124{bottom:430.103550px;}
.yb1{bottom:432.001350px;}
.y12{bottom:439.410900px;}
.y8b{bottom:440.393400px;}
.yd6{bottom:441.895650px;}
.y62{bottom:443.978250px;}
.y38{bottom:443.993250px;}
.y113{bottom:448.103550px;}
.yfe{bottom:450.316650px;}
.y11{bottom:454.710900px;}
.y8a{bottom:458.393400px;}
.yd5{bottom:459.895650px;}
.y61{bottom:461.978250px;}
.y37{bottom:461.993250px;}
.y112{bottom:466.103550px;}
.y10{bottom:470.010900px;}
.yfd{bottom:471.511650px;}
.y89{bottom:476.393400px;}
.yd4{bottom:477.895650px;}
.y60{bottom:479.978250px;}
.y36{bottom:479.993250px;}
.y111{bottom:484.103550px;}
.yf{bottom:485.310900px;}
.yb0{bottom:486.001350px;}
.yfc{bottom:492.868650px;}
.y88{bottom:494.393400px;}
.yd3{bottom:495.895650px;}
.y5f{bottom:497.978250px;}
.y35{bottom:497.993250px;}
.ye{bottom:500.610900px;}
.y110{bottom:502.103550px;}
.yaf{bottom:504.001350px;}
.yfb{bottom:509.068650px;}
.y87{bottom:512.393400px;}
.yd2{bottom:513.895650px;}
.y5e{bottom:515.978250px;}
.y34{bottom:515.993250px;}
.y10f{bottom:520.103550px;}
.yae{bottom:522.001350px;}
.yd{bottom:524.910900px;}
.y86{bottom:530.393400px;}
.yfa{bottom:530.425650px;}
.yd1{bottom:531.895650px;}
.y5d{bottom:533.978250px;}
.y33{bottom:533.993250px;}
.y10e{bottom:538.103550px;}
.yad{bottom:540.001350px;}
.yf9{bottom:546.625650px;}
.y85{bottom:548.393400px;}
.yd0{bottom:549.895650px;}
.y5c{bottom:551.978250px;}
.y32{bottom:551.993250px;}
.yac{bottom:558.001350px;}
.yf8{bottom:562.825650px;}
.y84{bottom:566.393400px;}
.y10d{bottom:566.956350px;}
.ycf{bottom:567.895650px;}
.y5b{bottom:569.978250px;}
.y31{bottom:569.993250px;}
.yab{bottom:576.001350px;}
.yc{bottom:577.111650px;}
.yf7{bottom:584.182650px;}
.y83{bottom:584.393400px;}
.yce{bottom:585.895650px;}
.y5a{bottom:587.978250px;}
.y30{bottom:587.993250px;}
.y10c{bottom:588.313350px;}
.yb{bottom:591.511650px;}
.yaa{bottom:594.001350px;}
.yf6{bottom:600.382650px;}
.y82{bottom:602.393400px;}
.ycd{bottom:603.895650px;}
.y59{bottom:605.978250px;}
.y2f{bottom:605.993250px;}
.y10b{bottom:609.670350px;}
.ya9{bottom:612.001350px;}
.y81{bottom:620.393250px;}
.yf5{bottom:621.739650px;}
.ycc{bottom:621.895650px;}
.y58{bottom:623.978250px;}
.y2e{bottom:623.993250px;}
.ya{bottom:625.712250px;}
.ya8{bottom:630.001350px;}
.y10a{bottom:631.027350px;}
.yf4{bottom:637.939650px;}
.y80{bottom:638.393250px;}
.ycb{bottom:639.895650px;}
.y9{bottom:640.112400px;}
.y57{bottom:641.978250px;}
.y2d{bottom:641.993250px;}
.y109{bottom:647.227350px;}
.yf3{bottom:654.139650px;}
.y7f{bottom:656.393250px;}
.y56{bottom:659.978250px;}
.y2c{bottom:659.993250px;}
.ya7{bottom:666.004800px;}
.y108{bottom:668.584350px;}
.y8{bottom:674.313000px;}
.y7e{bottom:674.393250px;}
.yf2{bottom:675.496650px;}
.yca{bottom:675.895650px;}
.y55{bottom:677.978250px;}
.y2b{bottom:677.993250px;}
.ya6{bottom:687.213300px;}
.y7{bottom:688.713000px;}
.y107{bottom:689.941350px;}
.yf1{bottom:691.696650px;}
.y7d{bottom:692.393250px;}
.ya5{bottom:695.313300px;}
.y54{bottom:695.978250px;}
.y2a{bottom:695.993250px;}
.y106{bottom:706.141350px;}
.yf0{bottom:707.896650px;}
.y7c{bottom:710.393250px;}
.yc9{bottom:711.895650px;}
.y53{bottom:713.978250px;}
.y29{bottom:713.993250px;}
.ya4{bottom:724.770300px;}
.y105{bottom:727.498350px;}
.y7b{bottom:728.393250px;}
.yef{bottom:729.253650px;}
.yc8{bottom:729.895650px;}
.y52{bottom:731.978250px;}
.y28{bottom:731.993250px;}
.y6{bottom:740.913000px;}
.ya2{bottom:740.970300px;}
.yee{bottom:745.453650px;}
.y7a{bottom:746.393250px;}
.y104{bottom:748.855350px;}
.y51{bottom:749.978250px;}
.y27{bottom:749.993250px;}
.ya3{bottom:757.170300px;}
.y79{bottom:764.393250px;}
.yc7{bottom:765.895650px;}
.yed{bottom:766.810650px;}
.y50{bottom:767.978250px;}
.y26{bottom:767.993250px;}
.y103{bottom:770.212350px;}
.y5{bottom:771.513000px;}
.ya1{bottom:778.527300px;}
.y78{bottom:782.393250px;}
.y4f{bottom:785.978250px;}
.y25{bottom:785.993250px;}
.yec{bottom:788.167650px;}
.y102{bottom:791.569350px;}
.ya0{bottom:799.884300px;}
.y77{bottom:800.393250px;}
.yc6{bottom:801.895650px;}
.y4{bottom:802.113000px;}
.y4e{bottom:803.978250px;}
.y24{bottom:803.993250px;}
.yeb{bottom:809.524650px;}
.y101{bottom:812.926350px;}
.yc5{bottom:819.895650px;}
.y4d{bottom:821.978250px;}
.y76{bottom:821.993250px;}
.yea{bottom:832.582650px;}
.y3{bottom:832.713000px;}
.y100{bottom:834.283350px;}
.yc4{bottom:837.895650px;}
.y4c{bottom:839.978250px;}
.y23{bottom:839.993250px;}
.y9f{bottom:839.993400px;}
.y2{bottom:914.173200px;}
.h3{height:33.328125px;}
.h7{height:35.436035px;}
.h6{height:36.966797px;}
.he{height:37.520508px;}
.hd{height:41.074219px;}
.hb{height:41.660156px;}
.ha{height:41.689453px;}
.h5{height:42.117188px;}
.hc{height:42.304688px;}
.h8{height:44.749512px;}
.h2{height:47.381836px;}
.h10{height:49.992188px;}
.h9{height:52.646484px;}
.hf{height:79.781836px;}
.h4{height:89.499023px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x24{left:93.877200px;}
.x22{left:95.753700px;}
.x2c{left:97.191300px;}
.x1d{left:98.750700px;}
.x1f{left:103.813200px;}
.xf{left:106.294350px;}
.x25{left:108.686700px;}
.x12{left:112.039350px;}
.x1a{left:115.085700px;}
.x2e{left:117.279300px;}
.xd{left:119.060700px;}
.x26{left:120.688200px;}
.x20{left:125.561700px;}
.x1b{left:127.438200px;}
.x23{left:131.555700px;}
.x1c{left:133.432200px;}
.x13{left:139.039350px;}
.xc{left:140.314950px;}
.x2b{left:144.063300px;}
.x4{left:146.750250px;}
.x2f{left:148.531800px;}
.x29{left:152.197200px;}
.x3{left:173.423250px;}
.x5{left:182.577750px;}
.x19{left:192.265200px;}
.x27{left:258.806700px;}
.x2a{left:272.083800px;}
.x2d{left:278.091300px;}
.x30{left:286.731300px;}
.x28{left:289.033200px;}
.x21{left:332.152200px;}
.xb{left:334.793100px;}
.xe{left:336.299250px;}
.x10{left:372.049350px;}
.x16{left:378.797250px;}
.x11{left:393.304350px;}
.x15{left:399.049350px;}
.x1e{left:401.596200px;}
.x14{left:426.049350px;}
.x9{left:429.523800px;}
.x18{left:430.893750px;}
.x7{left:442.859700px;}
.xa{left:473.613300px;}
.x6{left:499.815750px;}
.x8{left:505.834050px;}
.x17{left:511.677750px;}
.x31{left:624.796350px;}
.x1{left:631.045350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.ls3{letter-spacing:-1.776000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls1{letter-spacing:5.269333pt;}
.ls2{letter-spacing:6.791467pt;}
.ws105{word-spacing:-14.186667pt;}
.ws8f{word-spacing:-13.333333pt;}
.wse1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-4.160000pt;}
.wsa3{word-spacing:-3.733333pt;}
.ws66{word-spacing:-3.680000pt;}
.wsdf{word-spacing:-3.626667pt;}
.ws6f{word-spacing:-3.146667pt;}
.wsd0{word-spacing:-2.933333pt;}
.wsab{word-spacing:-2.666667pt;}
.wse6{word-spacing:-2.640000pt;}
.wscf{word-spacing:-2.560000pt;}
.ws115{word-spacing:-2.506667pt;}
.wsb4{word-spacing:-2.453333pt;}
.wsdb{word-spacing:-2.400000pt;}
.wsea{word-spacing:-2.346667pt;}
.wsd{word-spacing:-2.240000pt;}
.ws9{word-spacing:-2.221333pt;}
.ws9d{word-spacing:-2.186667pt;}
.ws7{word-spacing:-2.176000pt;}
.ws11{word-spacing:-2.133333pt;}
.ws10b{word-spacing:-1.973333pt;}
.wsac{word-spacing:-1.920000pt;}
.ws14{word-spacing:-1.866667pt;}
.ws75{word-spacing:-1.813333pt;}
.ws3e{word-spacing:-1.760000pt;}
.ws3a{word-spacing:-1.706667pt;}
.ws53{word-spacing:-1.653333pt;}
.ws94{word-spacing:-1.600000pt;}
.ws65{word-spacing:-1.493333pt;}
.wsc9{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws2d{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.178667pt;}
.ws5d{word-spacing:-1.173333pt;}
.wsff{word-spacing:-1.120000pt;}
.ws4d{word-spacing:-1.066667pt;}
.wsd9{word-spacing:-0.960000pt;}
.ws9e{word-spacing:-0.906667pt;}
.ws43{word-spacing:-0.853333pt;}
.ws8e{word-spacing:-0.746667pt;}
.ws11c{word-spacing:-0.586667pt;}
.ws12{word-spacing:-0.533333pt;}
.wsfd{word-spacing:-0.480000pt;}
.wsf7{word-spacing:-0.426667pt;}
.wsa6{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.160000pt;}
.ws111{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053333pt;}
.wsf8{word-spacing:0.106667pt;}
.ws15{word-spacing:0.213333pt;}
.wse8{word-spacing:0.266667pt;}
.wsf6{word-spacing:0.320000pt;}
.ws22{word-spacing:0.373333pt;}
.ws3b{word-spacing:0.426667pt;}
.wsf{word-spacing:0.533333pt;}
.wsc0{word-spacing:0.586667pt;}
.ws21{word-spacing:0.640000pt;}
.ws24{word-spacing:0.693333pt;}
.ws38{word-spacing:0.746667pt;}
.ws36{word-spacing:0.853333pt;}
.ws56{word-spacing:0.960000pt;}
.ws2{word-spacing:0.997333pt;}
.ws10{word-spacing:1.013333pt;}
.wsa7{word-spacing:1.120000pt;}
.ws84{word-spacing:1.173333pt;}
.ws89{word-spacing:1.226667pt;}
.ws2e{word-spacing:1.280000pt;}
.ws11b{word-spacing:1.386667pt;}
.ws37{word-spacing:1.493333pt;}
.ws85{word-spacing:1.546667pt;}
.ws86{word-spacing:1.600000pt;}
.wsd7{word-spacing:1.706667pt;}
.ws6{word-spacing:1.722667pt;}
.ws3f{word-spacing:1.760000pt;}
.wsf2{word-spacing:1.776000pt;}
.ws8{word-spacing:1.813333pt;}
.wsc7{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.920000pt;}
.wsa1{word-spacing:1.973333pt;}
.ws44{word-spacing:2.026667pt;}
.ws93{word-spacing:2.080000pt;}
.wsda{word-spacing:2.133333pt;}
.ws20{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.346667pt;}
.ws50{word-spacing:2.400000pt;}
.ws4f{word-spacing:2.453333pt;}
.ws4{word-spacing:2.538667pt;}
.wsfc{word-spacing:2.560000pt;}
.ws74{word-spacing:2.613333pt;}
.wsf0{word-spacing:2.666667pt;}
.ws5b{word-spacing:2.720000pt;}
.wsdd{word-spacing:2.773333pt;}
.ws33{word-spacing:2.933333pt;}
.ws42{word-spacing:2.986667pt;}
.wsb{word-spacing:3.037333pt;}
.ws82{word-spacing:3.040000pt;}
.ws113{word-spacing:3.200000pt;}
.wsc5{word-spacing:3.306667pt;}
.wsc1{word-spacing:3.360000pt;}
.wsa2{word-spacing:3.466667pt;}
.ws28{word-spacing:3.520000pt;}
.wsdc{word-spacing:3.573333pt;}
.ws7a{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.680000pt;}
.ws30{word-spacing:3.733333pt;}
.ws67{word-spacing:3.786667pt;}
.ws31{word-spacing:3.840000pt;}
.ws4b{word-spacing:3.893333pt;}
.ws27{word-spacing:3.946667pt;}
.ws90{word-spacing:4.000000pt;}
.ws110{word-spacing:4.106667pt;}
.ws41{word-spacing:4.160000pt;}
.wsde{word-spacing:4.213333pt;}
.wsef{word-spacing:4.266667pt;}
.ws1e{word-spacing:4.426667pt;}
.ws1{word-spacing:4.442667pt;}
.ws1c{word-spacing:4.480000pt;}
.ws3{word-spacing:4.488000pt;}
.wsd4{word-spacing:4.533333pt;}
.ws76{word-spacing:4.586667pt;}
.ws5{word-spacing:4.624000pt;}
.ws61{word-spacing:4.640000pt;}
.wsa0{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.746667pt;}
.ws69{word-spacing:4.800000pt;}
.ws64{word-spacing:4.853333pt;}
.ws95{word-spacing:4.960000pt;}
.ws10c{word-spacing:5.013333pt;}
.ws9a{word-spacing:5.066667pt;}
.ws10a{word-spacing:5.120000pt;}
.wsc8{word-spacing:5.173333pt;}
.ws10d{word-spacing:5.226667pt;}
.ws29{word-spacing:5.280000pt;}
.ws5c{word-spacing:5.333333pt;}
.wsfe{word-spacing:5.386667pt;}
.ws52{word-spacing:5.440000pt;}
.ws6b{word-spacing:5.493333pt;}
.ws32{word-spacing:5.546667pt;}
.ws11d{word-spacing:5.600000pt;}
.ws34{word-spacing:5.653333pt;}
.ws68{word-spacing:5.706667pt;}
.wsa8{word-spacing:5.760000pt;}
.ws91{word-spacing:5.813333pt;}
.ws6a{word-spacing:5.920000pt;}
.ws81{word-spacing:5.973333pt;}
.wsce{word-spacing:6.026667pt;}
.ws57{word-spacing:6.080000pt;}
.wsa9{word-spacing:6.133333pt;}
.wse{word-spacing:6.186667pt;}
.wsaf{word-spacing:6.240000pt;}
.wscb{word-spacing:6.346667pt;}
.ws9f{word-spacing:6.400000pt;}
.ws10e{word-spacing:6.453333pt;}
.wsc6{word-spacing:6.506667pt;}
.ws9c{word-spacing:6.560000pt;}
.ws7c{word-spacing:6.666667pt;}
.ws2c{word-spacing:6.720000pt;}
.ws83{word-spacing:6.773333pt;}
.ws79{word-spacing:6.826667pt;}
.wsf3{word-spacing:6.880000pt;}
.ws5f{word-spacing:6.933333pt;}
.wsb1{word-spacing:6.986667pt;}
.ws71{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.093333pt;}
.ws23{word-spacing:7.146667pt;}
.wsee{word-spacing:7.200000pt;}
.ws4a{word-spacing:7.253333pt;}
.ws47{word-spacing:7.413333pt;}
.ws51{word-spacing:7.520000pt;}
.ws49{word-spacing:7.626667pt;}
.ws48{word-spacing:7.680000pt;}
.wscd{word-spacing:7.786667pt;}
.wsb6{word-spacing:7.840000pt;}
.ws99{word-spacing:7.893333pt;}
.ws87{word-spacing:7.946667pt;}
.ws18{word-spacing:8.000000pt;}
.ws16{word-spacing:8.053333pt;}
.wsd6{word-spacing:8.106667pt;}
.ws17{word-spacing:8.160000pt;}
.ws103{word-spacing:8.266667pt;}
.ws2f{word-spacing:8.320000pt;}
.wsd2{word-spacing:8.373333pt;}
.ws62{word-spacing:8.533333pt;}
.wsae{word-spacing:8.586667pt;}
.ws26{word-spacing:8.640000pt;}
.wsfa{word-spacing:8.693333pt;}
.ws112{word-spacing:8.853333pt;}
.ws63{word-spacing:8.906667pt;}
.wsba{word-spacing:8.960000pt;}
.ws77{word-spacing:9.013333pt;}
.wsb0{word-spacing:9.120000pt;}
.ws97{word-spacing:9.226667pt;}
.ws96{word-spacing:9.280000pt;}
.wsbf{word-spacing:9.333333pt;}
.ws116{word-spacing:9.440000pt;}
.wsb2{word-spacing:9.546667pt;}
.ws107{word-spacing:9.653333pt;}
.ws4c{word-spacing:9.760000pt;}
.ws6d{word-spacing:9.920000pt;}
.ws5a{word-spacing:9.973333pt;}
.ws46{word-spacing:10.080000pt;}
.ws78{word-spacing:10.186667pt;}
.ws92{word-spacing:10.240000pt;}
.ws109{word-spacing:10.293333pt;}
.ws59{word-spacing:10.346667pt;}
.ws1a{word-spacing:10.400000pt;}
.wsd5{word-spacing:10.506667pt;}
.ws39{word-spacing:10.666667pt;}
.ws8d{word-spacing:10.720000pt;}
.wsb7{word-spacing:10.773333pt;}
.ws25{word-spacing:10.880000pt;}
.ws1d{word-spacing:10.933333pt;}
.wsd8{word-spacing:10.986667pt;}
.ws6e{word-spacing:11.040000pt;}
.wsbd{word-spacing:11.093333pt;}
.ws119{word-spacing:11.253333pt;}
.wsbb{word-spacing:11.306667pt;}
.wsd3{word-spacing:11.360000pt;}
.wsfb{word-spacing:11.466667pt;}
.wsf1{word-spacing:11.573333pt;}
.ws8a{word-spacing:11.626667pt;}
.wsf9{word-spacing:12.000000pt;}
.ws11e{word-spacing:12.213333pt;}
.wsbe{word-spacing:12.533333pt;}
.wse0{word-spacing:12.586667pt;}
.wsed{word-spacing:12.746667pt;}
.wseb{word-spacing:12.853333pt;}
.ws5e{word-spacing:13.333333pt;}
.ws8b{word-spacing:13.493333pt;}
.ws117{word-spacing:13.600000pt;}
.wsc4{word-spacing:13.706667pt;}
.ws6c{word-spacing:13.760000pt;}
.ws7b{word-spacing:13.813333pt;}
.ws102{word-spacing:13.920000pt;}
.ws100{word-spacing:13.973333pt;}
.wsc3{word-spacing:14.026667pt;}
.ws114{word-spacing:14.080000pt;}
.ws4e{word-spacing:14.293333pt;}
.ws19{word-spacing:14.453333pt;}
.wsb5{word-spacing:14.560000pt;}
.wsd1{word-spacing:14.826667pt;}
.ws7f{word-spacing:14.933333pt;}
.ws101{word-spacing:15.413333pt;}
.wsb3{word-spacing:15.466667pt;}
.ws3c{word-spacing:15.626667pt;}
.ws106{word-spacing:15.786667pt;}
.ws80{word-spacing:15.946667pt;}
.ws88{word-spacing:16.106667pt;}
.wsf4{word-spacing:16.426667pt;}
.ws45{word-spacing:16.640000pt;}
.wscc{word-spacing:16.853333pt;}
.ws58{word-spacing:16.906667pt;}
.wse9{word-spacing:17.013333pt;}
.ws11a{word-spacing:17.280000pt;}
.ws35{word-spacing:17.760000pt;}
.ws104{word-spacing:18.293333pt;}
.ws108{word-spacing:18.506667pt;}
.wsb8{word-spacing:19.413333pt;}
.ws7e{word-spacing:19.946667pt;}
.ws70{word-spacing:20.106667pt;}
.ws13{word-spacing:20.746667pt;}
.wsb9{word-spacing:20.960000pt;}
.ws72{word-spacing:21.173333pt;}
.wsec{word-spacing:21.600000pt;}
.wsaa{word-spacing:21.920000pt;}
.ws54{word-spacing:22.240000pt;}
.ws98{word-spacing:22.453333pt;}
.ws9b{word-spacing:22.560000pt;}
.wsc2{word-spacing:23.040000pt;}
.ws60{word-spacing:23.306667pt;}
.ws10f{word-spacing:24.800000pt;}
.ws8c{word-spacing:25.440000pt;}
.ws40{word-spacing:25.920000pt;}
.ws118{word-spacing:26.346667pt;}
.ws73{word-spacing:27.413333pt;}
.wsbc{word-spacing:27.840000pt;}
.wsca{word-spacing:48.373333pt;}
.wsf5{word-spacing:54.346667pt;}
.wse2{word-spacing:177.456000pt;}
.wse7{word-spacing:184.848000pt;}
.wse5{word-spacing:197.664000pt;}
.wse4{word-spacing:198.336000pt;}
.wse3{word-spacing:198.576000pt;}
.wsa5{word-spacing:308.496000pt;}
._34{margin-left:-13.662933pt;}
._0{margin-left:-7.189867pt;}
._14{margin-left:-5.904000pt;}
._2{margin-left:-4.941333pt;}
._1{margin-left:-3.372800pt;}
._3{margin-left:-1.694400pt;}
._4{width:1.260267pt;}
._6{width:2.971200pt;}
._5{width:3.871467pt;}
._b{width:4.886400pt;}
._7{width:6.421333pt;}
._8{width:7.893333pt;}
._9{width:9.397333pt;}
._a{width:10.362667pt;}
._e{width:11.253333pt;}
._c{width:12.293333pt;}
._d{width:14.357333pt;}
._10{width:15.274667pt;}
._11{width:16.208000pt;}
._15{width:18.805333pt;}
._32{width:20.014400pt;}
._33{width:24.242133pt;}
._f{width:26.362667pt;}
._35{width:31.861333pt;}
._1b{width:85.104000pt;}
._1a{width:109.200000pt;}
._25{width:120.432000pt;}
._17{width:121.488000pt;}
._27{width:128.448000pt;}
._16{width:139.824000pt;}
._18{width:141.600000pt;}
._19{width:143.040000pt;}
._2d{width:144.000000pt;}
._26{width:147.168000pt;}
._2e{width:159.312000pt;}
._24{width:174.960000pt;}
._30{width:190.656000pt;}
._13{width:193.824000pt;}
._12{width:196.512000pt;}
._1f{width:205.872000pt;}
._1e{width:209.664000pt;}
._1d{width:222.912000pt;}
._2f{width:224.174400pt;}
._31{width:228.576000pt;}
._29{width:233.616000pt;}
._2b{width:235.824000pt;}
._21{width:236.784000pt;}
._2a{width:255.120000pt;}
._23{width:260.688000pt;}
._28{width:297.936000pt;}
._2c{width:319.296000pt;}
._22{width:419.328000pt;}
._1c{width:527.904000pt;}
._20{width:549.216000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:55.931600pt;}
.y127{bottom:78.314267pt;}
.yff{bottom:78.674533pt;}
.yc3{bottom:80.001200pt;}
.y9e{bottom:87.460800pt;}
.ye9{bottom:88.796133pt;}
.y75{bottom:90.647333pt;}
.y4b{bottom:90.660667pt;}
.y123{bottom:94.314267pt;}
.yc2{bottom:96.001200pt;}
.y9d{bottom:103.460800pt;}
.ye8{bottom:104.796133pt;}
.y74{bottom:106.647333pt;}
.y4a{bottom:106.660667pt;}
.y122{bottom:110.314267pt;}
.yc1{bottom:112.001200pt;}
.y9c{bottom:119.460800pt;}
.ye7{bottom:120.796133pt;}
.y73{bottom:122.647333pt;}
.y49{bottom:122.660667pt;}
.y121{bottom:126.314267pt;}
.yc0{bottom:128.001200pt;}
.y9b{bottom:135.460800pt;}
.ye6{bottom:136.796133pt;}
.y72{bottom:138.647333pt;}
.y48{bottom:138.660667pt;}
.y120{bottom:142.314267pt;}
.ybf{bottom:144.001200pt;}
.y22{bottom:148.187467pt;}
.y9a{bottom:151.460800pt;}
.ye5{bottom:152.796133pt;}
.y71{bottom:154.647333pt;}
.y47{bottom:154.660667pt;}
.y11f{bottom:158.314267pt;}
.ybe{bottom:160.001200pt;}
.y21{bottom:161.787467pt;}
.y99{bottom:167.460800pt;}
.ye4{bottom:168.796133pt;}
.y70{bottom:170.647333pt;}
.y46{bottom:170.660667pt;}
.y11e{bottom:174.314267pt;}
.y20{bottom:175.387467pt;}
.ybd{bottom:176.001200pt;}
.y98{bottom:183.460800pt;}
.ye3{bottom:184.796133pt;}
.y6f{bottom:186.647333pt;}
.y45{bottom:186.660667pt;}
.y1f{bottom:188.987467pt;}
.y11d{bottom:190.314267pt;}
.ybc{bottom:192.001200pt;}
.y97{bottom:199.460800pt;}
.ye2{bottom:200.796133pt;}
.y1e{bottom:202.587467pt;}
.y6e{bottom:202.647333pt;}
.y44{bottom:202.660667pt;}
.y11c{bottom:206.314267pt;}
.ybb{bottom:208.001200pt;}
.y96{bottom:215.460800pt;}
.y1d{bottom:216.187467pt;}
.ye1{bottom:216.796133pt;}
.y6d{bottom:218.647333pt;}
.y43{bottom:218.660667pt;}
.y11b{bottom:222.314267pt;}
.yba{bottom:224.001200pt;}
.y1c{bottom:229.787467pt;}
.y95{bottom:231.460800pt;}
.ye0{bottom:232.796133pt;}
.y6c{bottom:234.647333pt;}
.y42{bottom:234.660667pt;}
.y11a{bottom:238.314267pt;}
.yb9{bottom:240.001200pt;}
.y1b{bottom:243.387467pt;}
.y94{bottom:247.460800pt;}
.ydf{bottom:248.796133pt;}
.y6b{bottom:250.647333pt;}
.y41{bottom:250.660667pt;}
.y119{bottom:254.314267pt;}
.yb8{bottom:256.001200pt;}
.y1a{bottom:256.987467pt;}
.y93{bottom:263.460800pt;}
.yde{bottom:264.796133pt;}
.y6a{bottom:266.647333pt;}
.y40{bottom:266.660667pt;}
.y118{bottom:270.314267pt;}
.yb7{bottom:272.001200pt;}
.y19{bottom:278.587467pt;}
.y92{bottom:279.460800pt;}
.ydd{bottom:280.796133pt;}
.y69{bottom:282.647333pt;}
.y3f{bottom:282.660667pt;}
.y117{bottom:286.314267pt;}
.yb6{bottom:288.001200pt;}
.y91{bottom:295.460800pt;}
.ydc{bottom:296.796133pt;}
.y68{bottom:298.647333pt;}
.y3e{bottom:298.660667pt;}
.y116{bottom:302.314267pt;}
.yb5{bottom:304.001200pt;}
.y18{bottom:308.987467pt;}
.y90{bottom:311.460800pt;}
.ydb{bottom:312.796133pt;}
.y67{bottom:314.647333pt;}
.y3d{bottom:314.660667pt;}
.y115{bottom:318.314267pt;}
.yb4{bottom:320.001200pt;}
.y17{bottom:322.587467pt;}
.y8f{bottom:327.460800pt;}
.yda{bottom:328.796133pt;}
.y66{bottom:330.647333pt;}
.y3c{bottom:330.660667pt;}
.y126{bottom:334.314267pt;}
.yb3{bottom:336.001200pt;}
.y16{bottom:336.187467pt;}
.y8e{bottom:343.460800pt;}
.yd9{bottom:344.796133pt;}
.y65{bottom:346.647333pt;}
.y3b{bottom:346.660667pt;}
.y15{bottom:349.787467pt;}
.y114{bottom:350.314267pt;}
.yb2{bottom:352.001200pt;}
.y8d{bottom:359.460800pt;}
.yd8{bottom:360.796133pt;}
.y64{bottom:362.647333pt;}
.y3a{bottom:362.660667pt;}
.y14{bottom:363.387467pt;}
.y125{bottom:366.314267pt;}
.y8c{bottom:375.460800pt;}
.yd7{bottom:376.796133pt;}
.y13{bottom:376.987467pt;}
.y63{bottom:378.647333pt;}
.y39{bottom:378.660667pt;}
.y124{bottom:382.314267pt;}
.yb1{bottom:384.001200pt;}
.y12{bottom:390.587467pt;}
.y8b{bottom:391.460800pt;}
.yd6{bottom:392.796133pt;}
.y62{bottom:394.647333pt;}
.y38{bottom:394.660667pt;}
.y113{bottom:398.314267pt;}
.yfe{bottom:400.281467pt;}
.y11{bottom:404.187467pt;}
.y8a{bottom:407.460800pt;}
.yd5{bottom:408.796133pt;}
.y61{bottom:410.647333pt;}
.y37{bottom:410.660667pt;}
.y112{bottom:414.314267pt;}
.y10{bottom:417.787467pt;}
.yfd{bottom:419.121467pt;}
.y89{bottom:423.460800pt;}
.yd4{bottom:424.796133pt;}
.y60{bottom:426.647333pt;}
.y36{bottom:426.660667pt;}
.y111{bottom:430.314267pt;}
.yf{bottom:431.387467pt;}
.yb0{bottom:432.001200pt;}
.yfc{bottom:438.105467pt;}
.y88{bottom:439.460800pt;}
.yd3{bottom:440.796133pt;}
.y5f{bottom:442.647333pt;}
.y35{bottom:442.660667pt;}
.ye{bottom:444.987467pt;}
.y110{bottom:446.314267pt;}
.yaf{bottom:448.001200pt;}
.yfb{bottom:452.505467pt;}
.y87{bottom:455.460800pt;}
.yd2{bottom:456.796133pt;}
.y5e{bottom:458.647333pt;}
.y34{bottom:458.660667pt;}
.y10f{bottom:462.314267pt;}
.yae{bottom:464.001200pt;}
.yd{bottom:466.587467pt;}
.y86{bottom:471.460800pt;}
.yfa{bottom:471.489467pt;}
.yd1{bottom:472.796133pt;}
.y5d{bottom:474.647333pt;}
.y33{bottom:474.660667pt;}
.y10e{bottom:478.314267pt;}
.yad{bottom:480.001200pt;}
.yf9{bottom:485.889467pt;}
.y85{bottom:487.460800pt;}
.yd0{bottom:488.796133pt;}
.y5c{bottom:490.647333pt;}
.y32{bottom:490.660667pt;}
.yac{bottom:496.001200pt;}
.yf8{bottom:500.289467pt;}
.y84{bottom:503.460800pt;}
.y10d{bottom:503.961200pt;}
.ycf{bottom:504.796133pt;}
.y5b{bottom:506.647333pt;}
.y31{bottom:506.660667pt;}
.yab{bottom:512.001200pt;}
.yc{bottom:512.988133pt;}
.yf7{bottom:519.273467pt;}
.y83{bottom:519.460800pt;}
.yce{bottom:520.796133pt;}
.y5a{bottom:522.647333pt;}
.y30{bottom:522.660667pt;}
.y10c{bottom:522.945200pt;}
.yb{bottom:525.788133pt;}
.yaa{bottom:528.001200pt;}
.yf6{bottom:533.673467pt;}
.y82{bottom:535.460800pt;}
.ycd{bottom:536.796133pt;}
.y59{bottom:538.647333pt;}
.y2f{bottom:538.660667pt;}
.y10b{bottom:541.929200pt;}
.ya9{bottom:544.001200pt;}
.y81{bottom:551.460667pt;}
.yf5{bottom:552.657467pt;}
.ycc{bottom:552.796133pt;}
.y58{bottom:554.647333pt;}
.y2e{bottom:554.660667pt;}
.ya{bottom:556.188667pt;}
.ya8{bottom:560.001200pt;}
.y10a{bottom:560.913200pt;}
.yf4{bottom:567.057467pt;}
.y80{bottom:567.460667pt;}
.ycb{bottom:568.796133pt;}
.y9{bottom:568.988800pt;}
.y57{bottom:570.647333pt;}
.y2d{bottom:570.660667pt;}
.y109{bottom:575.313200pt;}
.yf3{bottom:581.457467pt;}
.y7f{bottom:583.460667pt;}
.y56{bottom:586.647333pt;}
.y2c{bottom:586.660667pt;}
.ya7{bottom:592.004267pt;}
.y108{bottom:594.297200pt;}
.y8{bottom:599.389333pt;}
.y7e{bottom:599.460667pt;}
.yf2{bottom:600.441467pt;}
.yca{bottom:600.796133pt;}
.y55{bottom:602.647333pt;}
.y2b{bottom:602.660667pt;}
.ya6{bottom:610.856267pt;}
.y7{bottom:612.189333pt;}
.y107{bottom:613.281200pt;}
.yf1{bottom:614.841467pt;}
.y7d{bottom:615.460667pt;}
.ya5{bottom:618.056267pt;}
.y54{bottom:618.647333pt;}
.y2a{bottom:618.660667pt;}
.y106{bottom:627.681200pt;}
.yf0{bottom:629.241467pt;}
.y7c{bottom:631.460667pt;}
.yc9{bottom:632.796133pt;}
.y53{bottom:634.647333pt;}
.y29{bottom:634.660667pt;}
.ya4{bottom:644.240267pt;}
.y105{bottom:646.665200pt;}
.y7b{bottom:647.460667pt;}
.yef{bottom:648.225467pt;}
.yc8{bottom:648.796133pt;}
.y52{bottom:650.647333pt;}
.y28{bottom:650.660667pt;}
.y6{bottom:658.589333pt;}
.ya2{bottom:658.640267pt;}
.yee{bottom:662.625467pt;}
.y7a{bottom:663.460667pt;}
.y104{bottom:665.649200pt;}
.y51{bottom:666.647333pt;}
.y27{bottom:666.660667pt;}
.ya3{bottom:673.040267pt;}
.y79{bottom:679.460667pt;}
.yc7{bottom:680.796133pt;}
.yed{bottom:681.609467pt;}
.y50{bottom:682.647333pt;}
.y26{bottom:682.660667pt;}
.y103{bottom:684.633200pt;}
.y5{bottom:685.789333pt;}
.ya1{bottom:692.024267pt;}
.y78{bottom:695.460667pt;}
.y4f{bottom:698.647333pt;}
.y25{bottom:698.660667pt;}
.yec{bottom:700.593467pt;}
.y102{bottom:703.617200pt;}
.ya0{bottom:711.008267pt;}
.y77{bottom:711.460667pt;}
.yc6{bottom:712.796133pt;}
.y4{bottom:712.989333pt;}
.y4e{bottom:714.647333pt;}
.y24{bottom:714.660667pt;}
.yeb{bottom:719.577467pt;}
.y101{bottom:722.601200pt;}
.yc5{bottom:728.796133pt;}
.y4d{bottom:730.647333pt;}
.y76{bottom:730.660667pt;}
.yea{bottom:740.073467pt;}
.y3{bottom:740.189333pt;}
.y100{bottom:741.585200pt;}
.yc4{bottom:744.796133pt;}
.y4c{bottom:746.647333pt;}
.y23{bottom:746.660667pt;}
.y9f{bottom:746.660800pt;}
.y2{bottom:812.598400pt;}
.h3{height:29.625000pt;}
.h7{height:31.498698pt;}
.h6{height:32.859375pt;}
.he{height:33.351562pt;}
.hd{height:36.510417pt;}
.hb{height:37.031250pt;}
.ha{height:37.057292pt;}
.h5{height:37.437500pt;}
.hc{height:37.604167pt;}
.h8{height:39.777344pt;}
.h2{height:42.117188pt;}
.h10{height:44.437500pt;}
.h9{height:46.796875pt;}
.hf{height:70.917188pt;}
.h4{height:79.554688pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x24{left:83.446400pt;}
.x22{left:85.114400pt;}
.x2c{left:86.392267pt;}
.x1d{left:87.778400pt;}
.x1f{left:92.278400pt;}
.xf{left:94.483867pt;}
.x25{left:96.610400pt;}
.x12{left:99.590533pt;}
.x1a{left:102.298400pt;}
.x2e{left:104.248267pt;}
.xd{left:105.831733pt;}
.x26{left:107.278400pt;}
.x20{left:111.610400pt;}
.x1b{left:113.278400pt;}
.x23{left:116.938400pt;}
.x1c{left:118.606400pt;}
.x13{left:123.590533pt;}
.xc{left:124.724400pt;}
.x2b{left:128.056267pt;}
.x4{left:130.444667pt;}
.x2f{left:132.028267pt;}
.x29{left:135.286400pt;}
.x3{left:154.154000pt;}
.x5{left:162.291333pt;}
.x19{left:170.902400pt;}
.x27{left:230.050400pt;}
.x2a{left:241.852267pt;}
.x2d{left:247.192267pt;}
.x30{left:254.872267pt;}
.x28{left:256.918400pt;}
.x21{left:295.246400pt;}
.xb{left:297.593867pt;}
.xe{left:298.932667pt;}
.x10{left:330.710533pt;}
.x16{left:336.708667pt;}
.x11{left:349.603867pt;}
.x15{left:354.710533pt;}
.x1e{left:356.974400pt;}
.x14{left:378.710533pt;}
.x9{left:381.798933pt;}
.x18{left:383.016667pt;}
.x7{left:393.653067pt;}
.xa{left:420.989600pt;}
.x6{left:444.280667pt;}
.x8{left:449.630267pt;}
.x17{left:454.824667pt;}
.x31{left:555.374533pt;}
.x1{left:560.929200pt;}
}

