
    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_5a6a029ce893f07e6da0f8ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_18869181cb14299a79df1a3a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_6d2f8bc3fa0d28da341fa8cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_f0189df5bd4b0720b52453b0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_567b85211abba89f9519a755.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_67922906d00c3098a6d642d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_58bd627a6fa189e05884a689.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b853628577dc7891fd38e6bd.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_63cb88524405d806a9830a7f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_386bfdcea664410df7920550.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_74a5a4c90ca768c50ef22e75.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_c45b704d89edab572613f45d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.945667;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:ffd;src:url('chunks/assets/font_605ac57c7d260a98ef74d1c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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:ffe;src:url('chunks/assets/font_07a02ad66b5b2310e12d3522.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_5a6a029ce893f07e6da0f8ba.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_b869e1931d812785014622f3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_db800b7923a46675a95d2679.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_5a6a029ce893f07e6da0f8ba.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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:ff13;src:url('chunks/assets/font_87bb7db12c909905283f2f58.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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:ff14;src:url('chunks/assets/font_07a02ad66b5b2310e12d3522.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_5a6a029ce893f07e6da0f8ba.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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:ff16;src:url('chunks/assets/font_b869e1931d812785014622f3.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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:ff17;src:url('chunks/assets/font_db800b7923a46675a95d2679.woff')format("woff");}.ff17{font-family:ff17;line-height:1.400000;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:ff18;src:url('chunks/assets/font_5a6a029ce893f07e6da0f8ba.woff')format("woff");}.ff18{font-family:ff18;line-height:1.400000;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;}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-20.979000px;}
.v1{vertical-align:-5.610000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.120000px;}
.v3{vertical-align:20.829000px;}
.v2{vertical-align:75.000000px;}
.lsb{letter-spacing:-1.140000px;}
.ls13{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-1.071000px;}
.ls3{letter-spacing:-0.806553px;}
.ls8{letter-spacing:-0.734580px;}
.ls7{letter-spacing:-0.630000px;}
.ls14{letter-spacing:-0.629640px;}
.ls11{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.367290px;}
.ls2{letter-spacing:-0.313659px;}
.ls12{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.268851px;}
.ls6{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020400px;}
.lsa{letter-spacing:0.022800px;}
.lsd{letter-spacing:0.183645px;}
.lsc{letter-spacing:0.315000px;}
.ls0{letter-spacing:13.734250px;}
.ls10{letter-spacing:510.132000px;}
.lsf{letter-spacing:780.528000px;}
.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;}
}
.ws18{word-spacing:-17.577000px;}
.ws63{word-spacing:-17.388000px;}
.ws1a{word-spacing:-16.506000px;}
.ws94{word-spacing:-16.065000px;}
.ws62{word-spacing:-15.750000px;}
.wsbb{word-spacing:-15.066000px;}
.ws0{word-spacing:-13.657631px;}
.ws1{word-spacing:-13.392000px;}
.ws93{word-spacing:-10.431036px;}
.ws2{word-spacing:-10.247391px;}
.ws3{word-spacing:-9.880101px;}
.ws19{word-spacing:-9.512811px;}
.wsbc{word-spacing:-8.153838px;}
.ws99{word-spacing:-4.788000px;}
.ws71{word-spacing:-4.347000px;}
.wsac{word-spacing:-3.465000px;}
.ws31{word-spacing:-3.339000px;}
.ws53{word-spacing:-3.276000px;}
.ws5d{word-spacing:-3.150000px;}
.ws6f{word-spacing:-3.087000px;}
.wscb{word-spacing:-2.970000px;}
.ws37{word-spacing:-2.961000px;}
.ws48{word-spacing:-2.898000px;}
.ws60{word-spacing:-2.772000px;}
.wsa7{word-spacing:-2.394000px;}
.ws46{word-spacing:-2.268000px;}
.ws7c{word-spacing:-2.205000px;}
.wsb6{word-spacing:-2.166000px;}
.wsa9{word-spacing:-1.953000px;}
.ws9a{word-spacing:-1.890000px;}
.ws4a{word-spacing:-1.827000px;}
.ws70{word-spacing:-1.764000px;}
.ws4c{word-spacing:-1.701000px;}
.ws3e{word-spacing:-1.575000px;}
.ws17{word-spacing:-1.512000px;}
.ws95{word-spacing:-1.449000px;}
.ws14{word-spacing:-1.386000px;}
.ws89{word-spacing:-1.260000px;}
.ws8a{word-spacing:-1.071000px;}
.wsad{word-spacing:-1.008000px;}
.ws1e{word-spacing:-0.945000px;}
.wsc3{word-spacing:-0.864000px;}
.ws76{word-spacing:-0.756000px;}
.ws83{word-spacing:-0.693000px;}
.ws32{word-spacing:-0.630000px;}
.ws5{word-spacing:-0.627318px;}
.ws13{word-spacing:-0.567000px;}
.ws50{word-spacing:-0.504000px;}
.ws3a{word-spacing:-0.441000px;}
.ws25{word-spacing:-0.315000px;}
.ws97{word-spacing:-0.252000px;}
.ws91{word-spacing:-0.171000px;}
.ws65{word-spacing:-0.084000px;}
.wsba{word-spacing:-0.072000px;}
.ws49{word-spacing:-0.063000px;}
.ws4{word-spacing:0.000000px;}
.wsd3{word-spacing:0.054000px;}
.ws2c{word-spacing:0.063000px;}
.ws1b{word-spacing:0.120000px;}
.wscc{word-spacing:0.270000px;}
.wsbd{word-spacing:0.300000px;}
.ws10{word-spacing:0.315000px;}
.ws8f{word-spacing:0.342000px;}
.wsb1{word-spacing:0.570000px;}
.ws28{word-spacing:0.630000px;}
.wsb8{word-spacing:0.684000px;}
.ws15{word-spacing:0.693000px;}
.ws51{word-spacing:0.756000px;}
.wsb4{word-spacing:0.798000px;}
.ws6{word-spacing:0.806553px;}
.wsd2{word-spacing:0.864000px;}
.ws5f{word-spacing:0.882000px;}
.ws11{word-spacing:0.945000px;}
.wsc2{word-spacing:1.080000px;}
.ws8d{word-spacing:1.140000px;}
.ws6a{word-spacing:1.197000px;}
.ws33{word-spacing:1.260000px;}
.ws54{word-spacing:1.449000px;}
.ws38{word-spacing:1.575000px;}
.ws66{word-spacing:1.638000px;}
.ws8e{word-spacing:1.710000px;}
.ws69{word-spacing:1.764000px;}
.ws75{word-spacing:2.079000px;}
.ws36{word-spacing:2.142000px;}
.wsaf{word-spacing:2.331000px;}
.ws82{word-spacing:2.394000px;}
.wsa8{word-spacing:2.457000px;}
.wsb7{word-spacing:2.508000px;}
.wsf{word-spacing:2.520000px;}
.ws47{word-spacing:2.583000px;}
.ws16{word-spacing:2.709000px;}
.ws27{word-spacing:2.835000px;}
.ws73{word-spacing:3.087000px;}
.ws5e{word-spacing:3.150000px;}
.wsb3{word-spacing:3.192000px;}
.ws55{word-spacing:3.213000px;}
.ws1d{word-spacing:3.402000px;}
.ws23{word-spacing:3.528000px;}
.ws4b{word-spacing:3.591000px;}
.ws9{word-spacing:3.654000px;}
.wsc{word-spacing:3.717000px;}
.wsc5{word-spacing:3.726000px;}
.ws39{word-spacing:3.780000px;}
.ws7b{word-spacing:3.843000px;}
.ws30{word-spacing:3.906000px;}
.ws92{word-spacing:3.933000px;}
.ws81{word-spacing:4.095000px;}
.ws2f{word-spacing:4.158000px;}
.ws90{word-spacing:4.161000px;}
.wsb2{word-spacing:4.218000px;}
.wsa{word-spacing:4.221000px;}
.ws35{word-spacing:4.347000px;}
.ws3f{word-spacing:4.536000px;}
.wsc7{word-spacing:4.590000px;}
.wsb5{word-spacing:4.674000px;}
.ws22{word-spacing:4.851000px;}
.ws1f{word-spacing:4.914000px;}
.ws7{word-spacing:5.040000px;}
.ws88{word-spacing:5.103000px;}
.ws9d{word-spacing:5.166000px;}
.wsb9{word-spacing:5.244000px;}
.wse{word-spacing:5.292000px;}
.ws12{word-spacing:5.355000px;}
.ws20{word-spacing:5.418000px;}
.ws9e{word-spacing:5.481000px;}
.wsc0{word-spacing:5.508000px;}
.ws6e{word-spacing:5.670000px;}
.wsd1{word-spacing:5.778000px;}
.ws87{word-spacing:5.796000px;}
.ws2d{word-spacing:5.985000px;}
.ws42{word-spacing:6.048000px;}
.ws9b{word-spacing:6.111000px;}
.ws9f{word-spacing:6.237000px;}
.wsd0{word-spacing:6.264000px;}
.ws77{word-spacing:6.300000px;}
.ws4f{word-spacing:6.426000px;}
.ws96{word-spacing:6.489000px;}
.ws3c{word-spacing:6.552000px;}
.ws85{word-spacing:6.615000px;}
.wsc6{word-spacing:6.696000px;}
.ws41{word-spacing:6.741000px;}
.ws34{word-spacing:6.804000px;}
.wscf{word-spacing:6.858000px;}
.ws61{word-spacing:6.993000px;}
.ws5a{word-spacing:7.308000px;}
.ws26{word-spacing:7.371000px;}
.wsaa{word-spacing:7.434000px;}
.ws5c{word-spacing:7.560000px;}
.wsb{word-spacing:7.623000px;}
.ws45{word-spacing:7.686000px;}
.ws2b{word-spacing:7.749000px;}
.ws80{word-spacing:7.875000px;}
.ws29{word-spacing:7.938000px;}
.ws84{word-spacing:8.001000px;}
.wsbf{word-spacing:8.046000px;}
.ws21{word-spacing:8.127000px;}
.ws44{word-spacing:8.190000px;}
.ws8b{word-spacing:8.253000px;}
.ws57{word-spacing:8.379000px;}
.ws5b{word-spacing:8.505000px;}
.wsc1{word-spacing:8.586000px;}
.ws2a{word-spacing:8.631000px;}
.ws7a{word-spacing:9.009000px;}
.ws2e{word-spacing:9.198000px;}
.ws58{word-spacing:9.324000px;}
.ws1c{word-spacing:9.576000px;}
.ws8{word-spacing:9.639000px;}
.ws86{word-spacing:9.954000px;}
.ws6c{word-spacing:10.143000px;}
.wsca{word-spacing:10.206000px;}
.wsce{word-spacing:10.314000px;}
.ws6d{word-spacing:10.395000px;}
.ws40{word-spacing:10.773000px;}
.ws68{word-spacing:10.836000px;}
.wsa2{word-spacing:11.151000px;}
.wsc4{word-spacing:11.394000px;}
.wsa5{word-spacing:11.592000px;}
.wsa6{word-spacing:11.718000px;}
.ws6b{word-spacing:11.844000px;}
.wsb0{word-spacing:11.907000px;}
.wsc8{word-spacing:11.988000px;}
.wsa1{word-spacing:12.726000px;}
.ws8c{word-spacing:12.789000px;}
.wsd{word-spacing:13.419000px;}
.ws24{word-spacing:14.049000px;}
.ws72{word-spacing:14.112000px;}
.ws52{word-spacing:14.238000px;}
.ws3b{word-spacing:14.364000px;}
.wscd{word-spacing:14.472000px;}
.wsa3{word-spacing:14.868000px;}
.ws3d{word-spacing:15.120000px;}
.wsa0{word-spacing:15.687000px;}
.ws4d{word-spacing:15.876000px;}
.ws7e{word-spacing:16.065000px;}
.ws9c{word-spacing:17.325000px;}
.ws56{word-spacing:17.955000px;}
.wsbe{word-spacing:18.792000px;}
.ws67{word-spacing:19.089000px;}
.ws4e{word-spacing:20.160000px;}
.ws59{word-spacing:20.853000px;}
.ws7f{word-spacing:21.546000px;}
.wsc9{word-spacing:21.924000px;}
.ws78{word-spacing:22.176000px;}
.wsab{word-spacing:24.885000px;}
.wsa4{word-spacing:25.200000px;}
.ws7d{word-spacing:27.909000px;}
.ws43{word-spacing:28.287000px;}
.ws98{word-spacing:28.539000px;}
.ws74{word-spacing:30.996000px;}
.ws79{word-spacing:33.012000px;}
.wsae{word-spacing:34.272000px;}
.ws64{word-spacing:808.500000px;}
._14{margin-left:-890.316000px;}
._10{margin-left:-812.112000px;}
._7{margin-left:-8.888400px;}
._8{margin-left:-6.878264px;}
._5{margin-left:-5.764800px;}
._16{margin-left:-4.590000px;}
._0{margin-left:-3.520800px;}
._1{margin-left:-2.327400px;}
._3{margin-left:-1.317368px;}
._4{width:1.236715px;}
._e{width:2.372168px;}
._9{width:3.691800px;}
._6{width:5.191200px;}
._11{width:6.277268px;}
._f{width:7.335326px;}
._15{width:8.337368px;}
._b{width:9.404564px;}
._a{width:10.527968px;}
._13{width:11.804632px;}
._12{width:13.348800px;}
._d{width:19.303200px;}
._c{width:21.183300px;}
._17{width:22.260600px;}
._2{width:1685.630400px;}
.fc1{color:rgb(29,113,184);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.482000px;}
.fs8{font-size:36.729000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:53.770200px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.731800px;}
.fs7{font-size:63.000000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:79.050600px;}
.fsd{font-size:84.000000px;}
.fs9{font-size:156.000000px;}
.fs6{font-size:171.695400px;}
.fsb{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:49.754550px;}
.y1{bottom:51.157050px;}
.y119{bottom:105.289200px;}
.yf4{bottom:105.316200px;}
.y5d{bottom:105.331050px;}
.ya2{bottom:105.353700px;}
.yd1{bottom:105.383700px;}
.y90{bottom:105.428550px;}
.y7{bottom:105.645450px;}
.y8{bottom:116.312100px;}
.y6{bottom:119.145450px;}
.y118{bottom:124.042200px;}
.yf3{bottom:124.058700px;}
.y5c{bottom:124.073550px;}
.ya1{bottom:124.096200px;}
.yd0{bottom:124.126200px;}
.y8f{bottom:124.171050px;}
.y5{bottom:132.645450px;}
.y117{bottom:142.795200px;}
.y5b{bottom:142.816050px;}
.yf2{bottom:142.823700px;}
.ya0{bottom:142.838700px;}
.ycf{bottom:142.868700px;}
.y8e{bottom:142.913550px;}
.y116{bottom:161.548200px;}
.y5a{bottom:161.558550px;}
.yf1{bottom:161.566200px;}
.y9f{bottom:161.581200px;}
.yce{bottom:161.611200px;}
.y8d{bottom:161.656050px;}
.y115{bottom:180.301200px;}
.yf0{bottom:180.308700px;}
.y59{bottom:180.323550px;}
.y9e{bottom:180.323700px;}
.ycd{bottom:180.353700px;}
.y8c{bottom:180.398550px;}
.y58{bottom:199.066050px;}
.y9d{bottom:199.066200px;}
.y22{bottom:199.088700px;}
.ycc{bottom:199.096200px;}
.yef{bottom:199.118700px;}
.y8b{bottom:199.141050px;}
.y11a{bottom:211.256550px;}
.y57{bottom:217.808550px;}
.y9c{bottom:217.808700px;}
.y21{bottom:217.831200px;}
.ycb{bottom:217.838700px;}
.yee{bottom:217.861200px;}
.y8a{bottom:217.883550px;}
.y56{bottom:236.573550px;}
.y20{bottom:236.573700px;}
.y9b{bottom:236.581200px;}
.yed{bottom:236.603700px;}
.y89{bottom:236.626050px;}
.y55{bottom:255.316050px;}
.y1f{bottom:255.316200px;}
.y9a{bottom:255.323700px;}
.yec{bottom:255.346200px;}
.y88{bottom:255.368550px;}
.y54{bottom:274.058550px;}
.y1e{bottom:274.058700px;}
.y99{bottom:274.066200px;}
.yeb{bottom:274.088700px;}
.y87{bottom:274.111050px;}
.y98{bottom:292.808700px;}
.yea{bottom:292.831200px;}
.y86{bottom:292.853550px;}
.y53{bottom:292.861050px;}
.y1d{bottom:292.898700px;}
.ye9{bottom:311.573700px;}
.y85{bottom:311.596050px;}
.y97{bottom:311.596200px;}
.y52{bottom:311.603550px;}
.y1c{bottom:311.641200px;}
.yca{bottom:311.686200px;}
.ye8{bottom:330.316200px;}
.y84{bottom:330.338550px;}
.y96{bottom:330.338700px;}
.y51{bottom:330.346050px;}
.y1b{bottom:330.383700px;}
.yc9{bottom:330.428700px;}
.ye7{bottom:349.058700px;}
.y83{bottom:349.081050px;}
.y95{bottom:349.081200px;}
.y50{bottom:349.088550px;}
.y1a{bottom:349.126200px;}
.yc8{bottom:349.171200px;}
.y11d{bottom:353.384550px;}
.y82{bottom:367.823550px;}
.y94{bottom:367.823700px;}
.y4f{bottom:367.831050px;}
.y19{bottom:367.868700px;}
.ye6{bottom:367.891200px;}
.yc7{bottom:367.913700px;}
.y81{bottom:386.566050px;}
.y93{bottom:386.566200px;}
.y4e{bottom:386.573550px;}
.y18{bottom:386.611200px;}
.ye5{bottom:386.633700px;}
.yc6{bottom:386.656200px;}
.y11c{bottom:387.593550px;}
.y80{bottom:405.308550px;}
.y92{bottom:405.308700px;}
.y4d{bottom:405.316050px;}
.y17{bottom:405.353700px;}
.ye4{bottom:405.376200px;}
.yc5{bottom:405.398700px;}
.y91{bottom:424.051200px;}
.y4c{bottom:424.058550px;}
.y7f{bottom:424.066050px;}
.y16{bottom:424.096200px;}
.ye3{bottom:424.118700px;}
.yc4{bottom:424.141200px;}
.y15e{bottom:442.736700px;}
.y13d{bottom:442.790700px;}
.y7e{bottom:442.808550px;}
.y15{bottom:442.838700px;}
.ye2{bottom:442.861200px;}
.yc3{bottom:442.883700px;}
.y4b{bottom:443.018550px;}
.y15d{bottom:461.488200px;}
.y13c{bottom:461.542200px;}
.y14{bottom:461.581200px;}
.ye1{bottom:461.603700px;}
.yc2{bottom:461.626200px;}
.y7d{bottom:461.678550px;}
.y4a{bottom:461.761050px;}
.y15c{bottom:480.239700px;}
.yd7{bottom:480.286200px;}
.y13b{bottom:480.293700px;}
.y13{bottom:480.323700px;}
.ye0{bottom:480.346200px;}
.yc1{bottom:480.368700px;}
.y7c{bottom:480.421050px;}
.y49{bottom:480.503550px;}
.y15b{bottom:498.991200px;}
.yd6{bottom:499.039200px;}
.y13a{bottom:499.045200px;}
.y12{bottom:499.066200px;}
.ydf{bottom:499.088700px;}
.yc0{bottom:499.111200px;}
.y7b{bottom:499.163550px;}
.y48{bottom:499.246050px;}
.y15a{bottom:517.742700px;}
.yd5{bottom:517.792200px;}
.y139{bottom:517.796700px;}
.y11{bottom:517.808700px;}
.yde{bottom:517.831200px;}
.ybf{bottom:517.853700px;}
.y7a{bottom:517.906050px;}
.y47{bottom:517.988550px;}
.y159{bottom:536.494200px;}
.yd4{bottom:536.545200px;}
.y138{bottom:536.548200px;}
.y10{bottom:536.566200px;}
.ydd{bottom:536.573700px;}
.ybe{bottom:536.596200px;}
.y79{bottom:536.648550px;}
.y46{bottom:536.731050px;}
.y158{bottom:555.245700px;}
.yd3{bottom:555.298200px;}
.y137{bottom:555.299700px;}
.yf{bottom:555.308700px;}
.ydc{bottom:555.316200px;}
.ybd{bottom:555.338700px;}
.y78{bottom:555.391050px;}
.y45{bottom:555.473550px;}
.y11b{bottom:557.609550px;}
.y157{bottom:573.997200px;}
.y136{bottom:574.016700px;}
.yd2{bottom:574.051200px;}
.ydb{bottom:574.058700px;}
.ybc{bottom:574.081200px;}
.ye{bottom:574.088700px;}
.y77{bottom:574.133550px;}
.y44{bottom:574.216050px;}
.y156{bottom:592.748700px;}
.y135{bottom:592.768200px;}
.yda{bottom:592.801200px;}
.ybb{bottom:592.823700px;}
.yd{bottom:592.831200px;}
.y76{bottom:592.876050px;}
.y43{bottom:592.958550px;}
.y28{bottom:595.389000px;}
.yd8{bottom:605.272500px;}
.y155{bottom:611.500200px;}
.y134{bottom:611.519700px;}
.yba{bottom:611.566200px;}
.yc{bottom:611.573700px;}
.y75{bottom:611.618550px;}
.y42{bottom:611.701050px;}
.y10c{bottom:611.741700px;}
.y154{bottom:630.251700px;}
.y133{bottom:630.271200px;}
.yb9{bottom:630.308700px;}
.yb{bottom:630.316200px;}
.y74{bottom:630.361050px;}
.y41{bottom:630.443550px;}
.y10b{bottom:630.484200px;}
.y153{bottom:649.003200px;}
.y132{bottom:649.022700px;}
.y112{bottom:649.036200px;}
.y9{bottom:649.051200px;}
.ya{bottom:649.058700px;}
.yb8{bottom:649.073700px;}
.y73{bottom:649.103550px;}
.y40{bottom:649.186050px;}
.y10a{bottom:649.226700px;}
.y152{bottom:667.754700px;}
.y131{bottom:667.774200px;}
.y111{bottom:667.789200px;}
.yb7{bottom:667.816200px;}
.y72{bottom:667.846050px;}
.y3f{bottom:667.928550px;}
.y109{bottom:667.969200px;}
.y151{bottom:686.506200px;}
.y130{bottom:686.525700px;}
.y110{bottom:686.542200px;}
.yb6{bottom:686.558700px;}
.y71{bottom:686.588550px;}
.y3e{bottom:686.671050px;}
.y108{bottom:686.711700px;}
.y150{bottom:705.257700px;}
.y12f{bottom:705.277200px;}
.y10f{bottom:705.295200px;}
.y70{bottom:705.331050px;}
.y3d{bottom:705.413550px;}
.yb5{bottom:705.421200px;}
.y107{bottom:705.454200px;}
.y14f{bottom:724.009200px;}
.y12e{bottom:724.028700px;}
.y10e{bottom:724.048200px;}
.y6f{bottom:724.073550px;}
.y3c{bottom:724.156050px;}
.yb4{bottom:724.163700px;}
.y106{bottom:724.196700px;}
.y14e{bottom:742.760700px;}
.y12d{bottom:742.780200px;}
.y10d{bottom:742.801200px;}
.y6e{bottom:742.816050px;}
.y3b{bottom:742.898550px;}
.yb3{bottom:742.906200px;}
.y105{bottom:742.939200px;}
.y14d{bottom:761.512200px;}
.y12c{bottom:761.531700px;}
.y6d{bottom:761.558550px;}
.y3a{bottom:761.641050px;}
.yb2{bottom:761.648700px;}
.y104{bottom:761.681700px;}
.y113{bottom:773.863200px;}
.y14c{bottom:780.263700px;}
.y12b{bottom:780.283200px;}
.y39{bottom:780.383550px;}
.yb1{bottom:780.391200px;}
.y103{bottom:780.424200px;}
.y6c{bottom:780.439050px;}
.y27{bottom:793.058700px;}
.y14b{bottom:799.015200px;}
.y12a{bottom:799.034700px;}
.y38{bottom:799.126050px;}
.yb0{bottom:799.133700px;}
.y102{bottom:799.166700px;}
.y6b{bottom:799.181550px;}
.yd9{bottom:809.560500px;}
.y14a{bottom:817.766700px;}
.y129{bottom:817.786200px;}
.y37{bottom:817.868550px;}
.yaf{bottom:817.876200px;}
.y101{bottom:817.909200px;}
.y6a{bottom:817.924050px;}
.y26{bottom:820.188600px;}
.y149{bottom:836.518200px;}
.y128{bottom:836.537700px;}
.y36{bottom:836.611050px;}
.yae{bottom:836.618700px;}
.y100{bottom:836.651700px;}
.y69{bottom:836.666550px;}
.y25{bottom:841.188600px;}
.y148{bottom:855.269700px;}
.y127{bottom:855.289200px;}
.y35{bottom:855.353550px;}
.yad{bottom:855.361200px;}
.yff{bottom:855.394200px;}
.y68{bottom:855.409050px;}
.y147{bottom:874.021200px;}
.y126{bottom:874.040700px;}
.y34{bottom:874.096050px;}
.yac{bottom:874.103700px;}
.yfe{bottom:874.136700px;}
.y67{bottom:874.151550px;}
.y146{bottom:892.772700px;}
.y125{bottom:892.792200px;}
.y33{bottom:892.838550px;}
.yab{bottom:892.846200px;}
.yfd{bottom:892.879200px;}
.y66{bottom:892.894050px;}
.y114{bottom:903.727200px;}
.y24{bottom:911.086350px;}
.y145{bottom:911.524200px;}
.y124{bottom:911.543700px;}
.y32{bottom:911.581050px;}
.yaa{bottom:911.588700px;}
.yfc{bottom:911.621700px;}
.y65{bottom:911.636550px;}
.y144{bottom:930.275700px;}
.y123{bottom:930.295200px;}
.y31{bottom:930.323550px;}
.ya9{bottom:930.331200px;}
.yfb{bottom:930.364200px;}
.y64{bottom:930.379050px;}
.y143{bottom:949.027200px;}
.y122{bottom:949.046700px;}
.y30{bottom:949.066050px;}
.ya8{bottom:949.073700px;}
.yfa{bottom:949.106700px;}
.y63{bottom:949.121550px;}
.y23{bottom:950.086350px;}
.y142{bottom:967.778700px;}
.y121{bottom:967.798200px;}
.y2f{bottom:967.808550px;}
.ya7{bottom:967.816200px;}
.yf9{bottom:967.849200px;}
.y62{bottom:967.864050px;}
.y141{bottom:986.530200px;}
.y120{bottom:986.549700px;}
.y2e{bottom:986.558550px;}
.ya6{bottom:986.558700px;}
.yf8{bottom:986.591700px;}
.y61{bottom:986.606550px;}
.y140{bottom:1005.281700px;}
.y11f{bottom:1005.301200px;}
.y2d{bottom:1005.316050px;}
.yf7{bottom:1005.334200px;}
.y60{bottom:1005.349050px;}
.ya5{bottom:1005.371700px;}
.y13f{bottom:1024.033200px;}
.y2c{bottom:1024.058550px;}
.yf6{bottom:1024.076700px;}
.y5f{bottom:1024.091550px;}
.ya4{bottom:1024.114200px;}
.y13e{bottom:1042.784700px;}
.y2b{bottom:1042.801050px;}
.y11e{bottom:1042.801200px;}
.yf5{bottom:1042.819200px;}
.y5e{bottom:1042.834050px;}
.ya3{bottom:1042.856700px;}
.y4{bottom:1073.318250px;}
.y3{bottom:1089.818250px;}
.y2{bottom:1109.982150px;}
.y2a{bottom:1112.746800px;}
.hb{height:39.636000px;}
.h5{height:50.400000px;}
.ha{height:53.136000px;}
.h4{height:56.458710px;}
.he{height:56.700000px;}
.h13{height:56.838000px;}
.h2{height:57.390000px;}
.h6{height:57.550998px;}
.h10{height:58.968000px;}
.h11{height:59.724000px;}
.hf{height:59.850000px;}
.hd{height:63.000000px;}
.h3{height:65.868390px;}
.h8{height:66.150000px;}
.h12{height:75.600000px;}
.h7{height:141.150000px;}
.h9{height:163.800000px;}
.hc{height:409.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:90.657300px;}
.x14{left:93.355500px;}
.xb{left:97.532400px;}
.xd{left:106.299150px;}
.x5{left:132.874050px;}
.x7{left:219.772500px;}
.x9{left:222.525450px;}
.xa{left:243.787950px;}
.x8{left:247.930200px;}
.x15{left:282.145500px;}
.x16{left:301.696500px;}
.x17{left:382.677150px;}
.x18{left:390.993300px;}
.xe{left:461.329650px;}
.xf{left:482.595900px;}
.xc{left:521.962350px;}
.x12{left:539.995050px;}
.x13{left:561.253050px;}
.x2{left:622.937250px;}
.x11{left:632.496000px;}
.x3{left:655.199250px;}
.x19{left:664.392300px;}
.x1a{left:665.673300px;}
.x4{left:668.382450px;}
.x10{left:792.034200px;}
.x1b{left:793.129200px;}
@media print{
.v4{vertical-align:-18.648000pt;}
.v1{vertical-align:-4.986667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.106667pt;}
.v3{vertical-align:18.514667pt;}
.v2{vertical-align:66.666667pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.952000pt;}
.ls3{letter-spacing:-0.716936pt;}
.ls8{letter-spacing:-0.652960pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls14{letter-spacing:-0.559680pt;}
.ls11{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.326480pt;}
.ls2{letter-spacing:-0.278808pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.238979pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.018133pt;}
.lsa{letter-spacing:0.020267pt;}
.lsd{letter-spacing:0.163240pt;}
.lsc{letter-spacing:0.280000pt;}
.ls0{letter-spacing:12.208222pt;}
.ls10{letter-spacing:453.450667pt;}
.lsf{letter-spacing:693.802667pt;}
.ws18{word-spacing:-15.624000pt;}
.ws63{word-spacing:-15.456000pt;}
.ws1a{word-spacing:-14.672000pt;}
.ws94{word-spacing:-14.280000pt;}
.ws62{word-spacing:-14.000000pt;}
.wsbb{word-spacing:-13.392000pt;}
.ws0{word-spacing:-12.140116pt;}
.ws1{word-spacing:-11.904000pt;}
.ws93{word-spacing:-9.272032pt;}
.ws2{word-spacing:-9.108792pt;}
.ws3{word-spacing:-8.782312pt;}
.ws19{word-spacing:-8.455832pt;}
.wsbc{word-spacing:-7.247856pt;}
.ws99{word-spacing:-4.256000pt;}
.ws71{word-spacing:-3.864000pt;}
.wsac{word-spacing:-3.080000pt;}
.ws31{word-spacing:-2.968000pt;}
.ws53{word-spacing:-2.912000pt;}
.ws5d{word-spacing:-2.800000pt;}
.ws6f{word-spacing:-2.744000pt;}
.wscb{word-spacing:-2.640000pt;}
.ws37{word-spacing:-2.632000pt;}
.ws48{word-spacing:-2.576000pt;}
.ws60{word-spacing:-2.464000pt;}
.wsa7{word-spacing:-2.128000pt;}
.ws46{word-spacing:-2.016000pt;}
.ws7c{word-spacing:-1.960000pt;}
.wsb6{word-spacing:-1.925333pt;}
.wsa9{word-spacing:-1.736000pt;}
.ws9a{word-spacing:-1.680000pt;}
.ws4a{word-spacing:-1.624000pt;}
.ws70{word-spacing:-1.568000pt;}
.ws4c{word-spacing:-1.512000pt;}
.ws3e{word-spacing:-1.400000pt;}
.ws17{word-spacing:-1.344000pt;}
.ws95{word-spacing:-1.288000pt;}
.ws14{word-spacing:-1.232000pt;}
.ws89{word-spacing:-1.120000pt;}
.ws8a{word-spacing:-0.952000pt;}
.wsad{word-spacing:-0.896000pt;}
.ws1e{word-spacing:-0.840000pt;}
.wsc3{word-spacing:-0.768000pt;}
.ws76{word-spacing:-0.672000pt;}
.ws83{word-spacing:-0.616000pt;}
.ws32{word-spacing:-0.560000pt;}
.ws5{word-spacing:-0.557616pt;}
.ws13{word-spacing:-0.504000pt;}
.ws50{word-spacing:-0.448000pt;}
.ws3a{word-spacing:-0.392000pt;}
.ws25{word-spacing:-0.280000pt;}
.ws97{word-spacing:-0.224000pt;}
.ws91{word-spacing:-0.152000pt;}
.ws65{word-spacing:-0.074667pt;}
.wsba{word-spacing:-0.064000pt;}
.ws49{word-spacing:-0.056000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.048000pt;}
.ws2c{word-spacing:0.056000pt;}
.ws1b{word-spacing:0.106667pt;}
.wscc{word-spacing:0.240000pt;}
.wsbd{word-spacing:0.266667pt;}
.ws10{word-spacing:0.280000pt;}
.ws8f{word-spacing:0.304000pt;}
.wsb1{word-spacing:0.506667pt;}
.ws28{word-spacing:0.560000pt;}
.wsb8{word-spacing:0.608000pt;}
.ws15{word-spacing:0.616000pt;}
.ws51{word-spacing:0.672000pt;}
.wsb4{word-spacing:0.709333pt;}
.ws6{word-spacing:0.716936pt;}
.wsd2{word-spacing:0.768000pt;}
.ws5f{word-spacing:0.784000pt;}
.ws11{word-spacing:0.840000pt;}
.wsc2{word-spacing:0.960000pt;}
.ws8d{word-spacing:1.013333pt;}
.ws6a{word-spacing:1.064000pt;}
.ws33{word-spacing:1.120000pt;}
.ws54{word-spacing:1.288000pt;}
.ws38{word-spacing:1.400000pt;}
.ws66{word-spacing:1.456000pt;}
.ws8e{word-spacing:1.520000pt;}
.ws69{word-spacing:1.568000pt;}
.ws75{word-spacing:1.848000pt;}
.ws36{word-spacing:1.904000pt;}
.wsaf{word-spacing:2.072000pt;}
.ws82{word-spacing:2.128000pt;}
.wsa8{word-spacing:2.184000pt;}
.wsb7{word-spacing:2.229333pt;}
.wsf{word-spacing:2.240000pt;}
.ws47{word-spacing:2.296000pt;}
.ws16{word-spacing:2.408000pt;}
.ws27{word-spacing:2.520000pt;}
.ws73{word-spacing:2.744000pt;}
.ws5e{word-spacing:2.800000pt;}
.wsb3{word-spacing:2.837333pt;}
.ws55{word-spacing:2.856000pt;}
.ws1d{word-spacing:3.024000pt;}
.ws23{word-spacing:3.136000pt;}
.ws4b{word-spacing:3.192000pt;}
.ws9{word-spacing:3.248000pt;}
.wsc{word-spacing:3.304000pt;}
.wsc5{word-spacing:3.312000pt;}
.ws39{word-spacing:3.360000pt;}
.ws7b{word-spacing:3.416000pt;}
.ws30{word-spacing:3.472000pt;}
.ws92{word-spacing:3.496000pt;}
.ws81{word-spacing:3.640000pt;}
.ws2f{word-spacing:3.696000pt;}
.ws90{word-spacing:3.698667pt;}
.wsb2{word-spacing:3.749333pt;}
.wsa{word-spacing:3.752000pt;}
.ws35{word-spacing:3.864000pt;}
.ws3f{word-spacing:4.032000pt;}
.wsc7{word-spacing:4.080000pt;}
.wsb5{word-spacing:4.154667pt;}
.ws22{word-spacing:4.312000pt;}
.ws1f{word-spacing:4.368000pt;}
.ws7{word-spacing:4.480000pt;}
.ws88{word-spacing:4.536000pt;}
.ws9d{word-spacing:4.592000pt;}
.wsb9{word-spacing:4.661333pt;}
.wse{word-spacing:4.704000pt;}
.ws12{word-spacing:4.760000pt;}
.ws20{word-spacing:4.816000pt;}
.ws9e{word-spacing:4.872000pt;}
.wsc0{word-spacing:4.896000pt;}
.ws6e{word-spacing:5.040000pt;}
.wsd1{word-spacing:5.136000pt;}
.ws87{word-spacing:5.152000pt;}
.ws2d{word-spacing:5.320000pt;}
.ws42{word-spacing:5.376000pt;}
.ws9b{word-spacing:5.432000pt;}
.ws9f{word-spacing:5.544000pt;}
.wsd0{word-spacing:5.568000pt;}
.ws77{word-spacing:5.600000pt;}
.ws4f{word-spacing:5.712000pt;}
.ws96{word-spacing:5.768000pt;}
.ws3c{word-spacing:5.824000pt;}
.ws85{word-spacing:5.880000pt;}
.wsc6{word-spacing:5.952000pt;}
.ws41{word-spacing:5.992000pt;}
.ws34{word-spacing:6.048000pt;}
.wscf{word-spacing:6.096000pt;}
.ws61{word-spacing:6.216000pt;}
.ws5a{word-spacing:6.496000pt;}
.ws26{word-spacing:6.552000pt;}
.wsaa{word-spacing:6.608000pt;}
.ws5c{word-spacing:6.720000pt;}
.wsb{word-spacing:6.776000pt;}
.ws45{word-spacing:6.832000pt;}
.ws2b{word-spacing:6.888000pt;}
.ws80{word-spacing:7.000000pt;}
.ws29{word-spacing:7.056000pt;}
.ws84{word-spacing:7.112000pt;}
.wsbf{word-spacing:7.152000pt;}
.ws21{word-spacing:7.224000pt;}
.ws44{word-spacing:7.280000pt;}
.ws8b{word-spacing:7.336000pt;}
.ws57{word-spacing:7.448000pt;}
.ws5b{word-spacing:7.560000pt;}
.wsc1{word-spacing:7.632000pt;}
.ws2a{word-spacing:7.672000pt;}
.ws7a{word-spacing:8.008000pt;}
.ws2e{word-spacing:8.176000pt;}
.ws58{word-spacing:8.288000pt;}
.ws1c{word-spacing:8.512000pt;}
.ws8{word-spacing:8.568000pt;}
.ws86{word-spacing:8.848000pt;}
.ws6c{word-spacing:9.016000pt;}
.wsca{word-spacing:9.072000pt;}
.wsce{word-spacing:9.168000pt;}
.ws6d{word-spacing:9.240000pt;}
.ws40{word-spacing:9.576000pt;}
.ws68{word-spacing:9.632000pt;}
.wsa2{word-spacing:9.912000pt;}
.wsc4{word-spacing:10.128000pt;}
.wsa5{word-spacing:10.304000pt;}
.wsa6{word-spacing:10.416000pt;}
.ws6b{word-spacing:10.528000pt;}
.wsb0{word-spacing:10.584000pt;}
.wsc8{word-spacing:10.656000pt;}
.wsa1{word-spacing:11.312000pt;}
.ws8c{word-spacing:11.368000pt;}
.wsd{word-spacing:11.928000pt;}
.ws24{word-spacing:12.488000pt;}
.ws72{word-spacing:12.544000pt;}
.ws52{word-spacing:12.656000pt;}
.ws3b{word-spacing:12.768000pt;}
.wscd{word-spacing:12.864000pt;}
.wsa3{word-spacing:13.216000pt;}
.ws3d{word-spacing:13.440000pt;}
.wsa0{word-spacing:13.944000pt;}
.ws4d{word-spacing:14.112000pt;}
.ws7e{word-spacing:14.280000pt;}
.ws9c{word-spacing:15.400000pt;}
.ws56{word-spacing:15.960000pt;}
.wsbe{word-spacing:16.704000pt;}
.ws67{word-spacing:16.968000pt;}
.ws4e{word-spacing:17.920000pt;}
.ws59{word-spacing:18.536000pt;}
.ws7f{word-spacing:19.152000pt;}
.wsc9{word-spacing:19.488000pt;}
.ws78{word-spacing:19.712000pt;}
.wsab{word-spacing:22.120000pt;}
.wsa4{word-spacing:22.400000pt;}
.ws7d{word-spacing:24.808000pt;}
.ws43{word-spacing:25.144000pt;}
.ws98{word-spacing:25.368000pt;}
.ws74{word-spacing:27.552000pt;}
.ws79{word-spacing:29.344000pt;}
.wsae{word-spacing:30.464000pt;}
.ws64{word-spacing:718.666667pt;}
._14{margin-left:-791.392000pt;}
._10{margin-left:-721.877333pt;}
._7{margin-left:-7.900800pt;}
._8{margin-left:-6.114013pt;}
._5{margin-left:-5.124267pt;}
._16{margin-left:-4.080000pt;}
._0{margin-left:-3.129600pt;}
._1{margin-left:-2.068800pt;}
._3{margin-left:-1.170994pt;}
._4{width:1.099302pt;}
._e{width:2.108594pt;}
._9{width:3.281600pt;}
._6{width:4.614400pt;}
._11{width:5.579794pt;}
._f{width:6.520290pt;}
._15{width:7.410994pt;}
._b{width:8.359613pt;}
._a{width:9.358194pt;}
._13{width:10.493006pt;}
._12{width:11.865600pt;}
._d{width:17.158400pt;}
._c{width:18.829600pt;}
._17{width:19.787200pt;}
._2{width:1498.338133pt;}
.fse{font-size:27.984000pt;}
.fs8{font-size:32.648000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:47.795733pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.761600pt;}
.fs7{font-size:56.000000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:70.267200pt;}
.fsd{font-size:74.666667pt;}
.fs9{font-size:138.666667pt;}
.fs6{font-size:152.618133pt;}
.fsb{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:44.226267pt;}
.y1{bottom:45.472933pt;}
.y119{bottom:93.590400pt;}
.yf4{bottom:93.614400pt;}
.y5d{bottom:93.627600pt;}
.ya2{bottom:93.647733pt;}
.yd1{bottom:93.674400pt;}
.y90{bottom:93.714267pt;}
.y7{bottom:93.907067pt;}
.y8{bottom:103.388533pt;}
.y6{bottom:105.907067pt;}
.y118{bottom:110.259733pt;}
.yf3{bottom:110.274400pt;}
.y5c{bottom:110.287600pt;}
.ya1{bottom:110.307733pt;}
.yd0{bottom:110.334400pt;}
.y8f{bottom:110.374267pt;}
.y5{bottom:117.907067pt;}
.y117{bottom:126.929067pt;}
.y5b{bottom:126.947600pt;}
.yf2{bottom:126.954400pt;}
.ya0{bottom:126.967733pt;}
.ycf{bottom:126.994400pt;}
.y8e{bottom:127.034267pt;}
.y116{bottom:143.598400pt;}
.y5a{bottom:143.607600pt;}
.yf1{bottom:143.614400pt;}
.y9f{bottom:143.627733pt;}
.yce{bottom:143.654400pt;}
.y8d{bottom:143.694267pt;}
.y115{bottom:160.267733pt;}
.yf0{bottom:160.274400pt;}
.y59{bottom:160.287600pt;}
.y9e{bottom:160.287733pt;}
.ycd{bottom:160.314400pt;}
.y8c{bottom:160.354267pt;}
.y58{bottom:176.947600pt;}
.y9d{bottom:176.947733pt;}
.y22{bottom:176.967733pt;}
.ycc{bottom:176.974400pt;}
.yef{bottom:176.994400pt;}
.y8b{bottom:177.014267pt;}
.y11a{bottom:187.783600pt;}
.y57{bottom:193.607600pt;}
.y9c{bottom:193.607733pt;}
.y21{bottom:193.627733pt;}
.ycb{bottom:193.634400pt;}
.yee{bottom:193.654400pt;}
.y8a{bottom:193.674267pt;}
.y56{bottom:210.287600pt;}
.y20{bottom:210.287733pt;}
.y9b{bottom:210.294400pt;}
.yed{bottom:210.314400pt;}
.y89{bottom:210.334267pt;}
.y55{bottom:226.947600pt;}
.y1f{bottom:226.947733pt;}
.y9a{bottom:226.954400pt;}
.yec{bottom:226.974400pt;}
.y88{bottom:226.994267pt;}
.y54{bottom:243.607600pt;}
.y1e{bottom:243.607733pt;}
.y99{bottom:243.614400pt;}
.yeb{bottom:243.634400pt;}
.y87{bottom:243.654267pt;}
.y98{bottom:260.274400pt;}
.yea{bottom:260.294400pt;}
.y86{bottom:260.314267pt;}
.y53{bottom:260.320933pt;}
.y1d{bottom:260.354400pt;}
.ye9{bottom:276.954400pt;}
.y85{bottom:276.974267pt;}
.y97{bottom:276.974400pt;}
.y52{bottom:276.980933pt;}
.y1c{bottom:277.014400pt;}
.yca{bottom:277.054400pt;}
.ye8{bottom:293.614400pt;}
.y84{bottom:293.634267pt;}
.y96{bottom:293.634400pt;}
.y51{bottom:293.640933pt;}
.y1b{bottom:293.674400pt;}
.yc9{bottom:293.714400pt;}
.ye7{bottom:310.274400pt;}
.y83{bottom:310.294267pt;}
.y95{bottom:310.294400pt;}
.y50{bottom:310.300933pt;}
.y1a{bottom:310.334400pt;}
.yc8{bottom:310.374400pt;}
.y11d{bottom:314.119600pt;}
.y82{bottom:326.954267pt;}
.y94{bottom:326.954400pt;}
.y4f{bottom:326.960933pt;}
.y19{bottom:326.994400pt;}
.ye6{bottom:327.014400pt;}
.yc7{bottom:327.034400pt;}
.y81{bottom:343.614267pt;}
.y93{bottom:343.614400pt;}
.y4e{bottom:343.620933pt;}
.y18{bottom:343.654400pt;}
.ye5{bottom:343.674400pt;}
.yc6{bottom:343.694400pt;}
.y11c{bottom:344.527600pt;}
.y80{bottom:360.274267pt;}
.y92{bottom:360.274400pt;}
.y4d{bottom:360.280933pt;}
.y17{bottom:360.314400pt;}
.ye4{bottom:360.334400pt;}
.yc5{bottom:360.354400pt;}
.y91{bottom:376.934400pt;}
.y4c{bottom:376.940933pt;}
.y7f{bottom:376.947600pt;}
.y16{bottom:376.974400pt;}
.ye3{bottom:376.994400pt;}
.yc4{bottom:377.014400pt;}
.y15e{bottom:393.543733pt;}
.y13d{bottom:393.591733pt;}
.y7e{bottom:393.607600pt;}
.y15{bottom:393.634400pt;}
.ye2{bottom:393.654400pt;}
.yc3{bottom:393.674400pt;}
.y4b{bottom:393.794267pt;}
.y15d{bottom:410.211733pt;}
.y13c{bottom:410.259733pt;}
.y14{bottom:410.294400pt;}
.ye1{bottom:410.314400pt;}
.yc2{bottom:410.334400pt;}
.y7d{bottom:410.380933pt;}
.y4a{bottom:410.454267pt;}
.y15c{bottom:426.879733pt;}
.yd7{bottom:426.921067pt;}
.y13b{bottom:426.927733pt;}
.y13{bottom:426.954400pt;}
.ye0{bottom:426.974400pt;}
.yc1{bottom:426.994400pt;}
.y7c{bottom:427.040933pt;}
.y49{bottom:427.114267pt;}
.y15b{bottom:443.547733pt;}
.yd6{bottom:443.590400pt;}
.y13a{bottom:443.595733pt;}
.y12{bottom:443.614400pt;}
.ydf{bottom:443.634400pt;}
.yc0{bottom:443.654400pt;}
.y7b{bottom:443.700933pt;}
.y48{bottom:443.774267pt;}
.y15a{bottom:460.215733pt;}
.yd5{bottom:460.259733pt;}
.y139{bottom:460.263733pt;}
.y11{bottom:460.274400pt;}
.yde{bottom:460.294400pt;}
.ybf{bottom:460.314400pt;}
.y7a{bottom:460.360933pt;}
.y47{bottom:460.434267pt;}
.y159{bottom:476.883733pt;}
.yd4{bottom:476.929067pt;}
.y138{bottom:476.931733pt;}
.y10{bottom:476.947733pt;}
.ydd{bottom:476.954400pt;}
.ybe{bottom:476.974400pt;}
.y79{bottom:477.020933pt;}
.y46{bottom:477.094267pt;}
.y158{bottom:493.551733pt;}
.yd3{bottom:493.598400pt;}
.y137{bottom:493.599733pt;}
.yf{bottom:493.607733pt;}
.ydc{bottom:493.614400pt;}
.ybd{bottom:493.634400pt;}
.y78{bottom:493.680933pt;}
.y45{bottom:493.754267pt;}
.y11b{bottom:495.652933pt;}
.y157{bottom:510.219733pt;}
.y136{bottom:510.237067pt;}
.yd2{bottom:510.267733pt;}
.ydb{bottom:510.274400pt;}
.ybc{bottom:510.294400pt;}
.ye{bottom:510.301067pt;}
.y77{bottom:510.340933pt;}
.y44{bottom:510.414267pt;}
.y156{bottom:526.887733pt;}
.y135{bottom:526.905067pt;}
.yda{bottom:526.934400pt;}
.ybb{bottom:526.954400pt;}
.yd{bottom:526.961067pt;}
.y76{bottom:527.000933pt;}
.y43{bottom:527.074267pt;}
.y28{bottom:529.234667pt;}
.yd8{bottom:538.020000pt;}
.y155{bottom:543.555733pt;}
.y134{bottom:543.573067pt;}
.yba{bottom:543.614400pt;}
.yc{bottom:543.621067pt;}
.y75{bottom:543.660933pt;}
.y42{bottom:543.734267pt;}
.y10c{bottom:543.770400pt;}
.y154{bottom:560.223733pt;}
.y133{bottom:560.241067pt;}
.yb9{bottom:560.274400pt;}
.yb{bottom:560.281067pt;}
.y74{bottom:560.320933pt;}
.y41{bottom:560.394267pt;}
.y10b{bottom:560.430400pt;}
.y153{bottom:576.891733pt;}
.y132{bottom:576.909067pt;}
.y112{bottom:576.921067pt;}
.y9{bottom:576.934400pt;}
.ya{bottom:576.941067pt;}
.yb8{bottom:576.954400pt;}
.y73{bottom:576.980933pt;}
.y40{bottom:577.054267pt;}
.y10a{bottom:577.090400pt;}
.y152{bottom:593.559733pt;}
.y131{bottom:593.577067pt;}
.y111{bottom:593.590400pt;}
.yb7{bottom:593.614400pt;}
.y72{bottom:593.640933pt;}
.y3f{bottom:593.714267pt;}
.y109{bottom:593.750400pt;}
.y151{bottom:610.227733pt;}
.y130{bottom:610.245067pt;}
.y110{bottom:610.259733pt;}
.yb6{bottom:610.274400pt;}
.y71{bottom:610.300933pt;}
.y3e{bottom:610.374267pt;}
.y108{bottom:610.410400pt;}
.y150{bottom:626.895733pt;}
.y12f{bottom:626.913067pt;}
.y10f{bottom:626.929067pt;}
.y70{bottom:626.960933pt;}
.y3d{bottom:627.034267pt;}
.yb5{bottom:627.041067pt;}
.y107{bottom:627.070400pt;}
.y14f{bottom:643.563733pt;}
.y12e{bottom:643.581067pt;}
.y10e{bottom:643.598400pt;}
.y6f{bottom:643.620933pt;}
.y3c{bottom:643.694267pt;}
.yb4{bottom:643.701067pt;}
.y106{bottom:643.730400pt;}
.y14e{bottom:660.231733pt;}
.y12d{bottom:660.249067pt;}
.y10d{bottom:660.267733pt;}
.y6e{bottom:660.280933pt;}
.y3b{bottom:660.354267pt;}
.yb3{bottom:660.361067pt;}
.y105{bottom:660.390400pt;}
.y14d{bottom:676.899733pt;}
.y12c{bottom:676.917067pt;}
.y6d{bottom:676.940933pt;}
.y3a{bottom:677.014267pt;}
.yb2{bottom:677.021067pt;}
.y104{bottom:677.050400pt;}
.y113{bottom:687.878400pt;}
.y14c{bottom:693.567733pt;}
.y12b{bottom:693.585067pt;}
.y39{bottom:693.674267pt;}
.yb1{bottom:693.681067pt;}
.y103{bottom:693.710400pt;}
.y6c{bottom:693.723600pt;}
.y27{bottom:704.941067pt;}
.y14b{bottom:710.235733pt;}
.y12a{bottom:710.253067pt;}
.y38{bottom:710.334267pt;}
.yb0{bottom:710.341067pt;}
.y102{bottom:710.370400pt;}
.y6b{bottom:710.383600pt;}
.yd9{bottom:719.609333pt;}
.y14a{bottom:726.903733pt;}
.y129{bottom:726.921067pt;}
.y37{bottom:726.994267pt;}
.yaf{bottom:727.001067pt;}
.y101{bottom:727.030400pt;}
.y6a{bottom:727.043600pt;}
.y26{bottom:729.056533pt;}
.y149{bottom:743.571733pt;}
.y128{bottom:743.589067pt;}
.y36{bottom:743.654267pt;}
.yae{bottom:743.661067pt;}
.y100{bottom:743.690400pt;}
.y69{bottom:743.703600pt;}
.y25{bottom:747.723200pt;}
.y148{bottom:760.239733pt;}
.y127{bottom:760.257067pt;}
.y35{bottom:760.314267pt;}
.yad{bottom:760.321067pt;}
.yff{bottom:760.350400pt;}
.y68{bottom:760.363600pt;}
.y147{bottom:776.907733pt;}
.y126{bottom:776.925067pt;}
.y34{bottom:776.974267pt;}
.yac{bottom:776.981067pt;}
.yfe{bottom:777.010400pt;}
.y67{bottom:777.023600pt;}
.y146{bottom:793.575733pt;}
.y125{bottom:793.593067pt;}
.y33{bottom:793.634267pt;}
.yab{bottom:793.641067pt;}
.yfd{bottom:793.670400pt;}
.y66{bottom:793.683600pt;}
.y114{bottom:803.313067pt;}
.y24{bottom:809.854533pt;}
.y145{bottom:810.243733pt;}
.y124{bottom:810.261067pt;}
.y32{bottom:810.294267pt;}
.yaa{bottom:810.301067pt;}
.yfc{bottom:810.330400pt;}
.y65{bottom:810.343600pt;}
.y144{bottom:826.911733pt;}
.y123{bottom:826.929067pt;}
.y31{bottom:826.954267pt;}
.ya9{bottom:826.961067pt;}
.yfb{bottom:826.990400pt;}
.y64{bottom:827.003600pt;}
.y143{bottom:843.579733pt;}
.y122{bottom:843.597067pt;}
.y30{bottom:843.614267pt;}
.ya8{bottom:843.621067pt;}
.yfa{bottom:843.650400pt;}
.y63{bottom:843.663600pt;}
.y23{bottom:844.521200pt;}
.y142{bottom:860.247733pt;}
.y121{bottom:860.265067pt;}
.y2f{bottom:860.274267pt;}
.ya7{bottom:860.281067pt;}
.yf9{bottom:860.310400pt;}
.y62{bottom:860.323600pt;}
.y141{bottom:876.915733pt;}
.y120{bottom:876.933067pt;}
.y2e{bottom:876.940933pt;}
.ya6{bottom:876.941067pt;}
.yf8{bottom:876.970400pt;}
.y61{bottom:876.983600pt;}
.y140{bottom:893.583733pt;}
.y11f{bottom:893.601067pt;}
.y2d{bottom:893.614267pt;}
.yf7{bottom:893.630400pt;}
.y60{bottom:893.643600pt;}
.ya5{bottom:893.663733pt;}
.y13f{bottom:910.251733pt;}
.y2c{bottom:910.274267pt;}
.yf6{bottom:910.290400pt;}
.y5f{bottom:910.303600pt;}
.ya4{bottom:910.323733pt;}
.y13e{bottom:926.919733pt;}
.y2b{bottom:926.934267pt;}
.y11e{bottom:926.934400pt;}
.yf5{bottom:926.950400pt;}
.y5e{bottom:926.963600pt;}
.ya3{bottom:926.983733pt;}
.y4{bottom:954.060667pt;}
.y3{bottom:968.727333pt;}
.y2{bottom:986.650800pt;}
.y2a{bottom:989.108267pt;}
.hb{height:35.232000pt;}
.h5{height:44.800000pt;}
.ha{height:47.232000pt;}
.h4{height:50.185520pt;}
.he{height:50.400000pt;}
.h13{height:50.522667pt;}
.h2{height:51.013333pt;}
.h6{height:51.156443pt;}
.h10{height:52.416000pt;}
.h11{height:53.088000pt;}
.hf{height:53.200000pt;}
.hd{height:56.000000pt;}
.h3{height:58.549680pt;}
.h8{height:58.800000pt;}
.h12{height:67.200000pt;}
.h7{height:125.466667pt;}
.h9{height:145.600000pt;}
.hc{height:364.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:80.584267pt;}
.x14{left:82.982667pt;}
.xb{left:86.695467pt;}
.xd{left:94.488133pt;}
.x5{left:118.110267pt;}
.x7{left:195.353333pt;}
.x9{left:197.800400pt;}
.xa{left:216.700400pt;}
.x8{left:220.382400pt;}
.x15{left:250.796000pt;}
.x16{left:268.174667pt;}
.x17{left:340.157467pt;}
.x18{left:347.549600pt;}
.xe{left:410.070800pt;}
.xf{left:428.974133pt;}
.xc{left:463.966533pt;}
.x12{left:479.995600pt;}
.x13{left:498.891600pt;}
.x2{left:553.722000pt;}
.x11{left:562.218667pt;}
.x3{left:582.399333pt;}
.x19{left:590.570933pt;}
.x1a{left:591.709600pt;}
.x4{left:594.117733pt;}
.x10{left:704.030400pt;}
.x1b{left:705.003733pt;}
}

