
    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_f8dc20f56461133d858029e6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984333;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_deacc566e64b5cb8e8096c29.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_ad4c87a1e5fc7fe5443b9c54.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_32f5ed0f29ffd2d6633a177c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_4d4fd8282839c202a0a62d73.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_4530de76e2307ef25475e800.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_4530de76e2307ef25475e800.woff')format("woff");}.ff7{font-family:ff7;line-height:1.122000;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_4530de76e2307ef25475e800.woff')format("woff");}.ff8{font-family:ff8;line-height:1.122000;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_72643b2ab9938bd93b876eff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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);}
.v1{vertical-align:-2.998800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.946800px;}
.ls2{letter-spacing:-1.836000px;}
.ls9{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.390000px;}
.ls4{letter-spacing:0.420000px;}
.lse{letter-spacing:0.918000px;}
.lsf{letter-spacing:1.161000px;}
.ls8{letter-spacing:389.265000px;}
.ls5{letter-spacing:475.398600px;}
.lsa{letter-spacing:949.869600px;}
.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;}
}
.ws11{word-spacing:-23.520000px;}
.ws1a{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.170000px;}
.ws1{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.700000px;}
.wsac{word-spacing:-14.661000px;}
.wsaa{word-spacing:-14.418000px;}
.wsad{word-spacing:-13.878000px;}
.ws2{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.500000px;}
.wsab{word-spacing:-12.960000px;}
.ws92{word-spacing:-5.112000px;}
.ws20{word-spacing:-3.528000px;}
.ws1e{word-spacing:-3.384000px;}
.ws3d{word-spacing:-3.312000px;}
.ws73{word-spacing:-3.240000px;}
.ws33{word-spacing:-3.096000px;}
.ws19{word-spacing:-2.880000px;}
.ws35{word-spacing:-2.808000px;}
.ws6c{word-spacing:-2.736000px;}
.ws3c{word-spacing:-2.664000px;}
.ws84{word-spacing:-2.592000px;}
.ws74{word-spacing:-2.520000px;}
.ws91{word-spacing:-2.448000px;}
.ws32{word-spacing:-2.376000px;}
.ws28{word-spacing:-2.304000px;}
.wsb3{word-spacing:-2.214000px;}
.ws70{word-spacing:-2.160000px;}
.ws46{word-spacing:-2.088000px;}
.ws8b{word-spacing:-2.016000px;}
.ws56{word-spacing:-1.944000px;}
.ws39{word-spacing:-1.872000px;}
.ws50{word-spacing:-1.800000px;}
.ws67{word-spacing:-1.728000px;}
.ws81{word-spacing:-1.656000px;}
.wsc3{word-spacing:-1.620000px;}
.ws7a{word-spacing:-1.584000px;}
.wsca{word-spacing:-1.566000px;}
.wse{word-spacing:-1.560000px;}
.ws4f{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.440000px;}
.ws85{word-spacing:-1.296000px;}
.wsb4{word-spacing:-1.242000px;}
.ws55{word-spacing:-1.224000px;}
.ws8a{word-spacing:-1.152000px;}
.ws80{word-spacing:-1.080000px;}
.ws9e{word-spacing:-0.936000px;}
.ws98{word-spacing:-0.864000px;}
.ws8d{word-spacing:-0.792000px;}
.ws86{word-spacing:-0.720000px;}
.wsb1{word-spacing:-0.648000px;}
.ws45{word-spacing:-0.576000px;}
.wsbb{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.504000px;}
.ws4d{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.288000px;}
.wsc8{word-spacing:-0.270000px;}
.ws29{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.144000px;}
.ws87{word-spacing:-0.072000px;}
.ws65{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:0.072000px;}
.wsd{word-spacing:0.078000px;}
.ws7b{word-spacing:0.216000px;}
.wsa8{word-spacing:0.288000px;}
.ws97{word-spacing:0.324000px;}
.ws13{word-spacing:0.330000px;}
.wsa6{word-spacing:0.360000px;}
.ws3b{word-spacing:0.432000px;}
.ws10{word-spacing:0.468000px;}
.ws99{word-spacing:0.504000px;}
.wsb8{word-spacing:0.540000px;}
.wsc7{word-spacing:0.648000px;}
.ws47{word-spacing:0.720000px;}
.ws52{word-spacing:0.792000px;}
.ws41{word-spacing:0.936000px;}
.ws79{word-spacing:1.008000px;}
.wsae{word-spacing:1.080000px;}
.ws5f{word-spacing:1.152000px;}
.ws93{word-spacing:1.224000px;}
.ws54{word-spacing:1.296000px;}
.ws3f{word-spacing:1.368000px;}
.ws8{word-spacing:1.404000px;}
.ws61{word-spacing:1.512000px;}
.ws63{word-spacing:1.584000px;}
.ws9f{word-spacing:1.728000px;}
.ws78{word-spacing:1.800000px;}
.ws5{word-spacing:1.836000px;}
.wsc{word-spacing:1.872000px;}
.wsc6{word-spacing:1.998000px;}
.ws26{word-spacing:2.088000px;}
.ws5d{word-spacing:2.160000px;}
.ws64{word-spacing:2.304000px;}
.wsb7{word-spacing:2.322000px;}
.ws44{word-spacing:2.448000px;}
.ws5c{word-spacing:2.520000px;}
.ws2b{word-spacing:2.664000px;}
.ws40{word-spacing:2.736000px;}
.ws77{word-spacing:2.808000px;}
.ws8c{word-spacing:2.880000px;}
.ws6e{word-spacing:2.952000px;}
.ws4b{word-spacing:3.024000px;}
.ws58{word-spacing:3.096000px;}
.wsa3{word-spacing:3.168000px;}
.ws7f{word-spacing:3.240000px;}
.ws22{word-spacing:3.456000px;}
.ws5a{word-spacing:3.600000px;}
.ws48{word-spacing:3.744000px;}
.ws1f{word-spacing:3.888000px;}
.ws82{word-spacing:4.032000px;}
.wsb6{word-spacing:4.158000px;}
.ws2c{word-spacing:4.248000px;}
.ws9c{word-spacing:4.320000px;}
.ws66{word-spacing:4.392000px;}
.ws21{word-spacing:4.464000px;}
.ws42{word-spacing:4.536000px;}
.wsbe{word-spacing:4.590000px;}
.wsa5{word-spacing:4.608000px;}
.ws6a{word-spacing:4.680000px;}
.ws4c{word-spacing:4.752000px;}
.ws94{word-spacing:4.896000px;}
.ws2d{word-spacing:4.968000px;}
.wsa4{word-spacing:5.040000px;}
.wsa2{word-spacing:5.112000px;}
.wsc2{word-spacing:5.130000px;}
.ws25{word-spacing:5.184000px;}
.wsc5{word-spacing:5.238000px;}
.ws89{word-spacing:5.256000px;}
.ws2e{word-spacing:5.328000px;}
.ws90{word-spacing:5.472000px;}
.ws57{word-spacing:5.544000px;}
.ws34{word-spacing:5.616000px;}
.ws24{word-spacing:5.688000px;}
.ws36{word-spacing:5.760000px;}
.ws59{word-spacing:6.336000px;}
.wsc1{word-spacing:6.372000px;}
.ws9{word-spacing:6.396000px;}
.ws8e{word-spacing:6.408000px;}
.wsa0{word-spacing:6.552000px;}
.ws71{word-spacing:6.624000px;}
.ws4e{word-spacing:6.696000px;}
.ws9b{word-spacing:6.768000px;}
.ws6{word-spacing:6.786000px;}
.ws72{word-spacing:6.840000px;}
.ws53{word-spacing:6.912000px;}
.ws37{word-spacing:6.984000px;}
.ws60{word-spacing:7.128000px;}
.ws8f{word-spacing:7.200000px;}
.ws43{word-spacing:7.272000px;}
.ws1d{word-spacing:7.344000px;}
.wsb5{word-spacing:7.398000px;}
.ws30{word-spacing:7.416000px;}
.ws49{word-spacing:7.488000px;}
.ws4a{word-spacing:7.632000px;}
.ws51{word-spacing:7.704000px;}
.ws88{word-spacing:7.776000px;}
.ws83{word-spacing:7.848000px;}
.ws1c{word-spacing:7.992000px;}
.wsbd{word-spacing:8.046000px;}
.wsa7{word-spacing:8.136000px;}
.ws5e{word-spacing:8.208000px;}
.wsb0{word-spacing:8.280000px;}
.ws75{word-spacing:8.424000px;}
.ws5b{word-spacing:8.496000px;}
.ws38{word-spacing:8.568000px;}
.ws95{word-spacing:8.712000px;}
.ws6b{word-spacing:8.928000px;}
.ws2f{word-spacing:9.216000px;}
.ws3e{word-spacing:9.288000px;}
.ws6d{word-spacing:9.432000px;}
.wsba{word-spacing:9.450000px;}
.wsb2{word-spacing:9.648000px;}
.ws68{word-spacing:9.936000px;}
.wsa9{word-spacing:10.224000px;}
.wsa1{word-spacing:10.296000px;}
.ws9a{word-spacing:10.512000px;}
.ws27{word-spacing:10.656000px;}
.ws6f{word-spacing:10.800000px;}
.wsbc{word-spacing:10.962000px;}
.ws3a{word-spacing:11.016000px;}
.wsbf{word-spacing:11.124000px;}
.ws7c{word-spacing:11.160000px;}
.wsf{word-spacing:11.310000px;}
.ws7d{word-spacing:11.736000px;}
.ws69{word-spacing:11.952000px;}
.wsb9{word-spacing:12.312000px;}
.wsc4{word-spacing:12.528000px;}
.wsc0{word-spacing:13.878000px;}
.ws7{word-spacing:14.196000px;}
.ws15{word-spacing:15.000000px;}
.wsc9{word-spacing:15.552000px;}
.ws1b{word-spacing:18.000000px;}
.wsaf{word-spacing:18.144000px;}
.wsa{word-spacing:18.642000px;}
.wsb{word-spacing:19.032000px;}
.ws7e{word-spacing:32.688000px;}
.ws31{word-spacing:330.765000px;}
.ws3{word-spacing:552.660600px;}
.ws18{word-spacing:1300.080000px;}
.ws16{word-spacing:1312.200000px;}
._44{margin-left:-24.384000px;}
._43{margin-left:-23.107200px;}
._3{margin-left:-8.255400px;}
._45{margin-left:-6.984000px;}
._2{margin-left:-5.826000px;}
._7{margin-left:-4.108800px;}
._0{margin-left:-2.640000px;}
._1{margin-left:-1.590600px;}
._6{width:1.728000px;}
._5{width:3.780000px;}
._31{width:9.060000px;}
._4{width:45.000000px;}
._2c{width:54.510600px;}
._18{width:63.900000px;}
._1d{width:110.220000px;}
._c{width:121.501200px;}
._2d{width:124.350600px;}
._3e{width:131.055600px;}
._1f{width:138.420000px;}
._1e{width:142.863600px;}
._20{width:151.992000px;}
._1b{width:175.317000px;}
._1c{width:202.437000px;}
._a{width:298.680000px;}
._25{width:323.136600px;}
._14{width:359.820000px;}
._41{width:390.331800px;}
._2e{width:395.070600px;}
._30{width:412.440000px;}
._3f{width:430.080000px;}
._37{width:433.470600px;}
._2b{width:502.440000px;}
._1a{width:552.181200px;}
._3c{width:600.450600px;}
._2a{width:614.730600px;}
._e{width:625.411800px;}
._29{width:643.590600px;}
._8{width:682.021200px;}
._27{width:757.770600px;}
._39{width:761.128800px;}
._36{width:769.020000px;}
._19{width:777.091200px;}
._3d{width:785.160000px;}
._16{width:786.871200px;}
._3a{width:791.160000px;}
._b{width:825.240000px;}
._40{width:838.500000px;}
._9{width:871.080600px;}
._12{width:877.140000px;}
._33{width:887.070600px;}
._10{width:888.120000px;}
._15{width:919.080000px;}
._24{width:923.070600px;}
._3b{width:925.500000px;}
._13{width:933.091800px;}
._d{width:953.070600px;}
._38{width:988.860000px;}
._28{width:991.831800px;}
._11{width:993.840000px;}
._32{width:1066.440000px;}
._34{width:1068.181200px;}
._2f{width:1073.970600px;}
._23{width:1102.440000px;}
._21{width:1118.430600px;}
._42{width:1127.880000px;}
._f{width:1139.970600px;}
._26{width:1148.040000px;}
._22{width:1163.880000px;}
._35{width:1186.980000px;}
._17{width:1349.220000px;}
.fc6{color:rgb(54,95,145);}
.fc4{color:rgb(224,217,217);}
.fc3{color:rgb(203,191,192);}
.fc1{color:rgb(42,12,14);}
.fc5{color:rgb(150,145,117);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fsb{font-size:96.000000px;}
.fs7{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs3{font-size:192.000000px;}
.fs5{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:34.461000px;}
.y50{bottom:53.413200px;}
.y7a{bottom:54.489750px;}
.y33{bottom:55.120650px;}
.y7d{bottom:58.197300px;}
.y14{bottom:81.368400px;}
.y13{bottom:99.368400px;}
.y10c{bottom:101.433000px;}
.ye2{bottom:101.433150px;}
.y79{bottom:107.470800px;}
.y127{bottom:109.179150px;}
.y4f{bottom:109.533300px;}
.ya2{bottom:111.558300px;}
.y10b{bottom:120.933000px;}
.ye1{bottom:120.933150px;}
.y78{bottom:123.970800px;}
.y126{bottom:124.179150px;}
.yc4{bottom:126.558300px;}
.y12{bottom:128.872350px;}
.ya1{bottom:129.558300px;}
.y4e{bottom:130.533300px;}
.y125{bottom:139.179150px;}
.y10a{bottom:140.433000px;}
.ye0{bottom:140.433150px;}
.y77{bottom:140.470800px;}
.yc3{bottom:143.058300px;}
.y11{bottom:146.872350px;}
.y4d{bottom:147.033300px;}
.ya0{bottom:147.558300px;}
.y124{bottom:154.179150px;}
.y76{bottom:156.970800px;}
.yc2{bottom:159.558300px;}
.y109{bottom:159.933000px;}
.ydf{bottom:159.933150px;}
.y10{bottom:164.872350px;}
.y4c{bottom:165.033300px;}
.y9f{bottom:165.558300px;}
.y123{bottom:169.179150px;}
.y75{bottom:173.470800px;}
.yc1{bottom:176.058300px;}
.y108{bottom:179.433000px;}
.yde{bottom:179.433150px;}
.yf{bottom:182.872350px;}
.y122{bottom:184.179150px;}
.y74{bottom:194.470800px;}
.yc0{bottom:195.558300px;}
.y107{bottom:198.933000px;}
.ydd{bottom:198.933150px;}
.y121{bottom:199.179150px;}
.ye{bottom:200.872350px;}
.y4b{bottom:201.033300px;}
.y9e{bottom:201.558300px;}
.y73{bottom:212.470800px;}
.ybf{bottom:213.558300px;}
.y120{bottom:214.179150px;}
.y4a{bottom:217.533300px;}
.y9d{bottom:218.058300px;}
.y106{bottom:218.433000px;}
.ydc{bottom:218.433150px;}
.yd{bottom:218.872350px;}
.y11f{bottom:229.179150px;}
.y72{bottom:230.470800px;}
.ybe{bottom:231.558300px;}
.y49{bottom:234.033300px;}
.y9c{bottom:234.558300px;}
.yc{bottom:236.872350px;}
.y105{bottom:237.933000px;}
.ydb{bottom:237.933150px;}
.y11e{bottom:244.179150px;}
.ybd{bottom:249.558300px;}
.y48{bottom:250.533300px;}
.y9b{bottom:251.058300px;}
.yb{bottom:254.872350px;}
.yda{bottom:257.433150px;}
.y11d{bottom:259.179150px;}
.y71{bottom:266.470800px;}
.y47{bottom:267.033300px;}
.y9a{bottom:267.558300px;}
.ya{bottom:272.872350px;}
.y11c{bottom:274.179150px;}
.yd9{bottom:276.933150px;}
.y104{bottom:278.370300px;}
.y70{bottom:282.970800px;}
.y99{bottom:284.058300px;}
.y46{bottom:288.033300px;}
.y11b{bottom:289.179150px;}
.y9{bottom:290.872350px;}
.y103{bottom:296.370300px;}
.yd8{bottom:296.433150px;}
.y6f{bottom:299.470800px;}
.y98{bottom:300.558300px;}
.ybc{bottom:303.558300px;}
.y11a{bottom:304.179150px;}
.y45{bottom:306.033300px;}
.y8{bottom:308.872350px;}
.y102{bottom:314.370300px;}
.yd7{bottom:315.933150px;}
.y6e{bottom:315.970800px;}
.y119{bottom:319.179150px;}
.ybb{bottom:320.058300px;}
.y97{bottom:321.558300px;}
.y44{bottom:324.033300px;}
.y101{bottom:332.370300px;}
.y6d{bottom:332.470800px;}
.y118{bottom:334.179150px;}
.yd6{bottom:335.433150px;}
.yba{bottom:336.558300px;}
.y7{bottom:338.376300px;}
.y96{bottom:339.558300px;}
.y43{bottom:342.033300px;}
.y117{bottom:349.179150px;}
.y100{bottom:350.370300px;}
.yb9{bottom:353.058300px;}
.y6c{bottom:353.470800px;}
.yd5{bottom:354.933150px;}
.y6{bottom:356.376300px;}
.y95{bottom:357.558300px;}
.y116{bottom:364.179150px;}
.yff{bottom:368.370300px;}
.yb8{bottom:369.558300px;}
.y6b{bottom:371.470800px;}
.yd4{bottom:374.433150px;}
.y2e{bottom:374.433600px;}
.y42{bottom:378.033300px;}
.y115{bottom:379.179150px;}
.y5{bottom:385.880250px;}
.yfe{bottom:386.370300px;}
.yb7{bottom:389.058300px;}
.y6a{bottom:389.470800px;}
.y94{bottom:393.558300px;}
.yd3{bottom:393.933150px;}
.y114{bottom:394.179150px;}
.y41{bottom:396.033300px;}
.y2d{bottom:396.183600px;}
.y4{bottom:403.880250px;}
.yfd{bottom:404.370300px;}
.yb6{bottom:407.058300px;}
.y113{bottom:409.179150px;}
.y93{bottom:411.558300px;}
.yd2{bottom:413.433150px;}
.y40{bottom:414.033300px;}
.y2c{bottom:417.933600px;}
.y3{bottom:421.880250px;}
.y112{bottom:424.179150px;}
.yb5{bottom:425.058300px;}
.y69{bottom:425.470800px;}
.yfc{bottom:428.370300px;}
.y92{bottom:429.558300px;}
.yd1{bottom:432.933150px;}
.y111{bottom:439.179150px;}
.y2b{bottom:439.683600px;}
.y2{bottom:439.880250px;}
.y68{bottom:443.470800px;}
.y3f{bottom:450.033300px;}
.yd0{bottom:452.433150px;}
.y110{bottom:454.179150px;}
.yfb{bottom:456.870300px;}
.y1{bottom:457.880250px;}
.yb4{bottom:461.058300px;}
.y2a{bottom:461.433600px;}
.y67{bottom:461.470800px;}
.y91{bottom:465.558300px;}
.y3e{bottom:466.533300px;}
.ycf{bottom:471.933150px;}
.yfa{bottom:474.870300px;}
.yb3{bottom:477.558300px;}
.y90{bottom:482.058300px;}
.y3d{bottom:483.033300px;}
.y29{bottom:483.183600px;}
.yce{bottom:491.433150px;}
.yf9{bottom:492.870300px;}
.yb2{bottom:494.058300px;}
.y66{bottom:497.470800px;}
.y8f{bottom:498.558300px;}
.y3c{bottom:499.533300px;}
.y15{bottom:500.559000px;}
.y28{bottom:504.933600px;}
.yb1{bottom:510.558300px;}
.yf8{bottom:510.870300px;}
.ycd{bottom:510.933150px;}
.y10f{bottom:513.228450px;}
.y65{bottom:513.970800px;}
.y8e{bottom:515.058300px;}
.y3b{bottom:520.533300px;}
.y27{bottom:526.683600px;}
.yb0{bottom:527.058300px;}
.y10e{bottom:528.228450px;}
.yf7{bottom:528.870300px;}
.ycc{bottom:530.433150px;}
.y64{bottom:530.470800px;}
.y8d{bottom:536.058300px;}
.y3a{bottom:538.533300px;}
.yaf{bottom:543.558300px;}
.yf6{bottom:546.870300px;}
.y63{bottom:546.970800px;}
.y26{bottom:548.433600px;}
.yed{bottom:549.933150px;}
.y8c{bottom:554.058300px;}
.y39{bottom:556.533300px;}
.yae{bottom:560.058300px;}
.y62{bottom:563.470800px;}
.yf5{bottom:564.870300px;}
.y1e{bottom:565.368750px;}
.ycb{bottom:569.433150px;}
.y25{bottom:570.183600px;}
.y8b{bottom:572.058300px;}
.yad{bottom:576.558300px;}
.y61{bottom:579.970800px;}
.yf4{bottom:582.870300px;}
.yec{bottom:588.933150px;}
.y1d{bottom:590.868750px;}
.y24{bottom:591.933600px;}
.y38{bottom:592.533300px;}
.yac{bottom:593.058300px;}
.yf3{bottom:600.870300px;}
.y60{bottom:600.970800px;}
.y8a{bottom:608.058300px;}
.yeb{bottom:608.433150px;}
.yab{bottom:609.558300px;}
.y37{bottom:610.533300px;}
.yef{bottom:612.933150px;}
.y23{bottom:613.683600px;}
.yf2{bottom:618.870300px;}
.y5f{bottom:618.970800px;}
.y89{bottom:624.558300px;}
.yaa{bottom:626.058300px;}
.y1c{bottom:626.564100px;}
.yca{bottom:627.933150px;}
.y36{bottom:628.533300px;}
.yee{bottom:630.933150px;}
.y22{bottom:635.433600px;}
.yf1{bottom:636.870300px;}
.y5e{bottom:636.970800px;}
.y88{bottom:641.058300px;}
.ya9{bottom:642.558300px;}
.yc9{bottom:647.433150px;}
.y1b{bottom:653.564100px;}
.yf0{bottom:654.870300px;}
.y5d{bottom:654.970800px;}
.y21{bottom:657.183600px;}
.y87{bottom:657.558300px;}
.ya8{bottom:659.058300px;}
.y35{bottom:664.533300px;}
.yea{bottom:666.933150px;}
.y86{bottom:674.058300px;}
.ya7{bottom:678.558300px;}
.y20{bottom:678.933600px;}
.y1a{bottom:685.064100px;}
.ye9{bottom:686.433150px;}
.y85{bottom:690.558300px;}
.y5c{bottom:690.970800px;}
.ya6{bottom:696.558300px;}
.ye8{bottom:705.933150px;}
.y5b{bottom:707.470800px;}
.y84{bottom:711.558300px;}
.ya5{bottom:714.558300px;}
.y1f{bottom:718.569600px;}
.y5a{bottom:723.970800px;}
.ye7{bottom:725.433150px;}
.yc8{bottom:729.033300px;}
.y83{bottom:729.558300px;}
.y59{bottom:740.470800px;}
.ye6{bottom:744.933150px;}
.y32{bottom:746.409150px;}
.y82{bottom:747.558300px;}
.ya4{bottom:750.558300px;}
.yc7{bottom:754.533300px;}
.y58{bottom:761.470800px;}
.ye5{bottom:764.433150px;}
.ya3{bottom:767.058300px;}
.y31{bottom:768.909150px;}
.y19{bottom:774.123600px;}
.y57{bottom:779.470800px;}
.yc6{bottom:780.033300px;}
.y81{bottom:783.558300px;}
.ye4{bottom:783.933150px;}
.y30{bottom:791.409150px;}
.y56{bottom:797.470800px;}
.y18{bottom:799.623600px;}
.y80{bottom:800.058300px;}
.ye3{bottom:803.433150px;}
.y34{bottom:805.533300px;}
.y10d{bottom:813.399900px;}
.y2f{bottom:813.909150px;}
.y55{bottom:815.470800px;}
.y7f{bottom:816.558300px;}
.yc5{bottom:846.604050px;}
.y17{bottom:848.835900px;}
.y7e{bottom:856.737450px;}
.y54{bottom:857.081850px;}
.y7c{bottom:872.206800px;}
.y52{bottom:873.864300px;}
.y16{bottom:880.139700px;}
.y7b{bottom:887.676150px;}
.y53{bottom:889.061700px;}
.h14{height:38.612571px;}
.h6{height:38.628000px;}
.h5{height:42.902857px;}
.h13{height:46.062000px;}
.h16{height:47.193143px;}
.h2{height:47.212000px;}
.h4{height:51.180000px;}
.h17{height:51.483429px;}
.hf{height:55.770000px;}
.h3{height:56.298000px;}
.hd{height:56.786133px;}
.h11{height:60.060000px;}
.h18{height:61.416000px;}
.h15{height:64.380000px;}
.he{height:66.534000px;}
.h12{height:68.672000px;}
.h10{height:71.652000px;}
.hc{height:76.770000px;}
.hb{height:87.006000px;}
.h9{height:92.124000px;}
.ha{height:102.360000px;}
.h7{height:137.344000px;}
.h8{height:171.680000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x13{left:-532.795200px;}
.x0{left:0.000000px;}
.x4{left:23.914950px;}
.x1{left:38.267700px;}
.x3{left:46.883250px;}
.x2{left:49.209600px;}
.x6{left:93.543300px;}
.xa{left:105.000000px;}
.x14{left:112.106850px;}
.x7{left:114.543300px;}
.x1e{left:118.125000px;}
.x1f{left:123.000000px;}
.xb{left:127.500000px;}
.x11{left:130.437900px;}
.x15{left:136.500000px;}
.xd{left:138.200850px;}
.x19{left:139.513650px;}
.x12{left:151.986450px;}
.x16{left:156.000000px;}
.xe{left:199.992450px;}
.x1a{left:207.119550px;}
.x1b{left:208.872900px;}
.x10{left:267.682350px;}
.xc{left:269.645850px;}
.x20{left:327.897600px;}
.x21{left:341.397600px;}
.x22{left:345.897600px;}
.x1c{left:381.657450px;}
.x5{left:386.760900px;}
.x1d{left:392.333250px;}
.xf{left:439.389150px;}
.x9{left:453.091950px;}
.x17{left:513.295200px;}
.x18{left:515.583150px;}
.x8{left:523.045200px;}
@media print{
.v1{vertical-align:-2.665600pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.174933pt;}
.ls2{letter-spacing:-1.632000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.346667pt;}
.ls4{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.816000pt;}
.lsf{letter-spacing:1.032000pt;}
.ls8{letter-spacing:346.013333pt;}
.ls5{letter-spacing:422.576533pt;}
.lsa{letter-spacing:844.328533pt;}
.ws11{word-spacing:-20.906667pt;}
.ws1a{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.373333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.066667pt;}
.wsac{word-spacing:-13.032000pt;}
.wsaa{word-spacing:-12.816000pt;}
.wsad{word-spacing:-12.336000pt;}
.ws2{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.000000pt;}
.wsab{word-spacing:-11.520000pt;}
.ws92{word-spacing:-4.544000pt;}
.ws20{word-spacing:-3.136000pt;}
.ws1e{word-spacing:-3.008000pt;}
.ws3d{word-spacing:-2.944000pt;}
.ws73{word-spacing:-2.880000pt;}
.ws33{word-spacing:-2.752000pt;}
.ws19{word-spacing:-2.560000pt;}
.ws35{word-spacing:-2.496000pt;}
.ws6c{word-spacing:-2.432000pt;}
.ws3c{word-spacing:-2.368000pt;}
.ws84{word-spacing:-2.304000pt;}
.ws74{word-spacing:-2.240000pt;}
.ws91{word-spacing:-2.176000pt;}
.ws32{word-spacing:-2.112000pt;}
.ws28{word-spacing:-2.048000pt;}
.wsb3{word-spacing:-1.968000pt;}
.ws70{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.856000pt;}
.ws8b{word-spacing:-1.792000pt;}
.ws56{word-spacing:-1.728000pt;}
.ws39{word-spacing:-1.664000pt;}
.ws50{word-spacing:-1.600000pt;}
.ws67{word-spacing:-1.536000pt;}
.ws81{word-spacing:-1.472000pt;}
.wsc3{word-spacing:-1.440000pt;}
.ws7a{word-spacing:-1.408000pt;}
.wsca{word-spacing:-1.392000pt;}
.wse{word-spacing:-1.386667pt;}
.ws4f{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.280000pt;}
.ws85{word-spacing:-1.152000pt;}
.wsb4{word-spacing:-1.104000pt;}
.ws55{word-spacing:-1.088000pt;}
.ws8a{word-spacing:-1.024000pt;}
.ws80{word-spacing:-0.960000pt;}
.ws9e{word-spacing:-0.832000pt;}
.ws98{word-spacing:-0.768000pt;}
.ws8d{word-spacing:-0.704000pt;}
.ws86{word-spacing:-0.640000pt;}
.wsb1{word-spacing:-0.576000pt;}
.ws45{word-spacing:-0.512000pt;}
.wsbb{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.448000pt;}
.ws4d{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.256000pt;}
.wsc8{word-spacing:-0.240000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.128000pt;}
.ws87{word-spacing:-0.064000pt;}
.ws65{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.064000pt;}
.wsd{word-spacing:0.069333pt;}
.ws7b{word-spacing:0.192000pt;}
.wsa8{word-spacing:0.256000pt;}
.ws97{word-spacing:0.288000pt;}
.ws13{word-spacing:0.293333pt;}
.wsa6{word-spacing:0.320000pt;}
.ws3b{word-spacing:0.384000pt;}
.ws10{word-spacing:0.416000pt;}
.ws99{word-spacing:0.448000pt;}
.wsb8{word-spacing:0.480000pt;}
.wsc7{word-spacing:0.576000pt;}
.ws47{word-spacing:0.640000pt;}
.ws52{word-spacing:0.704000pt;}
.ws41{word-spacing:0.832000pt;}
.ws79{word-spacing:0.896000pt;}
.wsae{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.024000pt;}
.ws93{word-spacing:1.088000pt;}
.ws54{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.216000pt;}
.ws8{word-spacing:1.248000pt;}
.ws61{word-spacing:1.344000pt;}
.ws63{word-spacing:1.408000pt;}
.ws9f{word-spacing:1.536000pt;}
.ws78{word-spacing:1.600000pt;}
.ws5{word-spacing:1.632000pt;}
.wsc{word-spacing:1.664000pt;}
.wsc6{word-spacing:1.776000pt;}
.ws26{word-spacing:1.856000pt;}
.ws5d{word-spacing:1.920000pt;}
.ws64{word-spacing:2.048000pt;}
.wsb7{word-spacing:2.064000pt;}
.ws44{word-spacing:2.176000pt;}
.ws5c{word-spacing:2.240000pt;}
.ws2b{word-spacing:2.368000pt;}
.ws40{word-spacing:2.432000pt;}
.ws77{word-spacing:2.496000pt;}
.ws8c{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.624000pt;}
.ws4b{word-spacing:2.688000pt;}
.ws58{word-spacing:2.752000pt;}
.wsa3{word-spacing:2.816000pt;}
.ws7f{word-spacing:2.880000pt;}
.ws22{word-spacing:3.072000pt;}
.ws5a{word-spacing:3.200000pt;}
.ws48{word-spacing:3.328000pt;}
.ws1f{word-spacing:3.456000pt;}
.ws82{word-spacing:3.584000pt;}
.wsb6{word-spacing:3.696000pt;}
.ws2c{word-spacing:3.776000pt;}
.ws9c{word-spacing:3.840000pt;}
.ws66{word-spacing:3.904000pt;}
.ws21{word-spacing:3.968000pt;}
.ws42{word-spacing:4.032000pt;}
.wsbe{word-spacing:4.080000pt;}
.wsa5{word-spacing:4.096000pt;}
.ws6a{word-spacing:4.160000pt;}
.ws4c{word-spacing:4.224000pt;}
.ws94{word-spacing:4.352000pt;}
.ws2d{word-spacing:4.416000pt;}
.wsa4{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.544000pt;}
.wsc2{word-spacing:4.560000pt;}
.ws25{word-spacing:4.608000pt;}
.wsc5{word-spacing:4.656000pt;}
.ws89{word-spacing:4.672000pt;}
.ws2e{word-spacing:4.736000pt;}
.ws90{word-spacing:4.864000pt;}
.ws57{word-spacing:4.928000pt;}
.ws34{word-spacing:4.992000pt;}
.ws24{word-spacing:5.056000pt;}
.ws36{word-spacing:5.120000pt;}
.ws59{word-spacing:5.632000pt;}
.wsc1{word-spacing:5.664000pt;}
.ws9{word-spacing:5.685333pt;}
.ws8e{word-spacing:5.696000pt;}
.wsa0{word-spacing:5.824000pt;}
.ws71{word-spacing:5.888000pt;}
.ws4e{word-spacing:5.952000pt;}
.ws9b{word-spacing:6.016000pt;}
.ws6{word-spacing:6.032000pt;}
.ws72{word-spacing:6.080000pt;}
.ws53{word-spacing:6.144000pt;}
.ws37{word-spacing:6.208000pt;}
.ws60{word-spacing:6.336000pt;}
.ws8f{word-spacing:6.400000pt;}
.ws43{word-spacing:6.464000pt;}
.ws1d{word-spacing:6.528000pt;}
.wsb5{word-spacing:6.576000pt;}
.ws30{word-spacing:6.592000pt;}
.ws49{word-spacing:6.656000pt;}
.ws4a{word-spacing:6.784000pt;}
.ws51{word-spacing:6.848000pt;}
.ws88{word-spacing:6.912000pt;}
.ws83{word-spacing:6.976000pt;}
.ws1c{word-spacing:7.104000pt;}
.wsbd{word-spacing:7.152000pt;}
.wsa7{word-spacing:7.232000pt;}
.ws5e{word-spacing:7.296000pt;}
.wsb0{word-spacing:7.360000pt;}
.ws75{word-spacing:7.488000pt;}
.ws5b{word-spacing:7.552000pt;}
.ws38{word-spacing:7.616000pt;}
.ws95{word-spacing:7.744000pt;}
.ws6b{word-spacing:7.936000pt;}
.ws2f{word-spacing:8.192000pt;}
.ws3e{word-spacing:8.256000pt;}
.ws6d{word-spacing:8.384000pt;}
.wsba{word-spacing:8.400000pt;}
.wsb2{word-spacing:8.576000pt;}
.ws68{word-spacing:8.832000pt;}
.wsa9{word-spacing:9.088000pt;}
.wsa1{word-spacing:9.152000pt;}
.ws9a{word-spacing:9.344000pt;}
.ws27{word-spacing:9.472000pt;}
.ws6f{word-spacing:9.600000pt;}
.wsbc{word-spacing:9.744000pt;}
.ws3a{word-spacing:9.792000pt;}
.wsbf{word-spacing:9.888000pt;}
.ws7c{word-spacing:9.920000pt;}
.wsf{word-spacing:10.053333pt;}
.ws7d{word-spacing:10.432000pt;}
.ws69{word-spacing:10.624000pt;}
.wsb9{word-spacing:10.944000pt;}
.wsc4{word-spacing:11.136000pt;}
.wsc0{word-spacing:12.336000pt;}
.ws7{word-spacing:12.618667pt;}
.ws15{word-spacing:13.333333pt;}
.wsc9{word-spacing:13.824000pt;}
.ws1b{word-spacing:16.000000pt;}
.wsaf{word-spacing:16.128000pt;}
.wsa{word-spacing:16.570667pt;}
.wsb{word-spacing:16.917333pt;}
.ws7e{word-spacing:29.056000pt;}
.ws31{word-spacing:294.013333pt;}
.ws3{word-spacing:491.253867pt;}
.ws18{word-spacing:1155.626667pt;}
.ws16{word-spacing:1166.400000pt;}
._44{margin-left:-21.674667pt;}
._43{margin-left:-20.539733pt;}
._3{margin-left:-7.338133pt;}
._45{margin-left:-6.208000pt;}
._2{margin-left:-5.178667pt;}
._7{margin-left:-3.652267pt;}
._0{margin-left:-2.346667pt;}
._1{margin-left:-1.413867pt;}
._6{width:1.536000pt;}
._5{width:3.360000pt;}
._31{width:8.053333pt;}
._4{width:40.000000pt;}
._2c{width:48.453867pt;}
._18{width:56.800000pt;}
._1d{width:97.973333pt;}
._c{width:108.001067pt;}
._2d{width:110.533867pt;}
._3e{width:116.493867pt;}
._1f{width:123.040000pt;}
._1e{width:126.989867pt;}
._20{width:135.104000pt;}
._1b{width:155.837333pt;}
._1c{width:179.944000pt;}
._a{width:265.493333pt;}
._25{width:287.232533pt;}
._14{width:319.840000pt;}
._41{width:346.961600pt;}
._2e{width:351.173867pt;}
._30{width:366.613333pt;}
._3f{width:382.293333pt;}
._37{width:385.307200pt;}
._2b{width:446.613333pt;}
._1a{width:490.827733pt;}
._3c{width:533.733867pt;}
._2a{width:546.427200pt;}
._e{width:555.921600pt;}
._29{width:572.080533pt;}
._8{width:606.241067pt;}
._27{width:673.573867pt;}
._39{width:676.558933pt;}
._36{width:683.573333pt;}
._19{width:690.747733pt;}
._3d{width:697.920000pt;}
._16{width:699.441067pt;}
._3a{width:703.253333pt;}
._b{width:733.546667pt;}
._40{width:745.333333pt;}
._9{width:774.293867pt;}
._12{width:779.680000pt;}
._33{width:788.507200pt;}
._10{width:789.440000pt;}
._15{width:816.960000pt;}
._24{width:820.507200pt;}
._3b{width:822.666667pt;}
._13{width:829.414933pt;}
._d{width:847.173867pt;}
._38{width:878.986667pt;}
._28{width:881.628267pt;}
._11{width:883.413333pt;}
._32{width:947.946667pt;}
._34{width:949.494400pt;}
._2f{width:954.640533pt;}
._23{width:979.946667pt;}
._21{width:994.160533pt;}
._42{width:1002.560000pt;}
._f{width:1013.307200pt;}
._26{width:1020.480000pt;}
._22{width:1034.560000pt;}
._35{width:1055.093333pt;}
._17{width:1199.306667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fsb{font-size:85.333333pt;}
.fs7{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs3{font-size:170.666667pt;}
.fs5{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:30.632000pt;}
.y50{bottom:47.478400pt;}
.y7a{bottom:48.435333pt;}
.y33{bottom:48.996133pt;}
.y7d{bottom:51.730933pt;}
.y14{bottom:72.327467pt;}
.y13{bottom:88.327467pt;}
.y10c{bottom:90.162667pt;}
.ye2{bottom:90.162800pt;}
.y79{bottom:95.529600pt;}
.y127{bottom:97.048133pt;}
.y4f{bottom:97.362933pt;}
.ya2{bottom:99.162933pt;}
.y10b{bottom:107.496000pt;}
.ye1{bottom:107.496133pt;}
.y78{bottom:110.196267pt;}
.y126{bottom:110.381467pt;}
.yc4{bottom:112.496267pt;}
.y12{bottom:114.553200pt;}
.ya1{bottom:115.162933pt;}
.y4e{bottom:116.029600pt;}
.y125{bottom:123.714800pt;}
.y10a{bottom:124.829333pt;}
.ye0{bottom:124.829467pt;}
.y77{bottom:124.862933pt;}
.yc3{bottom:127.162933pt;}
.y11{bottom:130.553200pt;}
.y4d{bottom:130.696267pt;}
.ya0{bottom:131.162933pt;}
.y124{bottom:137.048133pt;}
.y76{bottom:139.529600pt;}
.yc2{bottom:141.829600pt;}
.y109{bottom:142.162667pt;}
.ydf{bottom:142.162800pt;}
.y10{bottom:146.553200pt;}
.y4c{bottom:146.696267pt;}
.y9f{bottom:147.162933pt;}
.y123{bottom:150.381467pt;}
.y75{bottom:154.196267pt;}
.yc1{bottom:156.496267pt;}
.y108{bottom:159.496000pt;}
.yde{bottom:159.496133pt;}
.yf{bottom:162.553200pt;}
.y122{bottom:163.714800pt;}
.y74{bottom:172.862933pt;}
.yc0{bottom:173.829600pt;}
.y107{bottom:176.829333pt;}
.ydd{bottom:176.829467pt;}
.y121{bottom:177.048133pt;}
.ye{bottom:178.553200pt;}
.y4b{bottom:178.696267pt;}
.y9e{bottom:179.162933pt;}
.y73{bottom:188.862933pt;}
.ybf{bottom:189.829600pt;}
.y120{bottom:190.381467pt;}
.y4a{bottom:193.362933pt;}
.y9d{bottom:193.829600pt;}
.y106{bottom:194.162667pt;}
.ydc{bottom:194.162800pt;}
.yd{bottom:194.553200pt;}
.y11f{bottom:203.714800pt;}
.y72{bottom:204.862933pt;}
.ybe{bottom:205.829600pt;}
.y49{bottom:208.029600pt;}
.y9c{bottom:208.496267pt;}
.yc{bottom:210.553200pt;}
.y105{bottom:211.496000pt;}
.ydb{bottom:211.496133pt;}
.y11e{bottom:217.048133pt;}
.ybd{bottom:221.829600pt;}
.y48{bottom:222.696267pt;}
.y9b{bottom:223.162933pt;}
.yb{bottom:226.553200pt;}
.yda{bottom:228.829467pt;}
.y11d{bottom:230.381467pt;}
.y71{bottom:236.862933pt;}
.y47{bottom:237.362933pt;}
.y9a{bottom:237.829600pt;}
.ya{bottom:242.553200pt;}
.y11c{bottom:243.714800pt;}
.yd9{bottom:246.162800pt;}
.y104{bottom:247.440267pt;}
.y70{bottom:251.529600pt;}
.y99{bottom:252.496267pt;}
.y46{bottom:256.029600pt;}
.y11b{bottom:257.048133pt;}
.y9{bottom:258.553200pt;}
.y103{bottom:263.440267pt;}
.yd8{bottom:263.496133pt;}
.y6f{bottom:266.196267pt;}
.y98{bottom:267.162933pt;}
.ybc{bottom:269.829600pt;}
.y11a{bottom:270.381467pt;}
.y45{bottom:272.029600pt;}
.y8{bottom:274.553200pt;}
.y102{bottom:279.440267pt;}
.yd7{bottom:280.829467pt;}
.y6e{bottom:280.862933pt;}
.y119{bottom:283.714800pt;}
.ybb{bottom:284.496267pt;}
.y97{bottom:285.829600pt;}
.y44{bottom:288.029600pt;}
.y101{bottom:295.440267pt;}
.y6d{bottom:295.529600pt;}
.y118{bottom:297.048133pt;}
.yd6{bottom:298.162800pt;}
.yba{bottom:299.162933pt;}
.y7{bottom:300.778933pt;}
.y96{bottom:301.829600pt;}
.y43{bottom:304.029600pt;}
.y117{bottom:310.381467pt;}
.y100{bottom:311.440267pt;}
.yb9{bottom:313.829600pt;}
.y6c{bottom:314.196267pt;}
.yd5{bottom:315.496133pt;}
.y6{bottom:316.778933pt;}
.y95{bottom:317.829600pt;}
.y116{bottom:323.714800pt;}
.yff{bottom:327.440267pt;}
.yb8{bottom:328.496267pt;}
.y6b{bottom:330.196267pt;}
.yd4{bottom:332.829467pt;}
.y2e{bottom:332.829867pt;}
.y42{bottom:336.029600pt;}
.y115{bottom:337.048133pt;}
.y5{bottom:343.004667pt;}
.yfe{bottom:343.440267pt;}
.yb7{bottom:345.829600pt;}
.y6a{bottom:346.196267pt;}
.y94{bottom:349.829600pt;}
.yd3{bottom:350.162800pt;}
.y114{bottom:350.381467pt;}
.y41{bottom:352.029600pt;}
.y2d{bottom:352.163200pt;}
.y4{bottom:359.004667pt;}
.yfd{bottom:359.440267pt;}
.yb6{bottom:361.829600pt;}
.y113{bottom:363.714800pt;}
.y93{bottom:365.829600pt;}
.yd2{bottom:367.496133pt;}
.y40{bottom:368.029600pt;}
.y2c{bottom:371.496533pt;}
.y3{bottom:375.004667pt;}
.y112{bottom:377.048133pt;}
.yb5{bottom:377.829600pt;}
.y69{bottom:378.196267pt;}
.yfc{bottom:380.773600pt;}
.y92{bottom:381.829600pt;}
.yd1{bottom:384.829467pt;}
.y111{bottom:390.381467pt;}
.y2b{bottom:390.829867pt;}
.y2{bottom:391.004667pt;}
.y68{bottom:394.196267pt;}
.y3f{bottom:400.029600pt;}
.yd0{bottom:402.162800pt;}
.y110{bottom:403.714800pt;}
.yfb{bottom:406.106933pt;}
.y1{bottom:407.004667pt;}
.yb4{bottom:409.829600pt;}
.y2a{bottom:410.163200pt;}
.y67{bottom:410.196267pt;}
.y91{bottom:413.829600pt;}
.y3e{bottom:414.696267pt;}
.ycf{bottom:419.496133pt;}
.yfa{bottom:422.106933pt;}
.yb3{bottom:424.496267pt;}
.y90{bottom:428.496267pt;}
.y3d{bottom:429.362933pt;}
.y29{bottom:429.496533pt;}
.yce{bottom:436.829467pt;}
.yf9{bottom:438.106933pt;}
.yb2{bottom:439.162933pt;}
.y66{bottom:442.196267pt;}
.y8f{bottom:443.162933pt;}
.y3c{bottom:444.029600pt;}
.y15{bottom:444.941333pt;}
.y28{bottom:448.829867pt;}
.yb1{bottom:453.829600pt;}
.yf8{bottom:454.106933pt;}
.ycd{bottom:454.162800pt;}
.y10f{bottom:456.203067pt;}
.y65{bottom:456.862933pt;}
.y8e{bottom:457.829600pt;}
.y3b{bottom:462.696267pt;}
.y27{bottom:468.163200pt;}
.yb0{bottom:468.496267pt;}
.y10e{bottom:469.536400pt;}
.yf7{bottom:470.106933pt;}
.ycc{bottom:471.496133pt;}
.y64{bottom:471.529600pt;}
.y8d{bottom:476.496267pt;}
.y3a{bottom:478.696267pt;}
.yaf{bottom:483.162933pt;}
.yf6{bottom:486.106933pt;}
.y63{bottom:486.196267pt;}
.y26{bottom:487.496533pt;}
.yed{bottom:488.829467pt;}
.y8c{bottom:492.496267pt;}
.y39{bottom:494.696267pt;}
.yae{bottom:497.829600pt;}
.y62{bottom:500.862933pt;}
.yf5{bottom:502.106933pt;}
.y1e{bottom:502.550000pt;}
.ycb{bottom:506.162800pt;}
.y25{bottom:506.829867pt;}
.y8b{bottom:508.496267pt;}
.yad{bottom:512.496267pt;}
.y61{bottom:515.529600pt;}
.yf4{bottom:518.106933pt;}
.yec{bottom:523.496133pt;}
.y1d{bottom:525.216667pt;}
.y24{bottom:526.163200pt;}
.y38{bottom:526.696267pt;}
.yac{bottom:527.162933pt;}
.yf3{bottom:534.106933pt;}
.y60{bottom:534.196267pt;}
.y8a{bottom:540.496267pt;}
.yeb{bottom:540.829467pt;}
.yab{bottom:541.829600pt;}
.y37{bottom:542.696267pt;}
.yef{bottom:544.829467pt;}
.y23{bottom:545.496533pt;}
.yf2{bottom:550.106933pt;}
.y5f{bottom:550.196267pt;}
.y89{bottom:555.162933pt;}
.yaa{bottom:556.496267pt;}
.y1c{bottom:556.945867pt;}
.yca{bottom:558.162800pt;}
.y36{bottom:558.696267pt;}
.yee{bottom:560.829467pt;}
.y22{bottom:564.829867pt;}
.yf1{bottom:566.106933pt;}
.y5e{bottom:566.196267pt;}
.y88{bottom:569.829600pt;}
.ya9{bottom:571.162933pt;}
.yc9{bottom:575.496133pt;}
.y1b{bottom:580.945867pt;}
.yf0{bottom:582.106933pt;}
.y5d{bottom:582.196267pt;}
.y21{bottom:584.163200pt;}
.y87{bottom:584.496267pt;}
.ya8{bottom:585.829600pt;}
.y35{bottom:590.696267pt;}
.yea{bottom:592.829467pt;}
.y86{bottom:599.162933pt;}
.ya7{bottom:603.162933pt;}
.y20{bottom:603.496533pt;}
.y1a{bottom:608.945867pt;}
.ye9{bottom:610.162800pt;}
.y85{bottom:613.829600pt;}
.y5c{bottom:614.196267pt;}
.ya6{bottom:619.162933pt;}
.ye8{bottom:627.496133pt;}
.y5b{bottom:628.862933pt;}
.y84{bottom:632.496267pt;}
.ya5{bottom:635.162933pt;}
.y1f{bottom:638.728533pt;}
.y5a{bottom:643.529600pt;}
.ye7{bottom:644.829467pt;}
.yc8{bottom:648.029600pt;}
.y83{bottom:648.496267pt;}
.y59{bottom:658.196267pt;}
.ye6{bottom:662.162800pt;}
.y32{bottom:663.474800pt;}
.y82{bottom:664.496267pt;}
.ya4{bottom:667.162933pt;}
.yc7{bottom:670.696267pt;}
.y58{bottom:676.862933pt;}
.ye5{bottom:679.496133pt;}
.ya3{bottom:681.829600pt;}
.y31{bottom:683.474800pt;}
.y19{bottom:688.109867pt;}
.y57{bottom:692.862933pt;}
.yc6{bottom:693.362933pt;}
.y81{bottom:696.496267pt;}
.ye4{bottom:696.829467pt;}
.y30{bottom:703.474800pt;}
.y56{bottom:708.862933pt;}
.y18{bottom:710.776533pt;}
.y80{bottom:711.162933pt;}
.ye3{bottom:714.162800pt;}
.y34{bottom:716.029600pt;}
.y10d{bottom:723.022133pt;}
.y2f{bottom:723.474800pt;}
.y55{bottom:724.862933pt;}
.y7f{bottom:725.829600pt;}
.yc5{bottom:752.536933pt;}
.y17{bottom:754.520800pt;}
.y7e{bottom:761.544400pt;}
.y54{bottom:761.850533pt;}
.y7c{bottom:775.294933pt;}
.y52{bottom:776.768267pt;}
.y16{bottom:782.346400pt;}
.y7b{bottom:789.045467pt;}
.y53{bottom:790.277067pt;}
.h14{height:34.322286pt;}
.h6{height:34.336000pt;}
.h5{height:38.135873pt;}
.h13{height:40.944000pt;}
.h16{height:41.949460pt;}
.h2{height:41.966222pt;}
.h4{height:45.493333pt;}
.h17{height:45.763048pt;}
.hf{height:49.573333pt;}
.h3{height:50.042667pt;}
.hd{height:50.476562pt;}
.h11{height:53.386667pt;}
.h18{height:54.592000pt;}
.h15{height:57.226667pt;}
.he{height:59.141333pt;}
.h12{height:61.041778pt;}
.h10{height:63.690667pt;}
.hc{height:68.240000pt;}
.hb{height:77.338667pt;}
.h9{height:81.888000pt;}
.ha{height:90.986667pt;}
.h7{height:122.083556pt;}
.h8{height:152.604444pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x13{left:-473.595733pt;}
.x0{left:0.000000pt;}
.x4{left:21.257733pt;}
.x1{left:34.015733pt;}
.x3{left:41.674000pt;}
.x2{left:43.741867pt;}
.x6{left:83.149600pt;}
.xa{left:93.333333pt;}
.x14{left:99.650533pt;}
.x7{left:101.816267pt;}
.x1e{left:105.000000pt;}
.x1f{left:109.333333pt;}
.xb{left:113.333333pt;}
.x11{left:115.944800pt;}
.x15{left:121.333333pt;}
.xd{left:122.845200pt;}
.x19{left:124.012133pt;}
.x12{left:135.099067pt;}
.x16{left:138.666667pt;}
.xe{left:177.771067pt;}
.x1a{left:184.106267pt;}
.x1b{left:185.664800pt;}
.x10{left:237.939867pt;}
.xc{left:239.685200pt;}
.x20{left:291.464533pt;}
.x21{left:303.464533pt;}
.x22{left:307.464533pt;}
.x1c{left:339.251067pt;}
.x5{left:343.787467pt;}
.x1d{left:348.740667pt;}
.xf{left:390.568133pt;}
.x9{left:402.748400pt;}
.x17{left:456.262400pt;}
.x18{left:458.296133pt;}
.x8{left:464.929067pt;}
}

