
    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_4da10306f22a51876d6535a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_16798170ac8a39794514e7f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_5c2cc382d111b8e5d8c34f51.woff')format("woff");}.ff3{font-family:ff3;line-height:0.736000;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_aa9d9b9fcdba04d6a90cfcbd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171387;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_62153170bafcf7791e829c99.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_88bf962476d31e664781fa1c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4abce54baf7e22737acd2378.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_af75d89081124b15922205a0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_14888b20603aa5c4e435f449.woff')format("woff");}.ff9{font-family:ff9;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecbde0d82c6c8593aa03ae4d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.174000;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:ffb;src:url('chunks/assets/font_753e18ce9f8142b4409ae029.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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:ffc;src:url('chunks/assets/font_52359390873980df8aa9280b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls2{letter-spacing:-0.765000px;}
.ls3{letter-spacing:-0.675000px;}
.ls8{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.069960px;}
.lsb{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.139440px;}
.ls5{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.660000px;}
.lse{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.746800px;}
.lsf{letter-spacing:3.190800px;}
.ls0{letter-spacing:5.700000px;}
.lsa{letter-spacing:5.806200px;}
.ls14{letter-spacing:74.640000px;}
.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;}
}
.wsfb{word-spacing:-60.000000px;}
.ws98{word-spacing:-54.000000px;}
.ws1b{word-spacing:-45.600000px;}
.ws1d{word-spacing:-15.600000px;}
.wsb1{word-spacing:-15.180000px;}
.ws97{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.260000px;}
.ws0{word-spacing:-12.480000px;}
.wsc1{word-spacing:-9.164760px;}
.ws1c{word-spacing:-9.094800px;}
.ws11b{word-spacing:-7.980000px;}
.ws101{word-spacing:-6.858000px;}
.ws47{word-spacing:-5.940000px;}
.wsff{word-spacing:-5.832000px;}
.ws5{word-spacing:-5.700000px;}
.ws10f{word-spacing:-5.292000px;}
.wsde{word-spacing:-4.860000px;}
.ws11c{word-spacing:-4.680000px;}
.wsfd{word-spacing:-4.440000px;}
.wscc{word-spacing:-4.380000px;}
.ws72{word-spacing:-4.200000px;}
.wsba{word-spacing:-3.780000px;}
.ws1f{word-spacing:-3.720000px;}
.wsa7{word-spacing:-3.540000px;}
.wsd9{word-spacing:-3.480000px;}
.wsa8{word-spacing:-3.420000px;}
.wsf5{word-spacing:-3.360000px;}
.wsbc{word-spacing:-3.240000px;}
.ws99{word-spacing:-3.180000px;}
.wsc3{word-spacing:-3.120000px;}
.wsaf{word-spacing:-3.000000px;}
.ws48{word-spacing:-2.940000px;}
.ws65{word-spacing:-2.880000px;}
.ws10e{word-spacing:-2.862000px;}
.ws4e{word-spacing:-2.820000px;}
.wsc7{word-spacing:-2.760000px;}
.wsf8{word-spacing:-2.700000px;}
.wsef{word-spacing:-2.646000px;}
.ws6a{word-spacing:-2.640000px;}
.ws6b{word-spacing:-2.580000px;}
.ws67{word-spacing:-2.520000px;}
.wsd5{word-spacing:-2.400000px;}
.wsae{word-spacing:-2.340000px;}
.ws51{word-spacing:-2.280000px;}
.ws5a{word-spacing:-2.220000px;}
.ws5f{word-spacing:-2.160000px;}
.ws4f{word-spacing:-2.100000px;}
.ws3d{word-spacing:-2.064000px;}
.ws8c{word-spacing:-2.040000px;}
.ws6{word-spacing:-2.016000px;}
.ws57{word-spacing:-1.980000px;}
.ws54{word-spacing:-1.920000px;}
.ws2c{word-spacing:-1.860000px;}
.ws3e{word-spacing:-1.824000px;}
.ws5b{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.740000px;}
.ws8d{word-spacing:-1.680000px;}
.ws10c{word-spacing:-1.674000px;}
.ws7e{word-spacing:-1.620000px;}
.wsc4{word-spacing:-1.500000px;}
.wsc{word-spacing:-1.488000px;}
.wsfa{word-spacing:-1.440000px;}
.wsc8{word-spacing:-1.380000px;}
.wse9{word-spacing:-1.350000px;}
.ws33{word-spacing:-1.320000px;}
.wsce{word-spacing:-1.296000px;}
.ws92{word-spacing:-1.260000px;}
.wsc0{word-spacing:-1.248000px;}
.ws7f{word-spacing:-1.200000px;}
.ws71{word-spacing:-1.140000px;}
.ws107{word-spacing:-1.134000px;}
.ws29{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.020000px;}
.ws104{word-spacing:-0.972000px;}
.ws49{word-spacing:-0.960000px;}
.ws5c{word-spacing:-0.912000px;}
.wsd2{word-spacing:-0.900000px;}
.wsac{word-spacing:-0.840000px;}
.ws7d{word-spacing:-0.780000px;}
.ws5e{word-spacing:-0.720000px;}
.wsf1{word-spacing:-0.702000px;}
.wsa6{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.600000px;}
.wscf{word-spacing:-0.540000px;}
.wse7{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.420000px;}
.ws23{word-spacing:-0.360000px;}
.ws112{word-spacing:-0.324000px;}
.ws4d{word-spacing:-0.300000px;}
.ws3c{word-spacing:-0.240000px;}
.ws102{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.192000px;}
.ws22{word-spacing:-0.180000px;}
.ws108{word-spacing:-0.162000px;}
.ws3a{word-spacing:-0.144000px;}
.ws74{word-spacing:-0.120000px;}
.ws28{word-spacing:-0.060000px;}
.ws113{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws36{word-spacing:0.060000px;}
.ws5d{word-spacing:0.096000px;}
.ws88{word-spacing:0.120000px;}
.wscd{word-spacing:0.144000px;}
.ws114{word-spacing:0.162000px;}
.ws27{word-spacing:0.180000px;}
.wsa4{word-spacing:0.240000px;}
.ws7{word-spacing:0.288000px;}
.wse0{word-spacing:0.300000px;}
.ws105{word-spacing:0.324000px;}
.ws45{word-spacing:0.360000px;}
.wsd{word-spacing:0.384000px;}
.ws8a{word-spacing:0.420000px;}
.ws106{word-spacing:0.432000px;}
.ws41{word-spacing:0.480000px;}
.ws78{word-spacing:0.540000px;}
.ws39{word-spacing:0.576000px;}
.ws9a{word-spacing:0.600000px;}
.ws6f{word-spacing:0.660000px;}
.ws117{word-spacing:0.702000px;}
.ws1e{word-spacing:0.765000px;}
.ws40{word-spacing:0.780000px;}
.ws9d{word-spacing:0.840000px;}
.ws53{word-spacing:0.960000px;}
.wscb{word-spacing:1.020000px;}
.ws2b{word-spacing:1.080000px;}
.wseb{word-spacing:1.134000px;}
.wse3{word-spacing:1.140000px;}
.wse8{word-spacing:1.188000px;}
.ws75{word-spacing:1.200000px;}
.ws86{word-spacing:1.260000px;}
.ws76{word-spacing:1.320000px;}
.ws14{word-spacing:1.344000px;}
.ws35{word-spacing:1.380000px;}
.ws8{word-spacing:1.392000px;}
.wsdf{word-spacing:1.440000px;}
.ws32{word-spacing:1.500000px;}
.ws63{word-spacing:1.560000px;}
.ws83{word-spacing:1.620000px;}
.ws31{word-spacing:1.680000px;}
.ws4b{word-spacing:1.740000px;}
.ws64{word-spacing:1.800000px;}
.wsf3{word-spacing:1.860000px;}
.ws21{word-spacing:1.920000px;}
.ws42{word-spacing:1.980000px;}
.wse2{word-spacing:2.040000px;}
.ws73{word-spacing:2.064000px;}
.ws15{word-spacing:2.160000px;}
.wsea{word-spacing:2.214000px;}
.ws69{word-spacing:2.220000px;}
.ws9e{word-spacing:2.280000px;}
.ws8e{word-spacing:2.340000px;}
.ws10{word-spacing:2.352000px;}
.wsbe{word-spacing:2.400000px;}
.wsec{word-spacing:2.430000px;}
.wse{word-spacing:2.448000px;}
.ws4c{word-spacing:2.460000px;}
.ws6e{word-spacing:2.520000px;}
.ws103{word-spacing:2.538000px;}
.ws20{word-spacing:2.580000px;}
.ws12{word-spacing:2.592000px;}
.wsa5{word-spacing:2.640000px;}
.ws56{word-spacing:2.700000px;}
.ws55{word-spacing:2.760000px;}
.ws37{word-spacing:2.820000px;}
.wsbb{word-spacing:2.880000px;}
.ws18{word-spacing:2.928000px;}
.wsdc{word-spacing:2.940000px;}
.ws17{word-spacing:2.976000px;}
.ws25{word-spacing:3.000000px;}
.wsa9{word-spacing:3.060000px;}
.wsa0{word-spacing:3.120000px;}
.ws26{word-spacing:3.180000px;}
.ws95{word-spacing:3.240000px;}
.ws111{word-spacing:3.294000px;}
.ws7c{word-spacing:3.300000px;}
.ws3b{word-spacing:3.312000px;}
.ws70{word-spacing:3.360000px;}
.wsa1{word-spacing:3.420000px;}
.ws11{word-spacing:3.456000px;}
.ws94{word-spacing:3.480000px;}
.ws91{word-spacing:3.540000px;}
.ws90{word-spacing:3.600000px;}
.ws46{word-spacing:3.660000px;}
.wsf0{word-spacing:3.672000px;}
.wsaa{word-spacing:3.720000px;}
.wsbd{word-spacing:3.780000px;}
.wsf{word-spacing:3.840000px;}
.ws62{word-spacing:3.900000px;}
.ws84{word-spacing:3.960000px;}
.ws13{word-spacing:3.984000px;}
.wse1{word-spacing:4.020000px;}
.wsa{word-spacing:4.080000px;}
.ws82{word-spacing:4.140000px;}
.ws10d{word-spacing:4.158000px;}
.ws50{word-spacing:4.200000px;}
.wsee{word-spacing:4.212000px;}
.ws93{word-spacing:4.260000px;}
.ws79{word-spacing:4.320000px;}
.ws8f{word-spacing:4.380000px;}
.ws3f{word-spacing:4.440000px;}
.ws43{word-spacing:4.500000px;}
.ws2e{word-spacing:4.560000px;}
.ws81{word-spacing:4.680000px;}
.wsc5{word-spacing:4.740000px;}
.ws96{word-spacing:4.800000px;}
.wsb5{word-spacing:4.860000px;}
.ws109{word-spacing:4.914000px;}
.ws2d{word-spacing:4.920000px;}
.ws118{word-spacing:4.968000px;}
.ws44{word-spacing:4.980000px;}
.ws87{word-spacing:5.040000px;}
.ws1a{word-spacing:5.049000px;}
.wsb{word-spacing:5.088000px;}
.ws89{word-spacing:5.100000px;}
.ws68{word-spacing:5.160000px;}
.ws4a{word-spacing:5.220000px;}
.wsca{word-spacing:5.280000px;}
.wsd0{word-spacing:5.340000px;}
.ws58{word-spacing:5.400000px;}
.wsfe{word-spacing:5.460000px;}
.ws9{word-spacing:5.520000px;}
.ws10b{word-spacing:5.562000px;}
.ws77{word-spacing:5.580000px;}
.ws8b{word-spacing:5.700000px;}
.wse6{word-spacing:5.760000px;}
.wsb0{word-spacing:5.820000px;}
.wsf4{word-spacing:5.880000px;}
.ws6d{word-spacing:5.940000px;}
.wse4{word-spacing:6.000000px;}
.wsdb{word-spacing:6.060000px;}
.wsed{word-spacing:6.156000px;}
.ws7b{word-spacing:6.180000px;}
.wsc6{word-spacing:6.240000px;}
.ws100{word-spacing:6.264000px;}
.ws30{word-spacing:6.300000px;}
.wsd1{word-spacing:6.360000px;}
.ws66{word-spacing:6.420000px;}
.wsb3{word-spacing:6.660000px;}
.ws85{word-spacing:6.720000px;}
.ws2a{word-spacing:6.780000px;}
.ws115{word-spacing:6.804000px;}
.ws11d{word-spacing:6.840000px;}
.ws9c{word-spacing:6.900000px;}
.wsbf{word-spacing:6.960000px;}
.ws11a{word-spacing:7.020000px;}
.wsc2{word-spacing:7.080000px;}
.ws52{word-spacing:7.200000px;}
.wsd6{word-spacing:7.320000px;}
.ws7a{word-spacing:7.380000px;}
.wsa2{word-spacing:7.500000px;}
.wsf9{word-spacing:7.560000px;}
.ws9f{word-spacing:7.620000px;}
.ws38{word-spacing:7.680000px;}
.wsd4{word-spacing:7.860000px;}
.wsdd{word-spacing:7.920000px;}
.wsb6{word-spacing:7.980000px;}
.ws9b{word-spacing:8.040000px;}
.wsf7{word-spacing:8.100000px;}
.ws60{word-spacing:8.160000px;}
.wsb4{word-spacing:8.340000px;}
.wsad{word-spacing:8.400000px;}
.ws59{word-spacing:8.460000px;}
.wsa3{word-spacing:8.520000px;}
.ws80{word-spacing:8.700000px;}
.ws6c{word-spacing:8.760000px;}
.wsf6{word-spacing:8.820000px;}
.ws61{word-spacing:8.880000px;}
.wsb7{word-spacing:9.000000px;}
.wsda{word-spacing:9.180000px;}
.wsab{word-spacing:9.360000px;}
.wsd3{word-spacing:9.420000px;}
.wsc9{word-spacing:9.960000px;}
.wse5{word-spacing:10.260000px;}
.wsd8{word-spacing:10.320000px;}
.ws10a{word-spacing:10.962000px;}
.wsd7{word-spacing:11.820000px;}
.ws119{word-spacing:12.180000px;}
.wsfc{word-spacing:13.440000px;}
.wsf2{word-spacing:14.160000px;}
.ws16{word-spacing:14.784000px;}
.ws110{word-spacing:23.598000px;}
.ws116{word-spacing:28.890000px;}
.wsb9{word-spacing:235.126800px;}
.wsb8{word-spacing:508.251600px;}
.ws2{word-spacing:689.065500px;}
._20{margin-left:-48.960000px;}
._21{margin-left:-7.980000px;}
._1{margin-left:-6.300000px;}
._8{margin-left:-4.297200px;}
._9{margin-left:-3.291600px;}
._0{margin-left:-1.934400px;}
._6{width:1.588800px;}
._7{width:2.841600px;}
._4{width:3.998400px;}
._d{width:5.050800px;}
._b{width:6.216000px;}
._5{width:7.468800px;}
._a{width:9.198000px;}
._c{width:10.944000px;}
._e{width:12.840000px;}
._f{width:42.000000px;}
._19{width:44.143200px;}
._2{width:48.814800px;}
._12{width:354.481200px;}
._18{width:407.110800px;}
._1c{width:413.806800px;}
._16{width:420.758400px;}
._10{width:433.762800px;}
._1f{width:467.156400px;}
._1d{width:479.716800px;}
._3{width:561.319200px;}
._15{width:602.536800px;}
._1b{width:613.681200px;}
._14{width:622.276800px;}
._17{width:625.732800px;}
._1e{width:631.888800px;}
._1a{width:938.900400px;}
._11{width:1504.184400px;}
._13{width:1519.628400px;}
.fc3{color:rgb(86,168,107);}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:34.980000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:21.259800px;}
.y3e{bottom:39.378900px;}
.y3d{bottom:54.678900px;}
.y3c{bottom:69.978900px;}
.y73{bottom:72.283350px;}
.ya6{bottom:72.283500px;}
.yf0{bottom:79.256700px;}
.y3b{bottom:85.278900px;}
.y11e{bottom:85.847100px;}
.y96{bottom:87.543450px;}
.yd4{bottom:87.947700px;}
.y72{bottom:88.783350px;}
.ya5{bottom:88.783500px;}
.y7e{bottom:90.240750px;}
.yef{bottom:97.256700px;}
.y71{bottom:105.283350px;}
.yb0{bottom:105.283500px;}
.ya4{bottom:105.283650px;}
.y11d{bottom:106.847100px;}
.y95{bottom:108.543450px;}
.yd3{bottom:108.947700px;}
.y7d{bottom:111.240750px;}
.y70{bottom:121.783350px;}
.yaf{bottom:121.783500px;}
.ya3{bottom:121.783650px;}
.y11c{bottom:127.847100px;}
.y94{bottom:129.543450px;}
.yd2{bottom:129.947700px;}
.y7c{bottom:132.240750px;}
.yee{bottom:133.256700px;}
.y6f{bottom:138.283350px;}
.yae{bottom:138.283500px;}
.y11b{bottom:148.847100px;}
.y81{bottom:149.191200px;}
.y93{bottom:150.543450px;}
.yd1{bottom:150.947700px;}
.y7b{bottom:153.240750px;}
.yed{bottom:154.256700px;}
.y6e{bottom:154.783350px;}
.yad{bottom:154.783500px;}
.y80{bottom:165.391350px;}
.y11a{bottom:169.847100px;}
.y6d{bottom:171.283350px;}
.yac{bottom:171.283650px;}
.y92{bottom:171.543450px;}
.yd0{bottom:171.947700px;}
.y7a{bottom:174.240750px;}
.yec{bottom:175.256700px;}
.y154{bottom:177.240750px;}
.y7f{bottom:181.591350px;}
.y83{bottom:186.859200px;}
.y6c{bottom:187.783350px;}
.yab{bottom:187.783650px;}
.y119{bottom:190.847100px;}
.ya2{bottom:191.602950px;}
.y91{bottom:192.543450px;}
.ycf{bottom:192.947700px;}
.y79{bottom:195.240750px;}
.yeb{bottom:196.256700px;}
.y153{bottom:198.240750px;}
.y82{bottom:203.059200px;}
.y6b{bottom:204.283350px;}
.yaa{bottom:204.283650px;}
.y118{bottom:211.847100px;}
.y90{bottom:213.543450px;}
.yce{bottom:213.947700px;}
.y78{bottom:216.240750px;}
.yea{bottom:217.256700px;}
.y152{bottom:219.240750px;}
.ya1{bottom:219.658200px;}
.y6a{bottom:220.783350px;}
.y117{bottom:232.847100px;}
.y8f{bottom:234.543450px;}
.ycd{bottom:234.947700px;}
.y77{bottom:237.240750px;}
.y69{bottom:237.283350px;}
.ye9{bottom:238.256700px;}
.y151{bottom:240.240750px;}
.ya0{bottom:248.546250px;}
.y116{bottom:253.847100px;}
.y8e{bottom:255.543450px;}
.ycc{bottom:255.947700px;}
.y76{bottom:258.240750px;}
.ye8{bottom:259.256700px;}
.y150{bottom:261.240750px;}
.y115{bottom:274.847100px;}
.y8d{bottom:276.543450px;}
.ycb{bottom:276.947700px;}
.y9f{bottom:277.434150px;}
.ya9{bottom:279.030750px;}
.y75{bottom:279.240750px;}
.ye7{bottom:280.256700px;}
.y14f{bottom:282.240750px;}
.y114{bottom:295.847100px;}
.y8c{bottom:297.543450px;}
.yca{bottom:297.947700px;}
.ya8{bottom:300.030750px;}
.y68{bottom:300.240750px;}
.ye6{bottom:301.256700px;}
.y14e{bottom:303.240750px;}
.y9e{bottom:306.322200px;}
.y113{bottom:316.847100px;}
.y8b{bottom:318.543450px;}
.yc9{bottom:318.947700px;}
.ya7{bottom:321.030750px;}
.y67{bottom:321.240750px;}
.ye5{bottom:322.256700px;}
.y14d{bottom:324.240750px;}
.y3a{bottom:325.040550px;}
.y9d{bottom:335.210100px;}
.y112{bottom:337.847100px;}
.y8a{bottom:339.543450px;}
.yc8{bottom:339.947700px;}
.y39{bottom:340.790550px;}
.y66{bottom:342.240750px;}
.ye4{bottom:343.256700px;}
.y14c{bottom:345.240750px;}
.y38{bottom:356.540550px;}
.y111{bottom:358.847100px;}
.y89{bottom:360.543450px;}
.yc7{bottom:360.947700px;}
.y65{bottom:363.240750px;}
.y9c{bottom:364.098150px;}
.ye3{bottom:364.256700px;}
.y14b{bottom:366.240750px;}
.y37{bottom:372.290550px;}
.y88{bottom:381.543450px;}
.yc6{bottom:381.947550px;}
.y64{bottom:384.240750px;}
.ye2{bottom:385.256550px;}
.y140{bottom:385.844400px;}
.y14a{bottom:387.240750px;}
.y36{bottom:388.040550px;}
.y9b{bottom:392.986200px;}
.y110{bottom:400.847100px;}
.y87{bottom:402.543450px;}
.yc5{bottom:402.947550px;}
.y35{bottom:403.790550px;}
.y63{bottom:405.240750px;}
.ye1{bottom:406.256550px;}
.y13f{bottom:406.844400px;}
.y149{bottom:408.240750px;}
.y34{bottom:419.540550px;}
.y9a{bottom:421.874250px;}
.yc4{bottom:423.947550px;}
.y62{bottom:426.240750px;}
.ye0{bottom:427.256550px;}
.y13e{bottom:427.844400px;}
.y148{bottom:429.240750px;}
.y33{bottom:435.290550px;}
.y2d{bottom:443.437050px;}
.y86{bottom:444.543450px;}
.yc3{bottom:444.947550px;}
.y61{bottom:447.240750px;}
.ydf{bottom:448.256550px;}
.y13d{bottom:448.844400px;}
.y147{bottom:450.240750px;}
.y99{bottom:450.762150px;}
.y32{bottom:451.040550px;}
.y2c{bottom:460.687050px;}
.y10f{bottom:463.847100px;}
.yc2{bottom:465.947550px;}
.y31{bottom:466.790550px;}
.y60{bottom:468.240750px;}
.yde{bottom:469.256550px;}
.y13c{bottom:469.844400px;}
.y146{bottom:471.240750px;}
.y2b{bottom:477.937050px;}
.y98{bottom:479.650200px;}
.y30{bottom:482.540550px;}
.y10e{bottom:484.847100px;}
.yc1{bottom:486.947550px;}
.y5f{bottom:489.240750px;}
.ydd{bottom:490.256550px;}
.y13b{bottom:490.844400px;}
.y145{bottom:492.240750px;}
.y2a{bottom:495.187050px;}
.y2f{bottom:498.290550px;}
.y10d{bottom:505.847100px;}
.y85{bottom:507.543450px;}
.yc0{bottom:507.947550px;}
.y5e{bottom:510.240750px;}
.ydc{bottom:511.256550px;}
.y13a{bottom:511.844400px;}
.y29{bottom:512.437050px;}
.y2e{bottom:514.040550px;}
.y97{bottom:514.440750px;}
.y84{bottom:523.743450px;}
.y10c{bottom:526.847100px;}
.ybf{bottom:528.947550px;}
.y5d{bottom:531.240750px;}
.ydb{bottom:532.256550px;}
.y139{bottom:532.844400px;}
.y144{bottom:534.240750px;}
.y28{bottom:545.624250px;}
.y10b{bottom:547.847100px;}
.y6{bottom:548.466450px;}
.ybe{bottom:549.947550px;}
.y5c{bottom:552.240750px;}
.yda{bottom:553.256550px;}
.y138{bottom:553.844400px;}
.y143{bottom:555.240750px;}
.y10a{bottom:568.847100px;}
.ybd{bottom:570.947550px;}
.y5b{bottom:573.240750px;}
.yd9{bottom:574.256550px;}
.y137{bottom:574.844400px;}
.y142{bottom:576.240750px;}
.y40{bottom:577.072500px;}
.y27{bottom:579.611250px;}
.y109{bottom:589.847100px;}
.ybc{bottom:591.947550px;}
.y5a{bottom:594.240750px;}
.yd8{bottom:595.256550px;}
.y26{bottom:595.361250px;}
.y136{bottom:595.844400px;}
.y141{bottom:597.240750px;}
.y108{bottom:610.847100px;}
.y25{bottom:611.111250px;}
.ybb{bottom:612.947550px;}
.y59{bottom:615.240750px;}
.yd7{bottom:616.256550px;}
.y135{bottom:616.844400px;}
.y18{bottom:623.757750px;}
.y24{bottom:626.861250px;}
.y107{bottom:631.847100px;}
.yba{bottom:633.947550px;}
.y58{bottom:636.240750px;}
.yd6{bottom:637.256550px;}
.y134{bottom:637.844400px;}
.y17{bottom:641.007750px;}
.y23{bottom:642.611250px;}
.y106{bottom:652.847100px;}
.yb9{bottom:654.947550px;}
.y57{bottom:657.240750px;}
.y16{bottom:658.257750px;}
.y22{bottom:658.361250px;}
.y133{bottom:658.844400px;}
.y21{bottom:674.111250px;}
.y15{bottom:675.507750px;}
.yb8{bottom:675.947550px;}
.y56{bottom:678.240750px;}
.y132{bottom:679.844400px;}
.y20{bottom:689.861250px;}
.y105{bottom:691.845750px;}
.y14{bottom:692.757750px;}
.yb7{bottom:696.947550px;}
.y55{bottom:699.240750px;}
.yd5{bottom:700.256550px;}
.y131{bottom:700.844400px;}
.y1f{bottom:705.611250px;}
.y104{bottom:709.845750px;}
.yb6{bottom:717.947550px;}
.y54{bottom:720.240750px;}
.y1e{bottom:721.361250px;}
.y130{bottom:721.844400px;}
.y13{bottom:727.107750px;}
.y103{bottom:727.845750px;}
.y1d{bottom:737.111250px;}
.yb5{bottom:738.947550px;}
.y53{bottom:741.240750px;}
.y12f{bottom:742.844400px;}
.y102{bottom:745.845750px;}
.y1c{bottom:752.861250px;}
.yb4{bottom:759.947550px;}
.y52{bottom:762.240750px;}
.y12e{bottom:763.844400px;}
.y101{bottom:763.845750px;}
.y12{bottom:764.007750px;}
.y1b{bottom:768.611250px;}
.yb3{bottom:780.947550px;}
.y11{bottom:781.257750px;}
.y100{bottom:781.845750px;}
.y51{bottom:783.240750px;}
.y1a{bottom:784.361250px;}
.y12d{bottom:784.844400px;}
.y10{bottom:798.507750px;}
.yff{bottom:799.845750px;}
.y19{bottom:800.111250px;}
.yb2{bottom:801.947550px;}
.y50{bottom:804.240750px;}
.y12c{bottom:805.844400px;}
.y4f{bottom:825.240750px;}
.y12b{bottom:826.844400px;}
.yf{bottom:829.946850px;}
.yfe{bottom:835.845750px;}
.y4e{bottom:846.240750px;}
.y12a{bottom:847.844400px;}
.yfd{bottom:856.845750px;}
.yb1{bottom:864.947550px;}
.y4d{bottom:867.240750px;}
.y129{bottom:868.844400px;}
.ye{bottom:876.639900px;}
.yfc{bottom:877.845750px;}
.y4c{bottom:888.240750px;}
.y128{bottom:889.844400px;}
.yd{bottom:894.639900px;}
.yfb{bottom:898.845750px;}
.y4b{bottom:909.240750px;}
.y127{bottom:910.844400px;}
.yc{bottom:912.639900px;}
.yfa{bottom:919.845750px;}
.y4a{bottom:930.240750px;}
.yb{bottom:930.639900px;}
.y126{bottom:931.844400px;}
.y49{bottom:951.240750px;}
.y125{bottom:952.844400px;}
.yf9{bottom:958.844400px;}
.ya{bottom:960.143850px;}
.y48{bottom:972.240750px;}
.y124{bottom:973.844400px;}
.yf8{bottom:976.844400px;}
.y9{bottom:983.543850px;}
.y47{bottom:993.240750px;}
.yf7{bottom:994.844400px;}
.yf6{bottom:1012.844400px;}
.y46{bottom:1014.240750px;}
.y123{bottom:1015.844400px;}
.y8{bottom:1020.443850px;}
.yf5{bottom:1030.844400px;}
.y45{bottom:1035.240750px;}
.y122{bottom:1036.844400px;}
.y7{bottom:1047.443850px;}
.yf4{bottom:1048.844400px;}
.y44{bottom:1056.240750px;}
.y121{bottom:1057.844400px;}
.y43{bottom:1077.240750px;}
.y120{bottom:1078.844400px;}
.yf3{bottom:1084.844400px;}
.y74{bottom:1098.240750px;}
.y11f{bottom:1099.844400px;}
.yf2{bottom:1102.844400px;}
.y42{bottom:1119.240750px;}
.yf1{bottom:1120.844400px;}
.y5{bottom:1130.570850px;}
.y4{bottom:1148.570850px;}
.y3{bottom:1166.570850px;}
.y2{bottom:1184.570850px;}
.y1{bottom:1202.570850px;}
.y3f{bottom:1204.595550px;}
.h3{height:36.768000px;}
.h9{height:41.364000px;}
.hc{height:42.480000px;}
.h4{height:43.440000px;}
.h2{height:45.312000px;}
.hf{height:45.960000px;}
.hb{height:48.144000px;}
.h11{height:50.282227px;}
.h10{height:50.436000px;}
.h7{height:50.556000px;}
.h8{height:50.976000px;}
.ha{height:53.075684px;}
.hd{height:56.040000px;}
.he{height:56.640000px;}
.h6{height:72.629883px;}
.h5{height:84.960000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:29.763750px;}
.x14{left:63.779550px;}
.x1b{left:65.011200px;}
.x20{left:68.406450px;}
.xf{left:69.779550px;}
.x13{left:77.329500px;}
.x7{left:79.127400px;}
.x19{left:82.980900px;}
.x15{left:85.039350px;}
.x1c{left:87.493350px;}
.x25{left:93.379350px;}
.x24{left:97.795350px;}
.x22{left:106.299300px;}
.x1d{left:112.039350px;}
.x9{left:126.512400px;}
.x23{left:127.559100px;}
.x17{left:128.593200px;}
.x16{left:131.601600px;}
.x21{left:136.812900px;}
.x1f{left:147.528750px;}
.x18{left:150.764700px;}
.x1{left:195.954000px;}
.x2{left:198.738300px;}
.x1a{left:209.784450px;}
.x1e{left:219.073950px;}
.xe{left:243.575550px;}
.x8{left:247.402050px;}
.x3{left:248.891400px;}
.xd{left:268.456050px;}
.xa{left:269.525100px;}
.xc{left:285.626550px;}
.x4{left:297.682650px;}
.x12{left:322.402350px;}
.x10{left:338.716500px;}
.xb{left:360.327450px;}
.x5{left:399.347850px;}
.x6{left:853.242000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2{letter-spacing:-0.680000pt;}
.ls3{letter-spacing:-0.600000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.062187pt;}
.lsb{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.123947pt;}
.ls5{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.640000pt;}
.ls11{letter-spacing:2.441600pt;}
.lsf{letter-spacing:2.836267pt;}
.ls0{letter-spacing:5.066667pt;}
.lsa{letter-spacing:5.161067pt;}
.ls14{letter-spacing:66.346667pt;}
.wsfb{word-spacing:-53.333333pt;}
.ws98{word-spacing:-48.000000pt;}
.ws1b{word-spacing:-40.533333pt;}
.ws1d{word-spacing:-13.866667pt;}
.wsb1{word-spacing:-13.493333pt;}
.ws97{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.480000pt;}
.ws3{word-spacing:-11.786667pt;}
.ws0{word-spacing:-11.093333pt;}
.wsc1{word-spacing:-8.146453pt;}
.ws1c{word-spacing:-8.084267pt;}
.ws11b{word-spacing:-7.093333pt;}
.ws101{word-spacing:-6.096000pt;}
.ws47{word-spacing:-5.280000pt;}
.wsff{word-spacing:-5.184000pt;}
.ws5{word-spacing:-5.066667pt;}
.ws10f{word-spacing:-4.704000pt;}
.wsde{word-spacing:-4.320000pt;}
.ws11c{word-spacing:-4.160000pt;}
.wsfd{word-spacing:-3.946667pt;}
.wscc{word-spacing:-3.893333pt;}
.ws72{word-spacing:-3.733333pt;}
.wsba{word-spacing:-3.360000pt;}
.ws1f{word-spacing:-3.306667pt;}
.wsa7{word-spacing:-3.146667pt;}
.wsd9{word-spacing:-3.093333pt;}
.wsa8{word-spacing:-3.040000pt;}
.wsf5{word-spacing:-2.986667pt;}
.wsbc{word-spacing:-2.880000pt;}
.ws99{word-spacing:-2.826667pt;}
.wsc3{word-spacing:-2.773333pt;}
.wsaf{word-spacing:-2.666667pt;}
.ws48{word-spacing:-2.613333pt;}
.ws65{word-spacing:-2.560000pt;}
.ws10e{word-spacing:-2.544000pt;}
.ws4e{word-spacing:-2.506667pt;}
.wsc7{word-spacing:-2.453333pt;}
.wsf8{word-spacing:-2.400000pt;}
.wsef{word-spacing:-2.352000pt;}
.ws6a{word-spacing:-2.346667pt;}
.ws6b{word-spacing:-2.293333pt;}
.ws67{word-spacing:-2.240000pt;}
.wsd5{word-spacing:-2.133333pt;}
.wsae{word-spacing:-2.080000pt;}
.ws51{word-spacing:-2.026667pt;}
.ws5a{word-spacing:-1.973333pt;}
.ws5f{word-spacing:-1.920000pt;}
.ws4f{word-spacing:-1.866667pt;}
.ws3d{word-spacing:-1.834667pt;}
.ws8c{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.792000pt;}
.ws57{word-spacing:-1.760000pt;}
.ws54{word-spacing:-1.706667pt;}
.ws2c{word-spacing:-1.653333pt;}
.ws3e{word-spacing:-1.621333pt;}
.ws5b{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.546667pt;}
.ws8d{word-spacing:-1.493333pt;}
.ws10c{word-spacing:-1.488000pt;}
.ws7e{word-spacing:-1.440000pt;}
.wsc4{word-spacing:-1.333333pt;}
.wsc{word-spacing:-1.322667pt;}
.wsfa{word-spacing:-1.280000pt;}
.wsc8{word-spacing:-1.226667pt;}
.wse9{word-spacing:-1.200000pt;}
.ws33{word-spacing:-1.173333pt;}
.wsce{word-spacing:-1.152000pt;}
.ws92{word-spacing:-1.120000pt;}
.wsc0{word-spacing:-1.109333pt;}
.ws7f{word-spacing:-1.066667pt;}
.ws71{word-spacing:-1.013333pt;}
.ws107{word-spacing:-1.008000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws104{word-spacing:-0.864000pt;}
.ws49{word-spacing:-0.853333pt;}
.ws5c{word-spacing:-0.810667pt;}
.wsd2{word-spacing:-0.800000pt;}
.wsac{word-spacing:-0.746667pt;}
.ws7d{word-spacing:-0.693333pt;}
.ws5e{word-spacing:-0.640000pt;}
.wsf1{word-spacing:-0.624000pt;}
.wsa6{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.533333pt;}
.wscf{word-spacing:-0.480000pt;}
.wse7{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.373333pt;}
.ws23{word-spacing:-0.320000pt;}
.ws112{word-spacing:-0.288000pt;}
.ws4d{word-spacing:-0.266667pt;}
.ws3c{word-spacing:-0.213333pt;}
.ws102{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.170667pt;}
.ws22{word-spacing:-0.160000pt;}
.ws108{word-spacing:-0.144000pt;}
.ws3a{word-spacing:-0.128000pt;}
.ws74{word-spacing:-0.106667pt;}
.ws28{word-spacing:-0.053333pt;}
.ws113{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.085333pt;}
.ws88{word-spacing:0.106667pt;}
.wscd{word-spacing:0.128000pt;}
.ws114{word-spacing:0.144000pt;}
.ws27{word-spacing:0.160000pt;}
.wsa4{word-spacing:0.213333pt;}
.ws7{word-spacing:0.256000pt;}
.wse0{word-spacing:0.266667pt;}
.ws105{word-spacing:0.288000pt;}
.ws45{word-spacing:0.320000pt;}
.wsd{word-spacing:0.341333pt;}
.ws8a{word-spacing:0.373333pt;}
.ws106{word-spacing:0.384000pt;}
.ws41{word-spacing:0.426667pt;}
.ws78{word-spacing:0.480000pt;}
.ws39{word-spacing:0.512000pt;}
.ws9a{word-spacing:0.533333pt;}
.ws6f{word-spacing:0.586667pt;}
.ws117{word-spacing:0.624000pt;}
.ws1e{word-spacing:0.680000pt;}
.ws40{word-spacing:0.693333pt;}
.ws9d{word-spacing:0.746667pt;}
.ws53{word-spacing:0.853333pt;}
.wscb{word-spacing:0.906667pt;}
.ws2b{word-spacing:0.960000pt;}
.wseb{word-spacing:1.008000pt;}
.wse3{word-spacing:1.013333pt;}
.wse8{word-spacing:1.056000pt;}
.ws75{word-spacing:1.066667pt;}
.ws86{word-spacing:1.120000pt;}
.ws76{word-spacing:1.173333pt;}
.ws14{word-spacing:1.194667pt;}
.ws35{word-spacing:1.226667pt;}
.ws8{word-spacing:1.237333pt;}
.wsdf{word-spacing:1.280000pt;}
.ws32{word-spacing:1.333333pt;}
.ws63{word-spacing:1.386667pt;}
.ws83{word-spacing:1.440000pt;}
.ws31{word-spacing:1.493333pt;}
.ws4b{word-spacing:1.546667pt;}
.ws64{word-spacing:1.600000pt;}
.wsf3{word-spacing:1.653333pt;}
.ws21{word-spacing:1.706667pt;}
.ws42{word-spacing:1.760000pt;}
.wse2{word-spacing:1.813333pt;}
.ws73{word-spacing:1.834667pt;}
.ws15{word-spacing:1.920000pt;}
.wsea{word-spacing:1.968000pt;}
.ws69{word-spacing:1.973333pt;}
.ws9e{word-spacing:2.026667pt;}
.ws8e{word-spacing:2.080000pt;}
.ws10{word-spacing:2.090667pt;}
.wsbe{word-spacing:2.133333pt;}
.wsec{word-spacing:2.160000pt;}
.wse{word-spacing:2.176000pt;}
.ws4c{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.240000pt;}
.ws103{word-spacing:2.256000pt;}
.ws20{word-spacing:2.293333pt;}
.ws12{word-spacing:2.304000pt;}
.wsa5{word-spacing:2.346667pt;}
.ws56{word-spacing:2.400000pt;}
.ws55{word-spacing:2.453333pt;}
.ws37{word-spacing:2.506667pt;}
.wsbb{word-spacing:2.560000pt;}
.ws18{word-spacing:2.602667pt;}
.wsdc{word-spacing:2.613333pt;}
.ws17{word-spacing:2.645333pt;}
.ws25{word-spacing:2.666667pt;}
.wsa9{word-spacing:2.720000pt;}
.wsa0{word-spacing:2.773333pt;}
.ws26{word-spacing:2.826667pt;}
.ws95{word-spacing:2.880000pt;}
.ws111{word-spacing:2.928000pt;}
.ws7c{word-spacing:2.933333pt;}
.ws3b{word-spacing:2.944000pt;}
.ws70{word-spacing:2.986667pt;}
.wsa1{word-spacing:3.040000pt;}
.ws11{word-spacing:3.072000pt;}
.ws94{word-spacing:3.093333pt;}
.ws91{word-spacing:3.146667pt;}
.ws90{word-spacing:3.200000pt;}
.ws46{word-spacing:3.253333pt;}
.wsf0{word-spacing:3.264000pt;}
.wsaa{word-spacing:3.306667pt;}
.wsbd{word-spacing:3.360000pt;}
.wsf{word-spacing:3.413333pt;}
.ws62{word-spacing:3.466667pt;}
.ws84{word-spacing:3.520000pt;}
.ws13{word-spacing:3.541333pt;}
.wse1{word-spacing:3.573333pt;}
.wsa{word-spacing:3.626667pt;}
.ws82{word-spacing:3.680000pt;}
.ws10d{word-spacing:3.696000pt;}
.ws50{word-spacing:3.733333pt;}
.wsee{word-spacing:3.744000pt;}
.ws93{word-spacing:3.786667pt;}
.ws79{word-spacing:3.840000pt;}
.ws8f{word-spacing:3.893333pt;}
.ws3f{word-spacing:3.946667pt;}
.ws43{word-spacing:4.000000pt;}
.ws2e{word-spacing:4.053333pt;}
.ws81{word-spacing:4.160000pt;}
.wsc5{word-spacing:4.213333pt;}
.ws96{word-spacing:4.266667pt;}
.wsb5{word-spacing:4.320000pt;}
.ws109{word-spacing:4.368000pt;}
.ws2d{word-spacing:4.373333pt;}
.ws118{word-spacing:4.416000pt;}
.ws44{word-spacing:4.426667pt;}
.ws87{word-spacing:4.480000pt;}
.ws1a{word-spacing:4.488000pt;}
.wsb{word-spacing:4.522667pt;}
.ws89{word-spacing:4.533333pt;}
.ws68{word-spacing:4.586667pt;}
.ws4a{word-spacing:4.640000pt;}
.wsca{word-spacing:4.693333pt;}
.wsd0{word-spacing:4.746667pt;}
.ws58{word-spacing:4.800000pt;}
.wsfe{word-spacing:4.853333pt;}
.ws9{word-spacing:4.906667pt;}
.ws10b{word-spacing:4.944000pt;}
.ws77{word-spacing:4.960000pt;}
.ws8b{word-spacing:5.066667pt;}
.wse6{word-spacing:5.120000pt;}
.wsb0{word-spacing:5.173333pt;}
.wsf4{word-spacing:5.226667pt;}
.ws6d{word-spacing:5.280000pt;}
.wse4{word-spacing:5.333333pt;}
.wsdb{word-spacing:5.386667pt;}
.wsed{word-spacing:5.472000pt;}
.ws7b{word-spacing:5.493333pt;}
.wsc6{word-spacing:5.546667pt;}
.ws100{word-spacing:5.568000pt;}
.ws30{word-spacing:5.600000pt;}
.wsd1{word-spacing:5.653333pt;}
.ws66{word-spacing:5.706667pt;}
.wsb3{word-spacing:5.920000pt;}
.ws85{word-spacing:5.973333pt;}
.ws2a{word-spacing:6.026667pt;}
.ws115{word-spacing:6.048000pt;}
.ws11d{word-spacing:6.080000pt;}
.ws9c{word-spacing:6.133333pt;}
.wsbf{word-spacing:6.186667pt;}
.ws11a{word-spacing:6.240000pt;}
.wsc2{word-spacing:6.293333pt;}
.ws52{word-spacing:6.400000pt;}
.wsd6{word-spacing:6.506667pt;}
.ws7a{word-spacing:6.560000pt;}
.wsa2{word-spacing:6.666667pt;}
.wsf9{word-spacing:6.720000pt;}
.ws9f{word-spacing:6.773333pt;}
.ws38{word-spacing:6.826667pt;}
.wsd4{word-spacing:6.986667pt;}
.wsdd{word-spacing:7.040000pt;}
.wsb6{word-spacing:7.093333pt;}
.ws9b{word-spacing:7.146667pt;}
.wsf7{word-spacing:7.200000pt;}
.ws60{word-spacing:7.253333pt;}
.wsb4{word-spacing:7.413333pt;}
.wsad{word-spacing:7.466667pt;}
.ws59{word-spacing:7.520000pt;}
.wsa3{word-spacing:7.573333pt;}
.ws80{word-spacing:7.733333pt;}
.ws6c{word-spacing:7.786667pt;}
.wsf6{word-spacing:7.840000pt;}
.ws61{word-spacing:7.893333pt;}
.wsb7{word-spacing:8.000000pt;}
.wsda{word-spacing:8.160000pt;}
.wsab{word-spacing:8.320000pt;}
.wsd3{word-spacing:8.373333pt;}
.wsc9{word-spacing:8.853333pt;}
.wse5{word-spacing:9.120000pt;}
.wsd8{word-spacing:9.173333pt;}
.ws10a{word-spacing:9.744000pt;}
.wsd7{word-spacing:10.506667pt;}
.ws119{word-spacing:10.826667pt;}
.wsfc{word-spacing:11.946667pt;}
.wsf2{word-spacing:12.586667pt;}
.ws16{word-spacing:13.141333pt;}
.ws110{word-spacing:20.976000pt;}
.ws116{word-spacing:25.680000pt;}
.wsb9{word-spacing:209.001600pt;}
.wsb8{word-spacing:451.779200pt;}
.ws2{word-spacing:612.502667pt;}
._20{margin-left:-43.520000pt;}
._21{margin-left:-7.093333pt;}
._1{margin-left:-5.600000pt;}
._8{margin-left:-3.819733pt;}
._9{margin-left:-2.925867pt;}
._0{margin-left:-1.719467pt;}
._6{width:1.412267pt;}
._7{width:2.525867pt;}
._4{width:3.554133pt;}
._d{width:4.489600pt;}
._b{width:5.525333pt;}
._5{width:6.638933pt;}
._a{width:8.176000pt;}
._c{width:9.728000pt;}
._e{width:11.413333pt;}
._f{width:37.333333pt;}
._19{width:39.238400pt;}
._2{width:43.390933pt;}
._12{width:315.094400pt;}
._18{width:361.876267pt;}
._1c{width:367.828267pt;}
._16{width:374.007467pt;}
._10{width:385.566933pt;}
._1f{width:415.250133pt;}
._1d{width:426.414933pt;}
._3{width:498.950400pt;}
._15{width:535.588267pt;}
._1b{width:545.494400pt;}
._14{width:553.134933pt;}
._17{width:556.206933pt;}
._1e{width:561.678933pt;}
._1a{width:834.578133pt;}
._11{width:1337.052800pt;}
._13{width:1350.780800pt;}
.fs9{font-size:31.093333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:18.897600pt;}
.y3e{bottom:35.003467pt;}
.y3d{bottom:48.603467pt;}
.y3c{bottom:62.203467pt;}
.y73{bottom:64.251867pt;}
.ya6{bottom:64.252000pt;}
.yf0{bottom:70.450400pt;}
.y3b{bottom:75.803467pt;}
.y11e{bottom:76.308533pt;}
.y96{bottom:77.816400pt;}
.yd4{bottom:78.175733pt;}
.y72{bottom:78.918533pt;}
.ya5{bottom:78.918667pt;}
.y7e{bottom:80.214000pt;}
.yef{bottom:86.450400pt;}
.y71{bottom:93.585200pt;}
.yb0{bottom:93.585333pt;}
.ya4{bottom:93.585467pt;}
.y11d{bottom:94.975200pt;}
.y95{bottom:96.483067pt;}
.yd3{bottom:96.842400pt;}
.y7d{bottom:98.880667pt;}
.y70{bottom:108.251867pt;}
.yaf{bottom:108.252000pt;}
.ya3{bottom:108.252133pt;}
.y11c{bottom:113.641867pt;}
.y94{bottom:115.149733pt;}
.yd2{bottom:115.509067pt;}
.y7c{bottom:117.547333pt;}
.yee{bottom:118.450400pt;}
.y6f{bottom:122.918533pt;}
.yae{bottom:122.918667pt;}
.y11b{bottom:132.308533pt;}
.y81{bottom:132.614400pt;}
.y93{bottom:133.816400pt;}
.yd1{bottom:134.175733pt;}
.y7b{bottom:136.214000pt;}
.yed{bottom:137.117067pt;}
.y6e{bottom:137.585200pt;}
.yad{bottom:137.585333pt;}
.y80{bottom:147.014533pt;}
.y11a{bottom:150.975200pt;}
.y6d{bottom:152.251867pt;}
.yac{bottom:152.252133pt;}
.y92{bottom:152.483067pt;}
.yd0{bottom:152.842400pt;}
.y7a{bottom:154.880667pt;}
.yec{bottom:155.783733pt;}
.y154{bottom:157.547333pt;}
.y7f{bottom:161.414533pt;}
.y83{bottom:166.097067pt;}
.y6c{bottom:166.918533pt;}
.yab{bottom:166.918800pt;}
.y119{bottom:169.641867pt;}
.ya2{bottom:170.313733pt;}
.y91{bottom:171.149733pt;}
.ycf{bottom:171.509067pt;}
.y79{bottom:173.547333pt;}
.yeb{bottom:174.450400pt;}
.y153{bottom:176.214000pt;}
.y82{bottom:180.497067pt;}
.y6b{bottom:181.585200pt;}
.yaa{bottom:181.585467pt;}
.y118{bottom:188.308533pt;}
.y90{bottom:189.816400pt;}
.yce{bottom:190.175733pt;}
.y78{bottom:192.214000pt;}
.yea{bottom:193.117067pt;}
.y152{bottom:194.880667pt;}
.ya1{bottom:195.251733pt;}
.y6a{bottom:196.251867pt;}
.y117{bottom:206.975200pt;}
.y8f{bottom:208.483067pt;}
.ycd{bottom:208.842400pt;}
.y77{bottom:210.880667pt;}
.y69{bottom:210.918533pt;}
.ye9{bottom:211.783733pt;}
.y151{bottom:213.547333pt;}
.ya0{bottom:220.930000pt;}
.y116{bottom:225.641867pt;}
.y8e{bottom:227.149733pt;}
.ycc{bottom:227.509067pt;}
.y76{bottom:229.547333pt;}
.ye8{bottom:230.450400pt;}
.y150{bottom:232.214000pt;}
.y115{bottom:244.308533pt;}
.y8d{bottom:245.816400pt;}
.ycb{bottom:246.175733pt;}
.y9f{bottom:246.608133pt;}
.ya9{bottom:248.027333pt;}
.y75{bottom:248.214000pt;}
.ye7{bottom:249.117067pt;}
.y14f{bottom:250.880667pt;}
.y114{bottom:262.975200pt;}
.y8c{bottom:264.483067pt;}
.yca{bottom:264.842400pt;}
.ya8{bottom:266.694000pt;}
.y68{bottom:266.880667pt;}
.ye6{bottom:267.783733pt;}
.y14e{bottom:269.547333pt;}
.y9e{bottom:272.286400pt;}
.y113{bottom:281.641867pt;}
.y8b{bottom:283.149733pt;}
.yc9{bottom:283.509067pt;}
.ya7{bottom:285.360667pt;}
.y67{bottom:285.547333pt;}
.ye5{bottom:286.450400pt;}
.y14d{bottom:288.214000pt;}
.y3a{bottom:288.924933pt;}
.y9d{bottom:297.964533pt;}
.y112{bottom:300.308533pt;}
.y8a{bottom:301.816400pt;}
.yc8{bottom:302.175733pt;}
.y39{bottom:302.924933pt;}
.y66{bottom:304.214000pt;}
.ye4{bottom:305.117067pt;}
.y14c{bottom:306.880667pt;}
.y38{bottom:316.924933pt;}
.y111{bottom:318.975200pt;}
.y89{bottom:320.483067pt;}
.yc7{bottom:320.842400pt;}
.y65{bottom:322.880667pt;}
.y9c{bottom:323.642800pt;}
.ye3{bottom:323.783733pt;}
.y14b{bottom:325.547333pt;}
.y37{bottom:330.924933pt;}
.y88{bottom:339.149733pt;}
.yc6{bottom:339.508933pt;}
.y64{bottom:341.547333pt;}
.ye2{bottom:342.450267pt;}
.y140{bottom:342.972800pt;}
.y14a{bottom:344.214000pt;}
.y36{bottom:344.924933pt;}
.y9b{bottom:349.321067pt;}
.y110{bottom:356.308533pt;}
.y87{bottom:357.816400pt;}
.yc5{bottom:358.175600pt;}
.y35{bottom:358.924933pt;}
.y63{bottom:360.214000pt;}
.ye1{bottom:361.116933pt;}
.y13f{bottom:361.639467pt;}
.y149{bottom:362.880667pt;}
.y34{bottom:372.924933pt;}
.y9a{bottom:374.999333pt;}
.yc4{bottom:376.842267pt;}
.y62{bottom:378.880667pt;}
.ye0{bottom:379.783600pt;}
.y13e{bottom:380.306133pt;}
.y148{bottom:381.547333pt;}
.y33{bottom:386.924933pt;}
.y2d{bottom:394.166267pt;}
.y86{bottom:395.149733pt;}
.yc3{bottom:395.508933pt;}
.y61{bottom:397.547333pt;}
.ydf{bottom:398.450267pt;}
.y13d{bottom:398.972800pt;}
.y147{bottom:400.214000pt;}
.y99{bottom:400.677467pt;}
.y32{bottom:400.924933pt;}
.y2c{bottom:409.499600pt;}
.y10f{bottom:412.308533pt;}
.yc2{bottom:414.175600pt;}
.y31{bottom:414.924933pt;}
.y60{bottom:416.214000pt;}
.yde{bottom:417.116933pt;}
.y13c{bottom:417.639467pt;}
.y146{bottom:418.880667pt;}
.y2b{bottom:424.832933pt;}
.y98{bottom:426.355733pt;}
.y30{bottom:428.924933pt;}
.y10e{bottom:430.975200pt;}
.yc1{bottom:432.842267pt;}
.y5f{bottom:434.880667pt;}
.ydd{bottom:435.783600pt;}
.y13b{bottom:436.306133pt;}
.y145{bottom:437.547333pt;}
.y2a{bottom:440.166267pt;}
.y2f{bottom:442.924933pt;}
.y10d{bottom:449.641867pt;}
.y85{bottom:451.149733pt;}
.yc0{bottom:451.508933pt;}
.y5e{bottom:453.547333pt;}
.ydc{bottom:454.450267pt;}
.y13a{bottom:454.972800pt;}
.y29{bottom:455.499600pt;}
.y2e{bottom:456.924933pt;}
.y97{bottom:457.280667pt;}
.y84{bottom:465.549733pt;}
.y10c{bottom:468.308533pt;}
.ybf{bottom:470.175600pt;}
.y5d{bottom:472.214000pt;}
.ydb{bottom:473.116933pt;}
.y139{bottom:473.639467pt;}
.y144{bottom:474.880667pt;}
.y28{bottom:484.999333pt;}
.y10b{bottom:486.975200pt;}
.y6{bottom:487.525733pt;}
.ybe{bottom:488.842267pt;}
.y5c{bottom:490.880667pt;}
.yda{bottom:491.783600pt;}
.y138{bottom:492.306133pt;}
.y143{bottom:493.547333pt;}
.y10a{bottom:505.641867pt;}
.ybd{bottom:507.508933pt;}
.y5b{bottom:509.547333pt;}
.yd9{bottom:510.450267pt;}
.y137{bottom:510.972800pt;}
.y142{bottom:512.214000pt;}
.y40{bottom:512.953333pt;}
.y27{bottom:515.210000pt;}
.y109{bottom:524.308533pt;}
.ybc{bottom:526.175600pt;}
.y5a{bottom:528.214000pt;}
.yd8{bottom:529.116933pt;}
.y26{bottom:529.210000pt;}
.y136{bottom:529.639467pt;}
.y141{bottom:530.880667pt;}
.y108{bottom:542.975200pt;}
.y25{bottom:543.210000pt;}
.ybb{bottom:544.842267pt;}
.y59{bottom:546.880667pt;}
.yd7{bottom:547.783600pt;}
.y135{bottom:548.306133pt;}
.y18{bottom:554.451333pt;}
.y24{bottom:557.210000pt;}
.y107{bottom:561.641867pt;}
.yba{bottom:563.508933pt;}
.y58{bottom:565.547333pt;}
.yd6{bottom:566.450267pt;}
.y134{bottom:566.972800pt;}
.y17{bottom:569.784667pt;}
.y23{bottom:571.210000pt;}
.y106{bottom:580.308533pt;}
.yb9{bottom:582.175600pt;}
.y57{bottom:584.214000pt;}
.y16{bottom:585.118000pt;}
.y22{bottom:585.210000pt;}
.y133{bottom:585.639467pt;}
.y21{bottom:599.210000pt;}
.y15{bottom:600.451333pt;}
.yb8{bottom:600.842267pt;}
.y56{bottom:602.880667pt;}
.y132{bottom:604.306133pt;}
.y20{bottom:613.210000pt;}
.y105{bottom:614.974000pt;}
.y14{bottom:615.784667pt;}
.yb7{bottom:619.508933pt;}
.y55{bottom:621.547333pt;}
.yd5{bottom:622.450267pt;}
.y131{bottom:622.972800pt;}
.y1f{bottom:627.210000pt;}
.y104{bottom:630.974000pt;}
.yb6{bottom:638.175600pt;}
.y54{bottom:640.214000pt;}
.y1e{bottom:641.210000pt;}
.y130{bottom:641.639467pt;}
.y13{bottom:646.318000pt;}
.y103{bottom:646.974000pt;}
.y1d{bottom:655.210000pt;}
.yb5{bottom:656.842267pt;}
.y53{bottom:658.880667pt;}
.y12f{bottom:660.306133pt;}
.y102{bottom:662.974000pt;}
.y1c{bottom:669.210000pt;}
.yb4{bottom:675.508933pt;}
.y52{bottom:677.547333pt;}
.y12e{bottom:678.972800pt;}
.y101{bottom:678.974000pt;}
.y12{bottom:679.118000pt;}
.y1b{bottom:683.210000pt;}
.yb3{bottom:694.175600pt;}
.y11{bottom:694.451333pt;}
.y100{bottom:694.974000pt;}
.y51{bottom:696.214000pt;}
.y1a{bottom:697.210000pt;}
.y12d{bottom:697.639467pt;}
.y10{bottom:709.784667pt;}
.yff{bottom:710.974000pt;}
.y19{bottom:711.210000pt;}
.yb2{bottom:712.842267pt;}
.y50{bottom:714.880667pt;}
.y12c{bottom:716.306133pt;}
.y4f{bottom:733.547333pt;}
.y12b{bottom:734.972800pt;}
.yf{bottom:737.730533pt;}
.yfe{bottom:742.974000pt;}
.y4e{bottom:752.214000pt;}
.y12a{bottom:753.639467pt;}
.yfd{bottom:761.640667pt;}
.yb1{bottom:768.842267pt;}
.y4d{bottom:770.880667pt;}
.y129{bottom:772.306133pt;}
.ye{bottom:779.235467pt;}
.yfc{bottom:780.307333pt;}
.y4c{bottom:789.547333pt;}
.y128{bottom:790.972800pt;}
.yd{bottom:795.235467pt;}
.yfb{bottom:798.974000pt;}
.y4b{bottom:808.214000pt;}
.y127{bottom:809.639467pt;}
.yc{bottom:811.235467pt;}
.yfa{bottom:817.640667pt;}
.y4a{bottom:826.880667pt;}
.yb{bottom:827.235467pt;}
.y126{bottom:828.306133pt;}
.y49{bottom:845.547333pt;}
.y125{bottom:846.972800pt;}
.yf9{bottom:852.306133pt;}
.ya{bottom:853.461200pt;}
.y48{bottom:864.214000pt;}
.y124{bottom:865.639467pt;}
.yf8{bottom:868.306133pt;}
.y9{bottom:874.261200pt;}
.y47{bottom:882.880667pt;}
.yf7{bottom:884.306133pt;}
.yf6{bottom:900.306133pt;}
.y46{bottom:901.547333pt;}
.y123{bottom:902.972800pt;}
.y8{bottom:907.061200pt;}
.yf5{bottom:916.306133pt;}
.y45{bottom:920.214000pt;}
.y122{bottom:921.639467pt;}
.y7{bottom:931.061200pt;}
.yf4{bottom:932.306133pt;}
.y44{bottom:938.880667pt;}
.y121{bottom:940.306133pt;}
.y43{bottom:957.547333pt;}
.y120{bottom:958.972800pt;}
.yf3{bottom:964.306133pt;}
.y74{bottom:976.214000pt;}
.y11f{bottom:977.639467pt;}
.yf2{bottom:980.306133pt;}
.y42{bottom:994.880667pt;}
.yf1{bottom:996.306133pt;}
.y5{bottom:1004.951867pt;}
.y4{bottom:1020.951867pt;}
.y3{bottom:1036.951867pt;}
.y2{bottom:1052.951867pt;}
.y1{bottom:1068.951867pt;}
.y3f{bottom:1070.751600pt;}
.h3{height:32.682667pt;}
.h9{height:36.768000pt;}
.hc{height:37.760000pt;}
.h4{height:38.613333pt;}
.h2{height:40.277333pt;}
.hf{height:40.853333pt;}
.hb{height:42.794667pt;}
.h11{height:44.695312pt;}
.h10{height:44.832000pt;}
.h7{height:44.938667pt;}
.h8{height:45.312000pt;}
.ha{height:47.178385pt;}
.hd{height:49.813333pt;}
.he{height:50.346667pt;}
.h6{height:64.559896pt;}
.h5{height:75.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:26.456667pt;}
.x14{left:56.692933pt;}
.x1b{left:57.787733pt;}
.x20{left:60.805733pt;}
.xf{left:62.026267pt;}
.x13{left:68.737333pt;}
.x7{left:70.335467pt;}
.x19{left:73.760800pt;}
.x15{left:75.590533pt;}
.x1c{left:77.771867pt;}
.x25{left:83.003867pt;}
.x24{left:86.929200pt;}
.x22{left:94.488267pt;}
.x1d{left:99.590533pt;}
.x9{left:112.455467pt;}
.x23{left:113.385867pt;}
.x17{left:114.305067pt;}
.x16{left:116.979200pt;}
.x21{left:121.611467pt;}
.x1f{left:131.136667pt;}
.x18{left:134.013067pt;}
.x1{left:174.181333pt;}
.x2{left:176.656267pt;}
.x1a{left:186.475067pt;}
.x1e{left:194.732400pt;}
.xe{left:216.511600pt;}
.x8{left:219.912933pt;}
.x3{left:221.236800pt;}
.xd{left:238.627600pt;}
.xa{left:239.577867pt;}
.xc{left:253.890267pt;}
.x4{left:264.606800pt;}
.x12{left:286.579867pt;}
.x10{left:301.081333pt;}
.xb{left:320.291067pt;}
.x5{left:354.975867pt;}
.x6{left:758.437333pt;}
}

