
    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_7a0a1cb30931a30010af2be0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_ce73ba2a73cf44e3752ccee1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_6759ba7ba5c6ce5b8ea98adc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_9bf65c821bdf787822f6c02e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_8c28a50d8e1e0b2c2adfe479.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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);}
.v5{vertical-align:-65.160600px;}
.v4{vertical-align:-60.780000px;}
.v6{vertical-align:-55.800600px;}
.va{vertical-align:-31.800600px;}
.v9{vertical-align:-27.302400px;}
.v1{vertical-align:-15.000000px;}
.v2{vertical-align:-13.500000px;}
.v12{vertical-align:-7.380000px;}
.vd{vertical-align:-2.760000px;}
.v10{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.200000px;}
.v3{vertical-align:15.780000px;}
.vf{vertical-align:18.360000px;}
.vb{vertical-align:27.302400px;}
.v11{vertical-align:30.002400px;}
.vc{vertical-align:31.860000px;}
.v8{vertical-align:39.000000px;}
.ve{vertical-align:59.100000px;}
.ls24{letter-spacing:-10.020000px;}
.ls22{letter-spacing:-7.740000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002400px;}
.ls13{letter-spacing:0.006000px;}
.lsd{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.013200px;}
.lsa{letter-spacing:0.016200px;}
.ls12{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.050400px;}
.ls11{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.924000px;}
.ls5{letter-spacing:0.936000px;}
.ls4{letter-spacing:0.960000px;}
.ls16{letter-spacing:0.972000px;}
.ls28{letter-spacing:0.984000px;}
.ls7{letter-spacing:0.996000px;}
.ls10{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.200000px;}
.ls1a{letter-spacing:2.230200px;}
.ls2a{letter-spacing:2.235600px;}
.ls2b{letter-spacing:2.273400px;}
.ls2e{letter-spacing:2.280000px;}
.ls18{letter-spacing:2.289600px;}
.ls2c{letter-spacing:2.300400px;}
.ls34{letter-spacing:3.510000px;}
.ls2f{letter-spacing:3.531600px;}
.ls23{letter-spacing:3.564000px;}
.ls29{letter-spacing:3.596400px;}
.ls33{letter-spacing:7.620000px;}
.ls6{letter-spacing:17.580000px;}
.ls1c{letter-spacing:46.742400px;}
.ls31{letter-spacing:62.893800px;}
.ls1b{letter-spacing:63.784800px;}
.ls36{letter-spacing:89.220000px;}
.ls19{letter-spacing:93.819600px;}
.ls25{letter-spacing:134.760000px;}
.lsc{letter-spacing:262.128000px;}
.ls1f{letter-spacing:268.800000px;}
.ls35{letter-spacing:277.020000px;}
.ls20{letter-spacing:304.080000px;}
.ls32{letter-spacing:366.714000px;}
.ls1e{letter-spacing:486.595200px;}
.ls9{letter-spacing:537.636000px;}
.ls30{letter-spacing:557.400000px;}
.ls14{letter-spacing:691.980000px;}
.ls2d{letter-spacing:767.700000px;}
.ls21{letter-spacing:845.829600px;}
.ls1d{letter-spacing:879.420000px;}
.lsf{letter-spacing:1919.340000px;}
.lse{letter-spacing:2206.440000px;}
.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;}
}
.ws85{word-spacing:-380.214000px;}
.ws83{word-spacing:-292.020000px;}
.ws70{word-spacing:-149.760000px;}
.ws3{word-spacing:-21.000000px;}
.ws6e{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.800000px;}
.wsb{word-spacing:-16.200000px;}
.ws47{word-spacing:-15.000000px;}
.ws4a{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.960000px;}
.ws48{word-spacing:-12.000000px;}
.ws4b{word-spacing:-10.800000px;}
.ws6f{word-spacing:-4.980000px;}
.ws19{word-spacing:-4.020000px;}
.ws64{word-spacing:-3.900000px;}
.ws21{word-spacing:-3.720000px;}
.ws9f{word-spacing:-3.402000px;}
.ws7d{word-spacing:-3.360000px;}
.ws53{word-spacing:-3.060000px;}
.ws74{word-spacing:-2.880000px;}
.ws8{word-spacing:-2.760000px;}
.ws68{word-spacing:-2.580000px;}
.ws54{word-spacing:-2.460000px;}
.ws93{word-spacing:-2.214000px;}
.ws6a{word-spacing:-1.980000px;}
.ws40{word-spacing:-1.920000px;}
.ws3e{word-spacing:-1.740000px;}
.ws29{word-spacing:-1.680000px;}
.ws65{word-spacing:-1.440000px;}
.ws8d{word-spacing:-1.380000px;}
.ws7a{word-spacing:-1.320000px;}
.wsa4{word-spacing:-1.296000px;}
.ws43{word-spacing:-1.080000px;}
.ws9b{word-spacing:-0.972000px;}
.ws3c{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.660000px;}
.ws26{word-spacing:-0.600000px;}
.ws2d{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.120000px;}
.ws5{word-spacing:0.000000px;}
.ws4d{word-spacing:0.060000px;}
.ws7c{word-spacing:0.120000px;}
.ws23{word-spacing:0.180000px;}
.ws3b{word-spacing:0.300000px;}
.ws1b{word-spacing:0.480000px;}
.ws9e{word-spacing:0.594000px;}
.wsd{word-spacing:0.720000px;}
.ws51{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws89{word-spacing:1.080000px;}
.wsf{word-spacing:1.140000px;}
.wsa3{word-spacing:1.188000px;}
.ws5b{word-spacing:1.260000px;}
.ws22{word-spacing:1.440000px;}
.ws9c{word-spacing:1.458000px;}
.ws5d{word-spacing:1.560000px;}
.ws24{word-spacing:1.620000px;}
.ws4e{word-spacing:1.800000px;}
.ws14{word-spacing:1.860000px;}
.ws41{word-spacing:1.920000px;}
.ws3d{word-spacing:1.980000px;}
.ws2c{word-spacing:2.040000px;}
.ws56{word-spacing:2.100000px;}
.ws1f{word-spacing:2.160000px;}
.ws7b{word-spacing:2.220000px;}
.ws2f{word-spacing:2.280000px;}
.ws69{word-spacing:2.340000px;}
.ws1d{word-spacing:2.400000px;}
.ws67{word-spacing:2.460000px;}
.ws25{word-spacing:2.520000px;}
.ws16{word-spacing:2.580000px;}
.ws58{word-spacing:2.640000px;}
.ws33{word-spacing:3.120000px;}
.ws11{word-spacing:3.540000px;}
.ws32{word-spacing:3.660000px;}
.ws59{word-spacing:3.720000px;}
.wsa2{word-spacing:3.726000px;}
.ws8a{word-spacing:3.960000px;}
.ws1{word-spacing:4.099200px;}
.ws6{word-spacing:4.178400px;}
.ws4{word-spacing:4.197600px;}
.ws0{word-spacing:4.219200px;}
.ws78{word-spacing:4.320000px;}
.ws77{word-spacing:4.380000px;}
.ws17{word-spacing:4.620000px;}
.ws94{word-spacing:4.644000px;}
.ws52{word-spacing:4.680000px;}
.ws10{word-spacing:4.740000px;}
.ws62{word-spacing:4.860000px;}
.ws1e{word-spacing:4.920000px;}
.ws88{word-spacing:4.980000px;}
.ws5f{word-spacing:5.040000px;}
.ws37{word-spacing:5.100000px;}
.ws2a{word-spacing:5.160000px;}
.ws75{word-spacing:5.220000px;}
.ws91{word-spacing:5.280000px;}
.ws12{word-spacing:5.460000px;}
.ws2e{word-spacing:5.640000px;}
.ws4f{word-spacing:5.700000px;}
.ws5c{word-spacing:5.760000px;}
.ws1a{word-spacing:5.820000px;}
.ws35{word-spacing:5.940000px;}
.ws1c{word-spacing:6.420000px;}
.ws36{word-spacing:6.600000px;}
.wsa0{word-spacing:7.020000px;}
.ws97{word-spacing:7.128000px;}
.ws66{word-spacing:7.200000px;}
.ws31{word-spacing:7.260000px;}
.ws18{word-spacing:7.560000px;}
.ws73{word-spacing:7.740000px;}
.ws5a{word-spacing:7.920000px;}
.ws79{word-spacing:7.980000px;}
.ws7e{word-spacing:8.040000px;}
.ws87{word-spacing:8.220000px;}
.ws27{word-spacing:8.340000px;}
.ws8f{word-spacing:8.580000px;}
.ws46{word-spacing:8.640000px;}
.ws99{word-spacing:9.072000px;}
.wsa1{word-spacing:9.126000px;}
.ws44{word-spacing:9.180000px;}
.ws3a{word-spacing:9.300000px;}
.ws71{word-spacing:9.345600px;}
.ws55{word-spacing:9.600000px;}
.ws92{word-spacing:9.660000px;}
.ws3f{word-spacing:9.780000px;}
.ws80{word-spacing:9.900000px;}
.wse{word-spacing:10.080000px;}
.ws42{word-spacing:10.140000px;}
.ws8e{word-spacing:10.200000px;}
.ws2b{word-spacing:10.320000px;}
.ws39{word-spacing:10.860000px;}
.ws90{word-spacing:11.100000px;}
.ws8c{word-spacing:11.220000px;}
.ws95{word-spacing:11.664000px;}
.ws8b{word-spacing:12.180000px;}
.ws76{word-spacing:13.020000px;}
.ws45{word-spacing:13.200000px;}
.ws20{word-spacing:13.380000px;}
.ws57{word-spacing:14.340000px;}
.ws5e{word-spacing:14.400000px;}
.ws50{word-spacing:14.460000px;}
.ws13{word-spacing:15.780000px;}
.wsc{word-spacing:16.680000px;}
.ws38{word-spacing:17.220000px;}
.ws63{word-spacing:17.580000px;}
.ws9d{word-spacing:19.224000px;}
.ws30{word-spacing:20.940000px;}
.ws9a{word-spacing:21.600000px;}
.ws34{word-spacing:22.860000px;}
.wsa5{word-spacing:25.488000px;}
.ws60{word-spacing:30.060000px;}
.ws98{word-spacing:34.182000px;}
.ws6d{word-spacing:43.200000px;}
.ws96{word-spacing:48.708000px;}
.ws82{word-spacing:54.221400px;}
.ws84{word-spacing:65.100000px;}
.ws7f{word-spacing:72.180000px;}
.ws81{word-spacing:82.058400px;}
.ws6b{word-spacing:233.820000px;}
.ws6c{word-spacing:601.464000px;}
.ws49{word-spacing:1186.291800px;}
.ws72{word-spacing:1366.902000px;}
.ws86{word-spacing:1486.944000px;}
.ws4c{word-spacing:1499.796000px;}
._9{margin-left:-520.860000px;}
._8{margin-left:-329.940000px;}
._a{margin-left:-273.180000px;}
._c{margin-left:-231.480000px;}
._b{margin-left:-203.520000px;}
._e{margin-left:-178.470000px;}
._2{margin-left:-7.920000px;}
._1{margin-left:-5.904000px;}
._4{margin-left:-3.900000px;}
._0{margin-left:-2.808000px;}
._3{margin-left:-1.080000px;}
._5{width:1.200000px;}
._7{width:8.940000px;}
._d{width:20.196000px;}
._6{width:22.740000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:43.200000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:67.200000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:83.475000px;}
.y3a{bottom:84.885000px;}
.y39{bottom:102.885000px;}
.y38{bottom:120.885000px;}
.yd7{bottom:123.135000px;}
.yae{bottom:129.960000px;}
.yd6{bottom:136.635000px;}
.y37{bottom:138.885000px;}
.y36{bottom:156.885000px;}
.yc{bottom:166.155000px;}
.y35{bottom:174.885000px;}
.yab{bottom:182.940000px;}
.yf8{bottom:183.930000px;}
.ya9{bottom:184.080000px;}
.yb{bottom:184.155000px;}
.yd8{bottom:189.630600px;}
.y34{bottom:192.885000px;}
.y5b{bottom:197.385000px;}
.yf7{bottom:201.930000px;}
.ya{bottom:202.155000px;}
.y33{bottom:210.885000px;}
.y5a{bottom:219.885000px;}
.yf6{bottom:219.930000px;}
.y9{bottom:220.155000px;}
.yaa{bottom:223.320450px;}
.ydc{bottom:225.225000px;}
.ya5{bottom:226.365000px;}
.y32{bottom:228.885000px;}
.ya1{bottom:231.255000px;}
.y59{bottom:237.885000px;}
.yf5{bottom:237.930000px;}
.ya6{bottom:242.115000px;}
.y31{bottom:246.885000px;}
.ya8{bottom:247.395000px;}
.y9f{bottom:248.595000px;}
.yad{bottom:251.970000px;}
.yf4{bottom:255.930000px;}
.ya7{bottom:260.685000px;}
.y30{bottom:264.885000px;}
.y58{bottom:266.895000px;}
.ydb{bottom:267.345000px;}
.ya3{bottom:272.430000px;}
.ya0{bottom:272.925000px;}
.yf3{bottom:273.930000px;}
.ya4{bottom:275.730000px;}
.y2f{bottom:282.885000px;}
.yf2{bottom:291.930000px;}
.ya2{bottom:293.745000px;}
.y9e{bottom:297.435000px;}
.y2e{bottom:300.885000px;}
.yac{bottom:301.080000px;}
.y57{bottom:309.885000px;}
.yf1{bottom:309.930000px;}
.ydd{bottom:315.180000px;}
.y2d{bottom:318.885000px;}
.yda{bottom:327.270000px;}
.yd9{bottom:327.690000px;}
.y56{bottom:327.885000px;}
.yf0{bottom:327.930000px;}
.y2c{bottom:336.885000px;}
.y55{bottom:345.885000px;}
.yef{bottom:345.930000px;}
.yde{bottom:353.520000px;}
.y2b{bottom:354.885000px;}
.y54{bottom:363.885000px;}
.yee{bottom:363.930000px;}
.y2a{bottom:372.885000px;}
.y11e{bottom:376.077900px;}
.y53{bottom:381.885000px;}
.yed{bottom:381.930000px;}
.y8a{bottom:385.155000px;}
.y73{bottom:388.155000px;}
.y11d{bottom:389.577900px;}
.y29{bottom:390.885000px;}
.y52{bottom:399.885000px;}
.yec{bottom:399.930000px;}
.y89{bottom:403.155000px;}
.y72{bottom:406.155000px;}
.y28{bottom:408.885000px;}
.y11c{bottom:410.578500px;}
.y51{bottom:417.885000px;}
.yeb{bottom:417.930000px;}
.y88{bottom:421.155000px;}
.y11b{bottom:424.078500px;}
.y71{bottom:424.155000px;}
.y27{bottom:426.885000px;}
.yc1{bottom:432.360000px;}
.y50{bottom:435.885000px;}
.yea{bottom:435.930000px;}
.ybb{bottom:436.815000px;}
.y87{bottom:439.155000px;}
.y70{bottom:442.155000px;}
.y26{bottom:444.885000px;}
.y11a{bottom:445.079100px;}
.y4f{bottom:453.885000px;}
.yba{bottom:454.815000px;}
.y86{bottom:457.155000px;}
.y119{bottom:458.579100px;}
.y6f{bottom:460.155000px;}
.yc0{bottom:460.860000px;}
.y25{bottom:462.885000px;}
.ye9{bottom:464.940000px;}
.y4e{bottom:471.885000px;}
.y118{bottom:472.079100px;}
.yb9{bottom:472.815000px;}
.y85{bottom:475.155000px;}
.y6e{bottom:478.155000px;}
.y24{bottom:480.885000px;}
.y4d{bottom:489.885000px;}
.yb8{bottom:490.815000px;}
.y117{bottom:493.079700px;}
.y84{bottom:493.155000px;}
.y6d{bottom:496.155000px;}
.y23{bottom:498.885000px;}
.yc3{bottom:501.210000px;}
.y116{bottom:506.579700px;}
.y4c{bottom:507.885000px;}
.ye8{bottom:507.930000px;}
.yb7{bottom:508.815000px;}
.yc2{bottom:510.120000px;}
.y83{bottom:511.155000px;}
.y6c{bottom:514.155000px;}
.y22{bottom:516.885000px;}
.y115{bottom:520.079700px;}
.y4b{bottom:525.885000px;}
.ye7{bottom:525.930000px;}
.yb6{bottom:526.815000px;}
.y82{bottom:529.155000px;}
.y6b{bottom:532.155000px;}
.y21{bottom:534.885000px;}
.y114{bottom:541.080300px;}
.y4a{bottom:543.885000px;}
.ye6{bottom:543.930000px;}
.yb5{bottom:544.815000px;}
.y81{bottom:547.155000px;}
.y6a{bottom:550.155000px;}
.y20{bottom:552.885000px;}
.y113{bottom:554.580300px;}
.y49{bottom:561.885000px;}
.ye5{bottom:561.930000px;}
.yb4{bottom:562.815000px;}
.y8{bottom:563.143200px;}
.ybf{bottom:563.925000px;}
.y80{bottom:565.155000px;}
.y112{bottom:568.080300px;}
.y69{bottom:568.155000px;}
.y1f{bottom:570.885000px;}
.y48{bottom:579.885000px;}
.ye4{bottom:579.930000px;}
.yb3{bottom:580.815000px;}
.y7f{bottom:583.155000px;}
.y7{bottom:584.143800px;}
.y68{bottom:586.155000px;}
.y1e{bottom:588.885000px;}
.y111{bottom:589.079550px;}
.ybe{bottom:589.425000px;}
.y47{bottom:597.885000px;}
.ye3{bottom:597.930000px;}
.yb2{bottom:598.815000px;}
.y7e{bottom:601.155000px;}
.y110{bottom:602.579550px;}
.y67{bottom:604.155000px;}
.y1d{bottom:606.885000px;}
.ybd{bottom:614.925000px;}
.y46{bottom:615.885000px;}
.y10f{bottom:616.079550px;}
.yb1{bottom:616.815000px;}
.y7d{bottom:619.155000px;}
.y66{bottom:622.155000px;}
.y1c{bottom:624.885000px;}
.ybc{bottom:632.925000px;}
.y45{bottom:633.885000px;}
.yb0{bottom:634.815000px;}
.y10e{bottom:637.080150px;}
.y7c{bottom:637.155000px;}
.y65{bottom:640.155000px;}
.yff{bottom:640.665000px;}
.y1b{bottom:642.885000px;}
.y101{bottom:649.230000px;}
.y100{bottom:649.590000px;}
.y10d{bottom:650.580150px;}
.y44{bottom:651.885000px;}
.y7b{bottom:655.155000px;}
.yfe{bottom:657.540000px;}
.yaf{bottom:663.810000px;}
.y10c{bottom:664.080150px;}
.y64{bottom:669.150000px;}
.y43{bottom:669.885000px;}
.y1a{bottom:671.895000px;}
.y7a{bottom:673.155000px;}
.y10b{bottom:677.580150px;}
.ye2{bottom:684.270000px;}
.y42{bottom:687.885000px;}
.y79{bottom:691.155000px;}
.y10a{bottom:698.580750px;}
.ye1{bottom:702.270000px;}
.y41{bottom:705.885000px;}
.y78{bottom:709.155000px;}
.y6{bottom:710.143800px;}
.yc4{bottom:710.640000px;}
.y109{bottom:712.080750px;}
.y63{bottom:712.155000px;}
.ye0{bottom:720.270000px;}
.y40{bottom:723.885000px;}
.y108{bottom:725.580750px;}
.y77{bottom:727.155000px;}
.y62{bottom:730.155000px;}
.y5{bottom:731.144400px;}
.y19{bottom:732.885000px;}
.y107{bottom:739.080750px;}
.y3f{bottom:741.885000px;}
.y76{bottom:745.155000px;}
.y61{bottom:748.155000px;}
.yd5{bottom:749.145150px;}
.y18{bottom:749.385000px;}
.y4{bottom:752.145000px;}
.y106{bottom:752.580750px;}
.yfb{bottom:758.519250px;}
.yfd{bottom:758.520600px;}
.y3e{bottom:759.885000px;}
.y75{bottom:763.155000px;}
.y17{bottom:765.885000px;}
.y60{bottom:766.155000px;}
.yf9{bottom:767.085000px;}
.yfc{bottom:767.430000px;}
.y105{bottom:773.580000px;}
.y3d{bottom:777.885000px;}
.y16{bottom:782.385000px;}
.yfa{bottom:783.329550px;}
.y104{bottom:787.080000px;}
.y5f{bottom:791.655000px;}
.y74{bottom:792.150000px;}
.y3c{bottom:795.885000px;}
.y15{bottom:798.885000px;}
.y103{bottom:800.580000px;}
.y3b{bottom:813.885000px;}
.y3{bottom:815.145000px;}
.y14{bottom:815.385000px;}
.y5e{bottom:817.155000px;}
.ydf{bottom:826.575000px;}
.y102{bottom:828.570000px;}
.y13{bottom:831.885000px;}
.y5d{bottom:835.155000px;}
.y5c{bottom:853.155000px;}
.y120{bottom:867.225000px;}
.y11f{bottom:880.725000px;}
.y2{bottom:894.150000px;}
.y8b{bottom:901.980000px;}
.y128{bottom:914.655000px;}
.y1{bottom:919.650000px;}
.y12{bottom:942.420000px;}
.yd4{bottom:951.120000px;}
.y11{bottom:966.420000px;}
.y90{bottom:970.770000px;}
.y126{bottom:977.640000px;}
.y124{bottom:985.800000px;}
.y10{bottom:990.420000px;}
.y8f{bottom:999.465000px;}
.ycb{bottom:1004.235000px;}
.yc7{bottom:1011.600000px;}
.y8e{bottom:1012.965000px;}
.ycc{bottom:1027.110000px;}
.yf{bottom:1028.925000px;}
.yc9{bottom:1030.515000px;}
.y95{bottom:1030.606200px;}
.y122{bottom:1036.380000px;}
.yd3{bottom:1039.560000px;}
.ycd{bottom:1045.170000px;}
.ycf{bottom:1060.695000px;}
.y91{bottom:1061.670000px;}
.yd2{bottom:1066.650000px;}
.y92{bottom:1067.460150px;}
.y99{bottom:1076.280000px;}
.y8d{bottom:1078.830000px;}
.yc8{bottom:1079.970000px;}
.y123{bottom:1082.265000px;}
.ye{bottom:1085.414700px;}
.yd0{bottom:1085.880000px;}
.y98{bottom:1089.780000px;}
.yc6{bottom:1091.655000px;}
.y96{bottom:1100.670000px;}
.y97{bottom:1103.280000px;}
.yce{bottom:1110.645000px;}
.yca{bottom:1110.795000px;}
.y121{bottom:1115.310000px;}
.yc5{bottom:1117.994400px;}
.yd{bottom:1121.415000px;}
.y9b{bottom:1123.575000px;}
.y125{bottom:1123.770000px;}
.y127{bottom:1129.050600px;}
.y93{bottom:1130.550000px;}
.y94{bottom:1136.340150px;}
.y9a{bottom:1137.075000px;}
.y8c{bottom:1144.200000px;}
.y9c{bottom:1144.200300px;}
.yd1{bottom:1158.915000px;}
.he{height:42.398438px;}
.hd{height:50.018555px;}
.h7{height:52.998047px;}
.h9{height:54.421875px;}
.h11{height:55.576172px;}
.ha{height:57.198047px;}
.h5{height:58.857422px;}
.h4{height:58.886719px;}
.h6{height:65.040000px;}
.h3{height:70.628906px;}
.h2{height:70.664062px;}
.hb{height:71.109375px;}
.h10{height:77.246719px;}
.h1{height:84.656250px;}
.hc{height:84.858047px;}
.h8{height:100.037109px;}
.hf{height:112.098047px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:75.120000px;}
.x10{left:76.560000px;}
.x57{left:84.180000px;}
.x9{left:88.650000px;}
.x4c{left:90.375000px;}
.x12{left:91.680000px;}
.x34{left:95.055000px;}
.x35{left:96.510000px;}
.x20{left:106.530300px;}
.x53{left:110.070600px;}
.x52{left:114.855000px;}
.x59{left:126.360000px;}
.x18{left:145.065000px;}
.x3c{left:152.280450px;}
.x32{left:158.670000px;}
.x4{left:160.545000px;}
.x1{left:167.925000px;}
.x7{left:171.165000px;}
.x4e{left:175.695000px;}
.x5b{left:185.370000px;}
.x1f{left:187.020000px;}
.x1d{left:189.434550px;}
.x17{left:191.355000px;}
.x56{left:202.020000px;}
.x2a{left:203.520000px;}
.x3b{left:204.570000px;}
.x11{left:207.405000px;}
.x40{left:209.040000px;}
.x3f{left:211.020000px;}
.xb{left:218.430000px;}
.x49{left:225.345000px;}
.x29{left:240.600000px;}
.x3{left:241.770000px;}
.x50{left:244.035000px;}
.x31{left:248.850000px;}
.xd{left:253.725000px;}
.x4f{left:255.420450px;}
.x8{left:262.799400px;}
.x42{left:283.125000px;}
.x2b{left:286.620000px;}
.x51{left:287.835000px;}
.x2{left:290.715000px;}
.x5{left:299.505000px;}
.x2d{left:305.730000px;}
.x24{left:307.380300px;}
.x23{left:308.895000px;}
.x4a{left:322.395150px;}
.x25{left:326.130450px;}
.xc{left:327.165900px;}
.x3e{left:341.070000px;}
.xf{left:345.885000px;}
.x33{left:346.920000px;}
.x2c{left:348.510000px;}
.xe{left:351.900000px;}
.x6{left:360.975000px;}
.x4d{left:364.620000px;}
.x1a{left:378.870000px;}
.x47{left:381.450000px;}
.x5a{left:394.095000px;}
.x22{left:402.510000px;}
.x2e{left:404.040000px;}
.x4b{left:422.280000px;}
.x30{left:433.470000px;}
.x2f{left:440.865000px;}
.x43{left:446.400000px;}
.x48{left:449.565000px;}
.x5c{left:472.350300px;}
.x13{left:478.365000px;}
.x26{left:487.530000px;}
.x3d{left:488.760000px;}
.x41{left:490.305000px;}
.x14{left:493.485000px;}
.x55{left:499.965000px;}
.x27{left:503.280450px;}
.x16{left:517.170000px;}
.x46{left:528.645000px;}
.x1e{left:548.609700px;}
.x19{left:560.145000px;}
.x15{left:563.610000px;}
.x58{left:570.135000px;}
.x36{left:571.905000px;}
.x38{left:575.910000px;}
.x28{left:578.250000px;}
.x37{left:593.175000px;}
.x44{left:612.060000px;}
.x54{left:626.370000px;}
.x21{left:635.459400px;}
.x1b{left:656.790000px;}
.x3a{left:721.440000px;}
.x39{left:723.793050px;}
.x1c{left:732.180000px;}
.x45{left:757.935000px;}
@media print{
.v5{vertical-align:-57.920533pt;}
.v4{vertical-align:-54.026667pt;}
.v6{vertical-align:-49.600533pt;}
.va{vertical-align:-28.267200pt;}
.v9{vertical-align:-24.268800pt;}
.v1{vertical-align:-13.333333pt;}
.v2{vertical-align:-12.000000pt;}
.v12{vertical-align:-6.560000pt;}
.vd{vertical-align:-2.453333pt;}
.v10{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.733333pt;}
.v3{vertical-align:14.026667pt;}
.vf{vertical-align:16.320000pt;}
.vb{vertical-align:24.268800pt;}
.v11{vertical-align:26.668800pt;}
.vc{vertical-align:28.320000pt;}
.v8{vertical-align:34.666667pt;}
.ve{vertical-align:52.533333pt;}
.ls24{letter-spacing:-8.906667pt;}
.ls22{letter-spacing:-6.880000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002133pt;}
.ls13{letter-spacing:0.005333pt;}
.lsd{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.011733pt;}
.lsa{letter-spacing:0.014400pt;}
.ls12{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.044800pt;}
.ls11{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.821333pt;}
.ls5{letter-spacing:0.832000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls16{letter-spacing:0.864000pt;}
.ls28{letter-spacing:0.874667pt;}
.ls7{letter-spacing:0.885333pt;}
.ls10{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.982400pt;}
.ls2a{letter-spacing:1.987200pt;}
.ls2b{letter-spacing:2.020800pt;}
.ls2e{letter-spacing:2.026667pt;}
.ls18{letter-spacing:2.035200pt;}
.ls2c{letter-spacing:2.044800pt;}
.ls34{letter-spacing:3.120000pt;}
.ls2f{letter-spacing:3.139200pt;}
.ls23{letter-spacing:3.168000pt;}
.ls29{letter-spacing:3.196800pt;}
.ls33{letter-spacing:6.773333pt;}
.ls6{letter-spacing:15.626667pt;}
.ls1c{letter-spacing:41.548800pt;}
.ls31{letter-spacing:55.905600pt;}
.ls1b{letter-spacing:56.697600pt;}
.ls36{letter-spacing:79.306667pt;}
.ls19{letter-spacing:83.395200pt;}
.ls25{letter-spacing:119.786667pt;}
.lsc{letter-spacing:233.002667pt;}
.ls1f{letter-spacing:238.933333pt;}
.ls35{letter-spacing:246.240000pt;}
.ls20{letter-spacing:270.293333pt;}
.ls32{letter-spacing:325.968000pt;}
.ls1e{letter-spacing:432.529067pt;}
.ls9{letter-spacing:477.898667pt;}
.ls30{letter-spacing:495.466667pt;}
.ls14{letter-spacing:615.093333pt;}
.ls2d{letter-spacing:682.400000pt;}
.ls21{letter-spacing:751.848533pt;}
.ls1d{letter-spacing:781.706667pt;}
.lsf{letter-spacing:1706.080000pt;}
.lse{letter-spacing:1961.280000pt;}
.ws85{word-spacing:-337.968000pt;}
.ws83{word-spacing:-259.573333pt;}
.ws70{word-spacing:-133.120000pt;}
.ws3{word-spacing:-18.666667pt;}
.ws6e{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.933333pt;}
.wsb{word-spacing:-14.400000pt;}
.ws47{word-spacing:-13.333333pt;}
.ws4a{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.520000pt;}
.ws48{word-spacing:-10.666667pt;}
.ws4b{word-spacing:-9.600000pt;}
.ws6f{word-spacing:-4.426667pt;}
.ws19{word-spacing:-3.573333pt;}
.ws64{word-spacing:-3.466667pt;}
.ws21{word-spacing:-3.306667pt;}
.ws9f{word-spacing:-3.024000pt;}
.ws7d{word-spacing:-2.986667pt;}
.ws53{word-spacing:-2.720000pt;}
.ws74{word-spacing:-2.560000pt;}
.ws8{word-spacing:-2.453333pt;}
.ws68{word-spacing:-2.293333pt;}
.ws54{word-spacing:-2.186667pt;}
.ws93{word-spacing:-1.968000pt;}
.ws6a{word-spacing:-1.760000pt;}
.ws40{word-spacing:-1.706667pt;}
.ws3e{word-spacing:-1.546667pt;}
.ws29{word-spacing:-1.493333pt;}
.ws65{word-spacing:-1.280000pt;}
.ws8d{word-spacing:-1.226667pt;}
.ws7a{word-spacing:-1.173333pt;}
.wsa4{word-spacing:-1.152000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws9b{word-spacing:-0.864000pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.586667pt;}
.ws26{word-spacing:-0.533333pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.106667pt;}
.ws5{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.053333pt;}
.ws7c{word-spacing:0.106667pt;}
.ws23{word-spacing:0.160000pt;}
.ws3b{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.426667pt;}
.ws9e{word-spacing:0.528000pt;}
.wsd{word-spacing:0.640000pt;}
.ws51{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws89{word-spacing:0.960000pt;}
.wsf{word-spacing:1.013333pt;}
.wsa3{word-spacing:1.056000pt;}
.ws5b{word-spacing:1.120000pt;}
.ws22{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.296000pt;}
.ws5d{word-spacing:1.386667pt;}
.ws24{word-spacing:1.440000pt;}
.ws4e{word-spacing:1.600000pt;}
.ws14{word-spacing:1.653333pt;}
.ws41{word-spacing:1.706667pt;}
.ws3d{word-spacing:1.760000pt;}
.ws2c{word-spacing:1.813333pt;}
.ws56{word-spacing:1.866667pt;}
.ws1f{word-spacing:1.920000pt;}
.ws7b{word-spacing:1.973333pt;}
.ws2f{word-spacing:2.026667pt;}
.ws69{word-spacing:2.080000pt;}
.ws1d{word-spacing:2.133333pt;}
.ws67{word-spacing:2.186667pt;}
.ws25{word-spacing:2.240000pt;}
.ws16{word-spacing:2.293333pt;}
.ws58{word-spacing:2.346667pt;}
.ws33{word-spacing:2.773333pt;}
.ws11{word-spacing:3.146667pt;}
.ws32{word-spacing:3.253333pt;}
.ws59{word-spacing:3.306667pt;}
.wsa2{word-spacing:3.312000pt;}
.ws8a{word-spacing:3.520000pt;}
.ws1{word-spacing:3.643733pt;}
.ws6{word-spacing:3.714133pt;}
.ws4{word-spacing:3.731200pt;}
.ws0{word-spacing:3.750400pt;}
.ws78{word-spacing:3.840000pt;}
.ws77{word-spacing:3.893333pt;}
.ws17{word-spacing:4.106667pt;}
.ws94{word-spacing:4.128000pt;}
.ws52{word-spacing:4.160000pt;}
.ws10{word-spacing:4.213333pt;}
.ws62{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.373333pt;}
.ws88{word-spacing:4.426667pt;}
.ws5f{word-spacing:4.480000pt;}
.ws37{word-spacing:4.533333pt;}
.ws2a{word-spacing:4.586667pt;}
.ws75{word-spacing:4.640000pt;}
.ws91{word-spacing:4.693333pt;}
.ws12{word-spacing:4.853333pt;}
.ws2e{word-spacing:5.013333pt;}
.ws4f{word-spacing:5.066667pt;}
.ws5c{word-spacing:5.120000pt;}
.ws1a{word-spacing:5.173333pt;}
.ws35{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.706667pt;}
.ws36{word-spacing:5.866667pt;}
.wsa0{word-spacing:6.240000pt;}
.ws97{word-spacing:6.336000pt;}
.ws66{word-spacing:6.400000pt;}
.ws31{word-spacing:6.453333pt;}
.ws18{word-spacing:6.720000pt;}
.ws73{word-spacing:6.880000pt;}
.ws5a{word-spacing:7.040000pt;}
.ws79{word-spacing:7.093333pt;}
.ws7e{word-spacing:7.146667pt;}
.ws87{word-spacing:7.306667pt;}
.ws27{word-spacing:7.413333pt;}
.ws8f{word-spacing:7.626667pt;}
.ws46{word-spacing:7.680000pt;}
.ws99{word-spacing:8.064000pt;}
.wsa1{word-spacing:8.112000pt;}
.ws44{word-spacing:8.160000pt;}
.ws3a{word-spacing:8.266667pt;}
.ws71{word-spacing:8.307200pt;}
.ws55{word-spacing:8.533333pt;}
.ws92{word-spacing:8.586667pt;}
.ws3f{word-spacing:8.693333pt;}
.ws80{word-spacing:8.800000pt;}
.wse{word-spacing:8.960000pt;}
.ws42{word-spacing:9.013333pt;}
.ws8e{word-spacing:9.066667pt;}
.ws2b{word-spacing:9.173333pt;}
.ws39{word-spacing:9.653333pt;}
.ws90{word-spacing:9.866667pt;}
.ws8c{word-spacing:9.973333pt;}
.ws95{word-spacing:10.368000pt;}
.ws8b{word-spacing:10.826667pt;}
.ws76{word-spacing:11.573333pt;}
.ws45{word-spacing:11.733333pt;}
.ws20{word-spacing:11.893333pt;}
.ws57{word-spacing:12.746667pt;}
.ws5e{word-spacing:12.800000pt;}
.ws50{word-spacing:12.853333pt;}
.ws13{word-spacing:14.026667pt;}
.wsc{word-spacing:14.826667pt;}
.ws38{word-spacing:15.306667pt;}
.ws63{word-spacing:15.626667pt;}
.ws9d{word-spacing:17.088000pt;}
.ws30{word-spacing:18.613333pt;}
.ws9a{word-spacing:19.200000pt;}
.ws34{word-spacing:20.320000pt;}
.wsa5{word-spacing:22.656000pt;}
.ws60{word-spacing:26.720000pt;}
.ws98{word-spacing:30.384000pt;}
.ws6d{word-spacing:38.400000pt;}
.ws96{word-spacing:43.296000pt;}
.ws82{word-spacing:48.196800pt;}
.ws84{word-spacing:57.866667pt;}
.ws7f{word-spacing:64.160000pt;}
.ws81{word-spacing:72.940800pt;}
.ws6b{word-spacing:207.840000pt;}
.ws6c{word-spacing:534.634667pt;}
.ws49{word-spacing:1054.481600pt;}
.ws72{word-spacing:1215.024000pt;}
.ws86{word-spacing:1321.728000pt;}
.ws4c{word-spacing:1333.152000pt;}
._9{margin-left:-462.986667pt;}
._8{margin-left:-293.280000pt;}
._a{margin-left:-242.826667pt;}
._c{margin-left:-205.760000pt;}
._b{margin-left:-180.906667pt;}
._e{margin-left:-158.640000pt;}
._2{margin-left:-7.040000pt;}
._1{margin-left:-5.248000pt;}
._4{margin-left:-3.466667pt;}
._0{margin-left:-2.496000pt;}
._3{margin-left:-0.960000pt;}
._5{width:1.066667pt;}
._7{width:7.946667pt;}
._d{width:17.952000pt;}
._6{width:20.213333pt;}
.fs6{font-size:38.400000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:59.733333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:74.200000pt;}
.y3a{bottom:75.453333pt;}
.y39{bottom:91.453333pt;}
.y38{bottom:107.453333pt;}
.yd7{bottom:109.453333pt;}
.yae{bottom:115.520000pt;}
.yd6{bottom:121.453333pt;}
.y37{bottom:123.453333pt;}
.y36{bottom:139.453333pt;}
.yc{bottom:147.693333pt;}
.y35{bottom:155.453333pt;}
.yab{bottom:162.613333pt;}
.yf8{bottom:163.493333pt;}
.ya9{bottom:163.626667pt;}
.yb{bottom:163.693333pt;}
.yd8{bottom:168.560533pt;}
.y34{bottom:171.453333pt;}
.y5b{bottom:175.453333pt;}
.yf7{bottom:179.493333pt;}
.ya{bottom:179.693333pt;}
.y33{bottom:187.453333pt;}
.y5a{bottom:195.453333pt;}
.yf6{bottom:195.493333pt;}
.y9{bottom:195.693333pt;}
.yaa{bottom:198.507067pt;}
.ydc{bottom:200.200000pt;}
.ya5{bottom:201.213333pt;}
.y32{bottom:203.453333pt;}
.ya1{bottom:205.560000pt;}
.y59{bottom:211.453333pt;}
.yf5{bottom:211.493333pt;}
.ya6{bottom:215.213333pt;}
.y31{bottom:219.453333pt;}
.ya8{bottom:219.906667pt;}
.y9f{bottom:220.973333pt;}
.yad{bottom:223.973333pt;}
.yf4{bottom:227.493333pt;}
.ya7{bottom:231.720000pt;}
.y30{bottom:235.453333pt;}
.y58{bottom:237.240000pt;}
.ydb{bottom:237.640000pt;}
.ya3{bottom:242.160000pt;}
.ya0{bottom:242.600000pt;}
.yf3{bottom:243.493333pt;}
.ya4{bottom:245.093333pt;}
.y2f{bottom:251.453333pt;}
.yf2{bottom:259.493333pt;}
.ya2{bottom:261.106667pt;}
.y9e{bottom:264.386667pt;}
.y2e{bottom:267.453333pt;}
.yac{bottom:267.626667pt;}
.y57{bottom:275.453333pt;}
.yf1{bottom:275.493333pt;}
.ydd{bottom:280.160000pt;}
.y2d{bottom:283.453333pt;}
.yda{bottom:290.906667pt;}
.yd9{bottom:291.280000pt;}
.y56{bottom:291.453333pt;}
.yf0{bottom:291.493333pt;}
.y2c{bottom:299.453333pt;}
.y55{bottom:307.453333pt;}
.yef{bottom:307.493333pt;}
.yde{bottom:314.240000pt;}
.y2b{bottom:315.453333pt;}
.y54{bottom:323.453333pt;}
.yee{bottom:323.493333pt;}
.y2a{bottom:331.453333pt;}
.y11e{bottom:334.291467pt;}
.y53{bottom:339.453333pt;}
.yed{bottom:339.493333pt;}
.y8a{bottom:342.360000pt;}
.y73{bottom:345.026667pt;}
.y11d{bottom:346.291467pt;}
.y29{bottom:347.453333pt;}
.y52{bottom:355.453333pt;}
.yec{bottom:355.493333pt;}
.y89{bottom:358.360000pt;}
.y72{bottom:361.026667pt;}
.y28{bottom:363.453333pt;}
.y11c{bottom:364.958667pt;}
.y51{bottom:371.453333pt;}
.yeb{bottom:371.493333pt;}
.y88{bottom:374.360000pt;}
.y11b{bottom:376.958667pt;}
.y71{bottom:377.026667pt;}
.y27{bottom:379.453333pt;}
.yc1{bottom:384.320000pt;}
.y50{bottom:387.453333pt;}
.yea{bottom:387.493333pt;}
.ybb{bottom:388.280000pt;}
.y87{bottom:390.360000pt;}
.y70{bottom:393.026667pt;}
.y26{bottom:395.453333pt;}
.y11a{bottom:395.625867pt;}
.y4f{bottom:403.453333pt;}
.yba{bottom:404.280000pt;}
.y86{bottom:406.360000pt;}
.y119{bottom:407.625867pt;}
.y6f{bottom:409.026667pt;}
.yc0{bottom:409.653333pt;}
.y25{bottom:411.453333pt;}
.ye9{bottom:413.280000pt;}
.y4e{bottom:419.453333pt;}
.y118{bottom:419.625867pt;}
.yb9{bottom:420.280000pt;}
.y85{bottom:422.360000pt;}
.y6e{bottom:425.026667pt;}
.y24{bottom:427.453333pt;}
.y4d{bottom:435.453333pt;}
.yb8{bottom:436.280000pt;}
.y117{bottom:438.293067pt;}
.y84{bottom:438.360000pt;}
.y6d{bottom:441.026667pt;}
.y23{bottom:443.453333pt;}
.yc3{bottom:445.520000pt;}
.y116{bottom:450.293067pt;}
.y4c{bottom:451.453333pt;}
.ye8{bottom:451.493333pt;}
.yb7{bottom:452.280000pt;}
.yc2{bottom:453.440000pt;}
.y83{bottom:454.360000pt;}
.y6c{bottom:457.026667pt;}
.y22{bottom:459.453333pt;}
.y115{bottom:462.293067pt;}
.y4b{bottom:467.453333pt;}
.ye7{bottom:467.493333pt;}
.yb6{bottom:468.280000pt;}
.y82{bottom:470.360000pt;}
.y6b{bottom:473.026667pt;}
.y21{bottom:475.453333pt;}
.y114{bottom:480.960267pt;}
.y4a{bottom:483.453333pt;}
.ye6{bottom:483.493333pt;}
.yb5{bottom:484.280000pt;}
.y81{bottom:486.360000pt;}
.y6a{bottom:489.026667pt;}
.y20{bottom:491.453333pt;}
.y113{bottom:492.960267pt;}
.y49{bottom:499.453333pt;}
.ye5{bottom:499.493333pt;}
.yb4{bottom:500.280000pt;}
.y8{bottom:500.571733pt;}
.ybf{bottom:501.266667pt;}
.y80{bottom:502.360000pt;}
.y112{bottom:504.960267pt;}
.y69{bottom:505.026667pt;}
.y1f{bottom:507.453333pt;}
.y48{bottom:515.453333pt;}
.ye4{bottom:515.493333pt;}
.yb3{bottom:516.280000pt;}
.y7f{bottom:518.360000pt;}
.y7{bottom:519.238933pt;}
.y68{bottom:521.026667pt;}
.y1e{bottom:523.453333pt;}
.y111{bottom:523.626267pt;}
.ybe{bottom:523.933333pt;}
.y47{bottom:531.453333pt;}
.ye3{bottom:531.493333pt;}
.yb2{bottom:532.280000pt;}
.y7e{bottom:534.360000pt;}
.y110{bottom:535.626267pt;}
.y67{bottom:537.026667pt;}
.y1d{bottom:539.453333pt;}
.ybd{bottom:546.600000pt;}
.y46{bottom:547.453333pt;}
.y10f{bottom:547.626267pt;}
.yb1{bottom:548.280000pt;}
.y7d{bottom:550.360000pt;}
.y66{bottom:553.026667pt;}
.y1c{bottom:555.453333pt;}
.ybc{bottom:562.600000pt;}
.y45{bottom:563.453333pt;}
.yb0{bottom:564.280000pt;}
.y10e{bottom:566.293467pt;}
.y7c{bottom:566.360000pt;}
.y65{bottom:569.026667pt;}
.yff{bottom:569.480000pt;}
.y1b{bottom:571.453333pt;}
.y101{bottom:577.093333pt;}
.y100{bottom:577.413333pt;}
.y10d{bottom:578.293467pt;}
.y44{bottom:579.453333pt;}
.y7b{bottom:582.360000pt;}
.yfe{bottom:584.480000pt;}
.yaf{bottom:590.053333pt;}
.y10c{bottom:590.293467pt;}
.y64{bottom:594.800000pt;}
.y43{bottom:595.453333pt;}
.y1a{bottom:597.240000pt;}
.y7a{bottom:598.360000pt;}
.y10b{bottom:602.293467pt;}
.ye2{bottom:608.240000pt;}
.y42{bottom:611.453333pt;}
.y79{bottom:614.360000pt;}
.y10a{bottom:620.960667pt;}
.ye1{bottom:624.240000pt;}
.y41{bottom:627.453333pt;}
.y78{bottom:630.360000pt;}
.y6{bottom:631.238933pt;}
.yc4{bottom:631.680000pt;}
.y109{bottom:632.960667pt;}
.y63{bottom:633.026667pt;}
.ye0{bottom:640.240000pt;}
.y40{bottom:643.453333pt;}
.y108{bottom:644.960667pt;}
.y77{bottom:646.360000pt;}
.y62{bottom:649.026667pt;}
.y5{bottom:649.906133pt;}
.y19{bottom:651.453333pt;}
.y107{bottom:656.960667pt;}
.y3f{bottom:659.453333pt;}
.y76{bottom:662.360000pt;}
.y61{bottom:665.026667pt;}
.yd5{bottom:665.906800pt;}
.y18{bottom:666.120000pt;}
.y4{bottom:668.573333pt;}
.y106{bottom:668.960667pt;}
.yfb{bottom:674.239333pt;}
.yfd{bottom:674.240533pt;}
.y3e{bottom:675.453333pt;}
.y75{bottom:678.360000pt;}
.y17{bottom:680.786667pt;}
.y60{bottom:681.026667pt;}
.yf9{bottom:681.853333pt;}
.yfc{bottom:682.160000pt;}
.y105{bottom:687.626667pt;}
.y3d{bottom:691.453333pt;}
.y16{bottom:695.453333pt;}
.yfa{bottom:696.292933pt;}
.y104{bottom:699.626667pt;}
.y5f{bottom:703.693333pt;}
.y74{bottom:704.133333pt;}
.y3c{bottom:707.453333pt;}
.y15{bottom:710.120000pt;}
.y103{bottom:711.626667pt;}
.y3b{bottom:723.453333pt;}
.y3{bottom:724.573333pt;}
.y14{bottom:724.786667pt;}
.y5e{bottom:726.360000pt;}
.ydf{bottom:734.733333pt;}
.y102{bottom:736.506667pt;}
.y13{bottom:739.453333pt;}
.y5d{bottom:742.360000pt;}
.y5c{bottom:758.360000pt;}
.y120{bottom:770.866667pt;}
.y11f{bottom:782.866667pt;}
.y2{bottom:794.800000pt;}
.y8b{bottom:801.760000pt;}
.y128{bottom:813.026667pt;}
.y1{bottom:817.466667pt;}
.y12{bottom:837.706667pt;}
.yd4{bottom:845.440000pt;}
.y11{bottom:859.040000pt;}
.y90{bottom:862.906667pt;}
.y126{bottom:869.013333pt;}
.y124{bottom:876.266667pt;}
.y10{bottom:880.373333pt;}
.y8f{bottom:888.413333pt;}
.ycb{bottom:892.653333pt;}
.yc7{bottom:899.200000pt;}
.y8e{bottom:900.413333pt;}
.ycc{bottom:912.986667pt;}
.yf{bottom:914.600000pt;}
.yc9{bottom:916.013333pt;}
.y95{bottom:916.094400pt;}
.y122{bottom:921.226667pt;}
.yd3{bottom:924.053333pt;}
.ycd{bottom:929.040000pt;}
.ycf{bottom:942.840000pt;}
.y91{bottom:943.706667pt;}
.yd2{bottom:948.133333pt;}
.y92{bottom:948.853467pt;}
.y99{bottom:956.693333pt;}
.y8d{bottom:958.960000pt;}
.yc8{bottom:959.973333pt;}
.y123{bottom:962.013333pt;}
.ye{bottom:964.813067pt;}
.yd0{bottom:965.226667pt;}
.y98{bottom:968.693333pt;}
.yc6{bottom:970.360000pt;}
.y96{bottom:978.373333pt;}
.y97{bottom:980.693333pt;}
.yce{bottom:987.240000pt;}
.yca{bottom:987.373333pt;}
.y121{bottom:991.386667pt;}
.yc5{bottom:993.772800pt;}
.yd{bottom:996.813333pt;}
.y9b{bottom:998.733333pt;}
.y125{bottom:998.906667pt;}
.y127{bottom:1003.600533pt;}
.y93{bottom:1004.933333pt;}
.y94{bottom:1010.080133pt;}
.y9a{bottom:1010.733333pt;}
.y8c{bottom:1017.066667pt;}
.y9c{bottom:1017.066933pt;}
.yd1{bottom:1030.146667pt;}
.he{height:37.687500pt;}
.hd{height:44.460938pt;}
.h7{height:47.109375pt;}
.h9{height:48.375000pt;}
.h11{height:49.401042pt;}
.ha{height:50.842708pt;}
.h5{height:52.317708pt;}
.h4{height:52.343750pt;}
.h6{height:57.813333pt;}
.h3{height:62.781250pt;}
.h2{height:62.812500pt;}
.hb{height:63.208333pt;}
.h10{height:68.663750pt;}
.h1{height:75.250000pt;}
.hc{height:75.429375pt;}
.h8{height:88.921875pt;}
.hf{height:99.642708pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:66.773333pt;}
.x10{left:68.053333pt;}
.x57{left:74.826667pt;}
.x9{left:78.800000pt;}
.x4c{left:80.333333pt;}
.x12{left:81.493333pt;}
.x34{left:84.493333pt;}
.x35{left:85.786667pt;}
.x20{left:94.693600pt;}
.x53{left:97.840533pt;}
.x52{left:102.093333pt;}
.x59{left:112.320000pt;}
.x18{left:128.946667pt;}
.x3c{left:135.360400pt;}
.x32{left:141.040000pt;}
.x4{left:142.706667pt;}
.x1{left:149.266667pt;}
.x7{left:152.146667pt;}
.x4e{left:156.173333pt;}
.x5b{left:164.773333pt;}
.x1f{left:166.240000pt;}
.x1d{left:168.386267pt;}
.x17{left:170.093333pt;}
.x56{left:179.573333pt;}
.x2a{left:180.906667pt;}
.x3b{left:181.840000pt;}
.x11{left:184.360000pt;}
.x40{left:185.813333pt;}
.x3f{left:187.573333pt;}
.xb{left:194.160000pt;}
.x49{left:200.306667pt;}
.x29{left:213.866667pt;}
.x3{left:214.906667pt;}
.x50{left:216.920000pt;}
.x31{left:221.200000pt;}
.xd{left:225.533333pt;}
.x4f{left:227.040400pt;}
.x8{left:233.599467pt;}
.x42{left:251.666667pt;}
.x2b{left:254.773333pt;}
.x51{left:255.853333pt;}
.x2{left:258.413333pt;}
.x5{left:266.226667pt;}
.x2d{left:271.760000pt;}
.x24{left:273.226933pt;}
.x23{left:274.573333pt;}
.x4a{left:286.573467pt;}
.x25{left:289.893733pt;}
.xc{left:290.814133pt;}
.x3e{left:303.173333pt;}
.xf{left:307.453333pt;}
.x33{left:308.373333pt;}
.x2c{left:309.786667pt;}
.xe{left:312.800000pt;}
.x6{left:320.866667pt;}
.x4d{left:324.106667pt;}
.x1a{left:336.773333pt;}
.x47{left:339.066667pt;}
.x5a{left:350.306667pt;}
.x22{left:357.786667pt;}
.x2e{left:359.146667pt;}
.x4b{left:375.360000pt;}
.x30{left:385.306667pt;}
.x2f{left:391.880000pt;}
.x43{left:396.800000pt;}
.x48{left:399.613333pt;}
.x5c{left:419.866933pt;}
.x13{left:425.213333pt;}
.x26{left:433.360000pt;}
.x3d{left:434.453333pt;}
.x41{left:435.826667pt;}
.x14{left:438.653333pt;}
.x55{left:444.413333pt;}
.x27{left:447.360400pt;}
.x16{left:459.706667pt;}
.x46{left:469.906667pt;}
.x1e{left:487.653067pt;}
.x19{left:497.906667pt;}
.x15{left:500.986667pt;}
.x58{left:506.786667pt;}
.x36{left:508.360000pt;}
.x38{left:511.920000pt;}
.x28{left:514.000000pt;}
.x37{left:527.266667pt;}
.x44{left:544.053333pt;}
.x54{left:556.773333pt;}
.x21{left:564.852800pt;}
.x1b{left:583.813333pt;}
.x3a{left:641.280000pt;}
.x39{left:643.371600pt;}
.x1c{left:650.826667pt;}
.x45{left:673.720000pt;}
}

