
    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_0151838c38ae73f89d55a0e2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_60a3a540c2bfbe0198dc13ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099121;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_8f67c354f595b163069489d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_1908b21206e1b696dbe53eae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.108887;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_33bcbe8b6e04ead6273301f4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.124023;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_a801b7589d4c733d240c54bc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.108887;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_678153c6d19d20732927bdd4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.124023;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_b2392fe73090b7c9099a2335.woff')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ffb{font-family:ffb;line-height:0.691406;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_55b6e8a9fde0a5322d3e5afa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.107910;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ffd{font-family:ffd;line-height:0.691406;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_bf83c050e0216b67203cb759.woff')format("woff");}.ffe{font-family:ffe;line-height:1.107910;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.fff{font-family:fff;line-height:0.691406;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_714b0d558e23945f7b0d49d4.woff')format("woff");}.ff10{font-family:ff10;line-height:1.107910;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff11{font-family:ff11;line-height:0.691406;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff12{font-family:ff12;line-height:0.691406;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_fdb2495d8615335f65e5ff2b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.108887;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_0cca9b200b520bedbffec364.woff')format("woff");}.ff14{font-family:ff14;line-height:0.862305;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_d09e66355a0be2bcebe6cd28.woff')format("woff");}.ff15{font-family:ff15;line-height:1.124023;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_882de29f72aeeeedf5ba1036.woff')format("woff");}.ff16{font-family:ff16;line-height:1.108887;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_fc901cefa1808589ae51016b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.682617;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_9e211b2d93c8c28f83d25f27.woff')format("woff");}.ff18{font-family:ff18;line-height:1.124023;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.471000px;}
.ls24{letter-spacing:-0.447600px;}
.ls15{letter-spacing:-0.426000px;}
.ls16{letter-spacing:-0.357600px;}
.ls5{letter-spacing:-0.315600px;}
.lsa{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.220200px;}
.ls1f{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.189600px;}
.ls7{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.153600px;}
.ls17{letter-spacing:-0.111000px;}
.ls10{letter-spacing:-0.103800px;}
.ls2a{letter-spacing:-0.085200px;}
.ls1b{letter-spacing:-0.066000px;}
.ls25{letter-spacing:-0.061200px;}
.ls1e{letter-spacing:-0.052560px;}
.ls14{letter-spacing:-0.042480px;}
.ls2{letter-spacing:-0.016200px;}
.ls1{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.002520px;}
.lsb{letter-spacing:0.009360px;}
.ls1d{letter-spacing:0.013800px;}
.ls13{letter-spacing:0.021240px;}
.ls3{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.061200px;}
.ls9{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.106200px;}
.lsf{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.119400px;}
.lse{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.153720px;}
.ls1a{letter-spacing:0.169800px;}
.ls6{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.294000px;}
.lsd{letter-spacing:1.188000px;}
.ls29{letter-spacing:8.846640px;}
.ls21{letter-spacing:10.646640px;}
.ls20{letter-spacing:14.606640px;}
.ls12{letter-spacing:195.686640px;}
.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;}
}
.ws17{word-spacing:-35.110080px;}
.ws0{word-spacing:-20.016000px;}
.ws9{word-spacing:-16.893360px;}
.ws19{word-spacing:-16.866960px;}
.wsb{word-spacing:-16.853160px;}
.ws7{word-spacing:-16.819560px;}
.ws12{word-spacing:-16.774560px;}
.ws10{word-spacing:-16.715880px;}
.ws6{word-spacing:-16.713360px;}
.wsc{word-spacing:-16.660800px;}
.wsd{word-spacing:-16.652160px;}
.ws16{word-spacing:-16.647360px;}
.ws18{word-spacing:-16.628160px;}
.wse{word-spacing:-16.602360px;}
.ws11{word-spacing:-16.559760px;}
.ws14{word-spacing:-16.533360px;}
.ws13{word-spacing:-16.506960px;}
.wsf{word-spacing:-16.493160px;}
.wsa{word-spacing:-16.355760px;}
.ws15{word-spacing:-15.066000px;}
.ws8{word-spacing:-15.012000px;}
.ws1{word-spacing:-11.889360px;}
.ws3{word-spacing:-11.799360px;}
.ws2{word-spacing:-11.529360px;}
.ws4{word-spacing:-11.439360px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-196.059600px;}
._b{margin-left:-194.929080px;}
._18{margin-left:-144.173760px;}
._f{margin-left:-135.042000px;}
._1f{margin-left:-33.022680px;}
._19{margin-left:-14.261280px;}
._22{margin-left:-8.605320px;}
._1d{margin-left:-7.303920px;}
._c{margin-left:-2.520000px;}
._0{margin-left:-1.201680px;}
._2{width:1.053360px;}
._7{width:2.936760px;}
._26{width:3.943560px;}
._5{width:4.968000px;}
._6{width:5.988000px;}
._23{width:6.997920px;}
._24{width:8.212440px;}
._2a{width:9.222360px;}
._4{width:10.530000px;}
._28{width:11.564760px;}
._27{width:12.625200px;}
._29{width:13.767480px;}
._2b{width:15.090120px;}
._25{width:17.915760px;}
._2d{width:19.118160px;}
._30{width:20.830320px;}
._31{width:22.244640px;}
._33{width:23.867640px;}
._32{width:25.551000px;}
._39{width:26.579880px;}
._2f{width:28.015920px;}
._1c{width:29.806680px;}
._3b{width:30.857520px;}
._20{width:31.958400px;}
._1a{width:33.405600px;}
._16{width:34.620960px;}
._38{width:42.745320px;}
._12{width:47.602200px;}
._37{width:49.238280px;}
._21{width:50.849760px;}
._11{width:53.125320px;}
._d{width:59.085120px;}
._35{width:60.841440px;}
._36{width:61.876320px;}
._34{width:64.314120px;}
._1e{width:70.804560px;}
._8{width:84.216000px;}
._10{width:95.213280px;}
._17{width:108.560280px;}
._13{width:121.786320px;}
._1b{width:126.235200px;}
._14{width:181.369560px;}
._15{width:188.223600px;}
._e{width:190.808760px;}
._9{width:195.686640px;}
._2c{width:196.722720px;}
._2e{width:834.267600px;}
._3{width:858.567600px;}
._1{width:1260.711120px;}
._3a{width:2337.206640px;}
.fc11{color:rgb(192,0,0);}
.fc10{color:rgb(33,88,104);}
.fcf{color:rgb(79,98,40);}
.fce{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fcd{color:rgb(242,225,243);}
.fc4{color:rgb(166,166,166);}
.fc5{color:rgb(191,191,191);}
.fc6{color:rgb(128,128,128);}
.fc7{color:rgb(255,255,255);}
.fc8{color:rgb(127,127,127);}
.fc3{color:transparent;}
.fc9{color:rgb(192,80,77);}
.fc2{color:rgb(89,89,89);}
.fca{color:rgb(31,73,125);}
.fc1{color:rgb(64,64,64);}
.fcb{color:rgb(99,36,35);}
.fcc{color:rgb(36,64,97);}
.fs3{font-size:42.120000px;}
.fs6{font-size:46.080000px;}
.fs5{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.380000px;}
.y1{bottom:21.330000px;}
.y2{bottom:22.500000px;}
.y2c{bottom:24.090000px;}
.y3{bottom:26.280000px;}
.y4{bottom:27.450000px;}
.y2b{bottom:37.980000px;}
.y199{bottom:48.960000px;}
.y157{bottom:50.760000px;}
.y28{bottom:51.570000px;}
.y136{bottom:51.750000px;}
.y126{bottom:53.640000px;}
.yff{bottom:55.620000px;}
.y83{bottom:56.610000px;}
.y89{bottom:56.790000px;}
.y1a7{bottom:58.320000px;}
.y86{bottom:59.490000px;}
.y152{bottom:60.750000px;}
.y58{bottom:60.930000px;}
.y103{bottom:64.350000px;}
.y147{bottom:66.690000px;}
.y36{bottom:70.740000px;}
.ya5{bottom:70.830000px;}
.y27{bottom:71.640000px;}
.y125{bottom:73.620000px;}
.y88{bottom:74.790000px;}
.y14d{bottom:75.600000px;}
.yfe{bottom:75.690000px;}
.y82{bottom:76.590000px;}
.y61{bottom:76.860000px;}
.y1a6{bottom:78.300000px;}
.y151{bottom:78.750000px;}
.y168{bottom:79.740000px;}
.y57{bottom:81.000000px;}
.y102{bottom:82.350000px;}
.y135{bottom:86.760000px;}
.y198{bottom:87.120000px;}
.y35{bottom:88.740000px;}
.y156{bottom:88.920000px;}
.ya4{bottom:90.810000px;}
.y26{bottom:91.620000px;}
.y87{bottom:92.790000px;}
.y124{bottom:93.600000px;}
.y14c{bottom:95.580000px;}
.yfd{bottom:95.670000px;}
.y81{bottom:96.570000px;}
.y150{bottom:96.750000px;}
.y60{bottom:96.840000px;}
.y1a5{bottom:98.280000px;}
.y56{bottom:100.980000px;}
.y146{bottom:101.700000px;}
.y34{bottom:106.740000px;}
.y197{bottom:110.430000px;}
.ya3{bottom:110.880000px;}
.y25{bottom:111.600000px;}
.y123{bottom:113.580000px;}
.y14f{bottom:114.750000px;}
.yfc{bottom:115.650000px;}
.y80{bottom:116.640000px;}
.y5f{bottom:116.910000px;}
.y167{bottom:117.900000px;}
.y1a4{bottom:118.260000px;}
.y55{bottom:120.960000px;}
.y134{bottom:121.770000px;}
.y33{bottom:124.740000px;}
.y155{bottom:127.080000px;}
.ya2{bottom:130.860000px;}
.y24{bottom:131.580000px;}
.y14e{bottom:132.750000px;}
.y122{bottom:133.650000px;}
.yfb{bottom:135.630000px;}
.y7f{bottom:136.620000px;}
.y145{bottom:136.710000px;}
.y5e{bottom:136.890000px;}
.y1a3{bottom:138.330000px;}
.y54{bottom:140.940000px;}
.y32{bottom:142.830000px;}
.y196{bottom:145.440000px;}
.ya1{bottom:150.840000px;}
.y23{bottom:151.650000px;}
.y121{bottom:153.630000px;}
.y14b{bottom:155.610000px;}
.yfa{bottom:155.700000px;}
.y166{bottom:156.060000px;}
.y7e{bottom:156.600000px;}
.y133{bottom:156.780000px;}
.y5d{bottom:156.870000px;}
.y1a2{bottom:158.310000px;}
.y31{bottom:160.830000px;}
.y53{bottom:161.010000px;}
.y154{bottom:165.240000px;}
.ya0{bottom:170.820000px;}
.y22{bottom:171.630000px;}
.y144{bottom:171.720000px;}
.y183{bottom:173.430000px;}
.y120{bottom:173.610000px;}
.y14a{bottom:175.590000px;}
.yf9{bottom:175.680000px;}
.y7d{bottom:176.670000px;}
.y5c{bottom:176.850000px;}
.y1a1{bottom:178.290000px;}
.y30{bottom:178.830000px;}
.y195{bottom:180.450000px;}
.y52{bottom:180.990000px;}
.y9f{bottom:190.890000px;}
.y21{bottom:191.610000px;}
.y132{bottom:191.700000px;}
.y182{bottom:193.500000px;}
.y11f{bottom:193.590000px;}
.y165{bottom:194.220000px;}
.yf8{bottom:195.660000px;}
.y7c{bottom:196.650000px;}
.y2f{bottom:196.830000px;}
.y5b{bottom:196.920000px;}
.y1a0{bottom:198.360000px;}
.y51{bottom:200.970000px;}
.y153{bottom:203.400000px;}
.y143{bottom:206.730000px;}
.y9e{bottom:210.870000px;}
.ybc{bottom:211.140000px;}
.y20{bottom:211.590000px;}
.y181{bottom:213.480000px;}
.y11e{bottom:213.660000px;}
.y2e{bottom:214.830000px;}
.y194{bottom:215.460000px;}
.yf7{bottom:215.640000px;}
.y7b{bottom:216.630000px;}
.y5a{bottom:216.900000px;}
.y19f{bottom:218.340000px;}
.y50{bottom:220.950000px;}
.y1ad{bottom:222.120000px;}
.y131{bottom:226.710000px;}
.y9d{bottom:230.850000px;}
.ybb{bottom:231.210000px;}
.y1f{bottom:231.660000px;}
.y164{bottom:232.380000px;}
.y2d{bottom:232.830000px;}
.y180{bottom:233.460000px;}
.y11d{bottom:233.640000px;}
.y149{bottom:234.810000px;}
.yf6{bottom:235.710000px;}
.y59{bottom:236.070000px;}
.y7a{bottom:236.610000px;}
.y19e{bottom:238.320000px;}
.y4f{bottom:241.020000px;}
.y142{bottom:241.740000px;}
.y1ac{bottom:242.100000px;}
.yba{bottom:250.410000px;}
.y193{bottom:250.500000px;}
.y9c{bottom:250.860000px;}
.y1e{bottom:251.670000px;}
.y148{bottom:252.840000px;}
.y17f{bottom:253.560000px;}
.y11c{bottom:253.650000px;}
.yf5{bottom:255.720000px;}
.y79{bottom:256.710000px;}
.y19d{bottom:258.330000px;}
.y4e{bottom:261.030000px;}
.y130{bottom:261.750000px;}
.y1ab{bottom:265.350000px;}
.yb9{bottom:268.410000px;}
.y163{bottom:270.570000px;}
.y9b{bottom:270.930000px;}
.y1d{bottom:271.650000px;}
.y17e{bottom:273.540000px;}
.y11b{bottom:273.720000px;}
.yf4{bottom:275.700000px;}
.y78{bottom:276.690000px;}
.y141{bottom:276.780000px;}
.y19c{bottom:278.400000px;}
.y4d{bottom:281.010000px;}
.y1aa{bottom:285.240000px;}
.y192{bottom:285.420000px;}
.yb8{bottom:286.410000px;}
.ycc{bottom:286.680000px;}
.y9a{bottom:290.910000px;}
.y1c{bottom:291.720000px;}
.y17d{bottom:293.520000px;}
.y11a{bottom:293.700000px;}
.yf3{bottom:295.680000px;}
.y77{bottom:296.670000px;}
.y12f{bottom:296.760000px;}
.y19b{bottom:298.290000px;}
.y4c{bottom:301.080000px;}
.yb7{bottom:304.410000px;}
.yd2{bottom:305.400000px;}
.ycb{bottom:306.660000px;}
.y1a9{bottom:308.550000px;}
.y162{bottom:308.730000px;}
.y99{bottom:310.890000px;}
.y1b{bottom:311.700000px;}
.y140{bottom:311.790000px;}
.y17c{bottom:313.500000px;}
.y119{bottom:313.680000px;}
.yf2{bottom:315.750000px;}
.y19a{bottom:316.290000px;}
.y76{bottom:316.650000px;}
.y191{bottom:320.430000px;}
.y4b{bottom:321.060000px;}
.yd1{bottom:325.380000px;}
.yca{bottom:326.730000px;}
.y1a8{bottom:328.980000px;}
.yb6{bottom:330.870000px;}
.y98{bottom:330.960000px;}
.y1a{bottom:331.680000px;}
.y12e{bottom:331.770000px;}
.y17b{bottom:333.570000px;}
.y118{bottom:333.660000px;}
.yf1{bottom:335.730000px;}
.y75{bottom:336.720000px;}
.y4a{bottom:341.040000px;}
.yab{bottom:342.210000px;}
.yd0{bottom:345.360000px;}
.yc9{bottom:346.710000px;}
.y13f{bottom:346.800000px;}
.y161{bottom:346.890000px;}
.yb5{bottom:348.870000px;}
.y97{bottom:350.940000px;}
.y19{bottom:351.660000px;}
.y17a{bottom:353.550000px;}
.y117{bottom:353.730000px;}
.y190{bottom:355.440000px;}
.yf0{bottom:355.710000px;}
.y74{bottom:356.700000px;}
.y49{bottom:361.020000px;}
.yaa{bottom:362.190000px;}
.ycf{bottom:365.340000px;}
.yc8{bottom:366.690000px;}
.y12d{bottom:366.780000px;}
.yb4{bottom:366.870000px;}
.y100{bottom:369.300000px;}
.y96{bottom:370.920000px;}
.y18{bottom:371.730000px;}
.y128{bottom:372.180000px;}
.y179{bottom:373.530000px;}
.y116{bottom:373.710000px;}
.yef{bottom:375.780000px;}
.y73{bottom:376.680000px;}
.y185{bottom:379.200000px;}
.y48{bottom:381.090000px;}
.y13e{bottom:381.810000px;}
.ya9{bottom:382.260000px;}
.yb3{bottom:384.870000px;}
.y160{bottom:385.050000px;}
.yce{bottom:385.410000px;}
.yc7{bottom:386.670000px;}
.y18f{bottom:390.450000px;}
.y95{bottom:390.900000px;}
.y17{bottom:391.710000px;}
.y178{bottom:393.510000px;}
.y115{bottom:393.690000px;}
.y8f{bottom:395.670000px;}
.yee{bottom:395.760000px;}
.y72{bottom:396.750000px;}
.y101{bottom:397.920000px;}
.y47{bottom:401.070000px;}
.yda{bottom:401.700000px;}
.y12c{bottom:401.790000px;}
.ya8{bottom:402.150000px;}
.yb2{bottom:402.870000px;}
.ycd{bottom:405.390000px;}
.yc6{bottom:406.740000px;}
.y127{bottom:410.340000px;}
.y94{bottom:410.970000px;}
.y16{bottom:411.690000px;}
.y177{bottom:413.580000px;}
.y114{bottom:413.670000px;}
.y8e{bottom:415.740000px;}
.y71{bottom:416.730000px;}
.y13d{bottom:416.820000px;}
.y46{bottom:421.050000px;}
.yb1{bottom:421.680000px;}
.y15f{bottom:423.210000px;}
.ya7{bottom:425.280000px;}
.y18e{bottom:425.460000px;}
.yc5{bottom:426.720000px;}
.y93{bottom:430.950000px;}
.y15{bottom:431.670000px;}
.y176{bottom:433.560000px;}
.y113{bottom:433.740000px;}
.y8d{bottom:435.720000px;}
.y70{bottom:436.710000px;}
.y12b{bottom:436.800000px;}
.yb0{bottom:440.850000px;}
.y45{bottom:441.030000px;}
.yd9{bottom:441.750000px;}
.yc4{bottom:446.700000px;}
.ya6{bottom:448.500000px;}
.y92{bottom:450.930000px;}
.y14{bottom:451.740000px;}
.y13c{bottom:451.830000px;}
.y175{bottom:453.540000px;}
.y112{bottom:453.720000px;}
.y8c{bottom:455.700000px;}
.yed{bottom:455.790000px;}
.y6f{bottom:456.690000px;}
.yaf{bottom:458.850000px;}
.y18d{bottom:460.470000px;}
.y44{bottom:461.130000px;}
.y15e{bottom:461.400000px;}
.yd8{bottom:461.760000px;}
.yc3{bottom:466.800000px;}
.y91{bottom:470.940000px;}
.y13{bottom:471.750000px;}
.y12a{bottom:471.840000px;}
.y174{bottom:473.640000px;}
.y111{bottom:473.730000px;}
.y8b{bottom:475.800000px;}
.y6e{bottom:476.790000px;}
.yae{bottom:476.880000px;}
.y43{bottom:481.110000px;}
.yd7{bottom:481.740000px;}
.yc2{bottom:486.780000px;}
.y13b{bottom:486.870000px;}
.y90{bottom:491.010000px;}
.y12{bottom:491.730000px;}
.y173{bottom:493.620000px;}
.y110{bottom:493.710000px;}
.yad{bottom:494.880000px;}
.y18c{bottom:495.510000px;}
.y8a{bottom:495.780000px;}
.y6d{bottom:496.770000px;}
.y84{bottom:496.860000px;}
.y15d{bottom:499.560000px;}
.y42{bottom:501.090000px;}
.yd6{bottom:501.720000px;}
.yc1{bottom:506.760000px;}
.y129{bottom:506.850000px;}
.y11{bottom:511.800000px;}
.yac{bottom:512.970000px;}
.y172{bottom:513.600000px;}
.y10f{bottom:513.780000px;}
.yec{bottom:515.760000px;}
.y6c{bottom:516.750000px;}
.y41{bottom:521.070000px;}
.yd5{bottom:521.790000px;}
.y13a{bottom:521.880000px;}
.y18b{bottom:530.520000px;}
.y10{bottom:531.780000px;}
.y171{bottom:533.580000px;}
.y10e{bottom:533.760000px;}
.yeb{bottom:535.830000px;}
.y6b{bottom:536.730000px;}
.y15c{bottom:537.720000px;}
.y40{bottom:541.140000px;}
.yc0{bottom:541.860000px;}
.yf{bottom:551.760000px;}
.y170{bottom:553.650000px;}
.y10d{bottom:553.740000px;}
.yea{bottom:555.810000px;}
.y6a{bottom:556.800000px;}
.yd4{bottom:556.890000px;}
.y3f{bottom:561.120000px;}
.ybf{bottom:561.750000px;}
.y18a{bottom:565.530000px;}
.ye{bottom:571.740000px;}
.y16f{bottom:573.630000px;}
.y10c{bottom:573.810000px;}
.ye9{bottom:575.790000px;}
.y15b{bottom:575.880000px;}
.y69{bottom:576.780000px;}
.ydf{bottom:576.870000px;}
.y3e{bottom:581.100000px;}
.ybe{bottom:581.820000px;}
.yd{bottom:591.810000px;}
.yd3{bottom:591.900000px;}
.y16e{bottom:593.610000px;}
.y10b{bottom:593.790000px;}
.ye8{bottom:595.860000px;}
.y68{bottom:596.760000px;}
.y189{bottom:600.540000px;}
.y3d{bottom:601.170000px;}
.yc{bottom:611.790000px;}
.yde{bottom:611.880000px;}
.y16d{bottom:613.590000px;}
.y10a{bottom:613.770000px;}
.y15a{bottom:614.040000px;}
.ye7{bottom:615.840000px;}
.y67{bottom:616.740000px;}
.ybd{bottom:616.830000px;}
.y3c{bottom:621.150000px;}
.y139{bottom:626.820000px;}
.yb{bottom:631.770000px;}
.y16c{bottom:633.660000px;}
.y109{bottom:633.750000px;}
.y188{bottom:635.550000px;}
.ye6{bottom:635.820000px;}
.y66{bottom:636.810000px;}
.y3b{bottom:641.130000px;}
.ydd{bottom:646.890000px;}
.ya{bottom:651.750000px;}
.y159{bottom:652.200000px;}
.y16b{bottom:653.640000px;}
.y108{bottom:653.820000px;}
.ye5{bottom:655.800000px;}
.y65{bottom:656.790000px;}
.y3a{bottom:661.110000px;}
.y138{bottom:661.830000px;}
.y137{bottom:664.710000px;}
.y187{bottom:670.560000px;}
.y9{bottom:671.820000px;}
.y16a{bottom:673.620000px;}
.y107{bottom:673.800000px;}
.ye4{bottom:675.870000px;}
.y64{bottom:676.770000px;}
.y85{bottom:676.860000px;}
.y39{bottom:681.210000px;}
.ydc{bottom:681.930000px;}
.y158{bottom:690.390000px;}
.y8{bottom:691.830000px;}
.y169{bottom:693.630000px;}
.y106{bottom:693.810000px;}
.y184{bottom:695.790000px;}
.ye3{bottom:695.880000px;}
.y63{bottom:696.870000px;}
.y38{bottom:701.190000px;}
.y186{bottom:705.420000px;}
.y7{bottom:711.810000px;}
.y105{bottom:713.790000px;}
.ye2{bottom:715.860000px;}
.y62{bottom:716.850000px;}
.y37{bottom:721.170000px;}
.ye0{bottom:728.550000px;}
.y6{bottom:731.790000px;}
.ydb{bottom:731.880000px;}
.y104{bottom:732.960000px;}
.ye1{bottom:735.840000px;}
.y2a{bottom:752.310000px;}
.y29{bottom:766.260000px;}
.hb{height:30.712500px;}
.h7{height:42.082031px;}
.h5{height:44.938652px;}
.h6{height:45.090000px;}
.ha{height:45.099492px;}
.h4{height:47.460938px;}
.h9{height:48.278320px;}
.h8{height:52.839844px;}
.h2{height:53.749863px;}
.h3{height:64.371094px;}
.h1{height:786.750000px;}
.h0{height:786.780000px;}
.w1{width:786.750000px;}
.w0{width:786.780000px;}
.w2{width:1509.660000px;}
.w3{width:1509.750000px;}
.x0{left:0.000000px;}
.x25{left:53.190000px;}
.x1{left:54.990000px;}
.x2{left:74.970000px;}
.x3{left:94.950000px;}
.x2c{left:106.290000px;}
.x4{left:114.960000px;}
.x39{left:127.620000px;}
.x5{left:135.030000px;}
.x6{left:155.010000px;}
.x7{left:174.990000px;}
.x8{left:194.970000px;}
.x9{left:215.040000px;}
.xa{left:235.020000px;}
.xb{left:255.000000px;}
.xc{left:274.980000px;}
.x2e{left:280.560000px;}
.x37{left:288.660000px;}
.x36{left:290.100000px;}
.x35{left:293.700000px;}
.xd{left:295.050000px;}
.xe{left:315.030000px;}
.xf{left:335.040000px;}
.x2b{left:344.640000px;}
.x10{left:355.110000px;}
.x29{left:357.690000px;}
.x2f{left:358.950000px;}
.x11{left:375.090000px;}
.x2d{left:380.100000px;}
.x2a{left:383.070000px;}
.x26{left:393.420000px;}
.x12{left:395.070000px;}
.x32{left:401.520000px;}
.x31{left:402.960000px;}
.x13{left:415.050000px;}
.x33{left:426.360000px;}
.x14{left:435.120000px;}
.x30{left:445.260000px;}
.x34{left:453.750000px;}
.x15{left:455.100000px;}
.x38{left:466.620000px;}
.x16{left:475.080000px;}
.x17{left:495.060000px;}
.x3b{left:505.500000px;}
.x18{left:515.130000px;}
.x19{left:535.110000px;}
.x27{left:541.410000px;}
.x1a{left:555.120000px;}
.x3a{left:558.600000px;}
.x1b{left:575.190000px;}
.x1c{left:595.170000px;}
.x1d{left:615.150000px;}
.x1e{left:635.130000px;}
.x1f{left:655.200000px;}
.x20{left:675.180000px;}
.x21{left:695.160000px;}
.x22{left:717.570000px;}
.x28{left:733.650000px;}
.x23{left:738.000000px;}
.x24{left:753.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.418667pt;}
.ls24{letter-spacing:-0.397867pt;}
.ls15{letter-spacing:-0.378667pt;}
.ls16{letter-spacing:-0.317867pt;}
.ls5{letter-spacing:-0.280533pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.195733pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.168533pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.136533pt;}
.ls17{letter-spacing:-0.098667pt;}
.ls10{letter-spacing:-0.092267pt;}
.ls2a{letter-spacing:-0.075733pt;}
.ls1b{letter-spacing:-0.058667pt;}
.ls25{letter-spacing:-0.054400pt;}
.ls1e{letter-spacing:-0.046720pt;}
.ls14{letter-spacing:-0.037760pt;}
.ls2{letter-spacing:-0.014400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.002240pt;}
.lsb{letter-spacing:0.008320pt;}
.ls1d{letter-spacing:0.012267pt;}
.ls13{letter-spacing:0.018880pt;}
.ls3{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.054400pt;}
.ls9{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.094400pt;}
.lsf{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106133pt;}
.lse{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.136640pt;}
.ls1a{letter-spacing:0.150933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.261333pt;}
.lsd{letter-spacing:1.056000pt;}
.ls29{letter-spacing:7.863680pt;}
.ls21{letter-spacing:9.463680pt;}
.ls20{letter-spacing:12.983680pt;}
.ls12{letter-spacing:173.943680pt;}
.ws17{word-spacing:-31.208960pt;}
.ws0{word-spacing:-17.792000pt;}
.ws9{word-spacing:-15.016320pt;}
.ws19{word-spacing:-14.992853pt;}
.wsb{word-spacing:-14.980587pt;}
.ws7{word-spacing:-14.950720pt;}
.ws12{word-spacing:-14.910720pt;}
.ws10{word-spacing:-14.858560pt;}
.ws6{word-spacing:-14.856320pt;}
.wsc{word-spacing:-14.809600pt;}
.wsd{word-spacing:-14.801920pt;}
.ws16{word-spacing:-14.797653pt;}
.ws18{word-spacing:-14.780587pt;}
.wse{word-spacing:-14.757653pt;}
.ws11{word-spacing:-14.719787pt;}
.ws14{word-spacing:-14.696320pt;}
.ws13{word-spacing:-14.672853pt;}
.wsf{word-spacing:-14.660587pt;}
.wsa{word-spacing:-14.538453pt;}
.ws15{word-spacing:-13.392000pt;}
.ws8{word-spacing:-13.344000pt;}
.ws1{word-spacing:-10.568320pt;}
.ws3{word-spacing:-10.488320pt;}
.ws2{word-spacing:-10.248320pt;}
.ws4{word-spacing:-10.168320pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-174.275200pt;}
._b{margin-left:-173.270293pt;}
._18{margin-left:-128.154453pt;}
._f{margin-left:-120.037333pt;}
._1f{margin-left:-29.353493pt;}
._19{margin-left:-12.676693pt;}
._22{margin-left:-7.649173pt;}
._1d{margin-left:-6.492373pt;}
._c{margin-left:-2.240000pt;}
._0{margin-left:-1.068160pt;}
._2{width:0.936320pt;}
._7{width:2.610453pt;}
._26{width:3.505387pt;}
._5{width:4.416000pt;}
._6{width:5.322667pt;}
._23{width:6.220373pt;}
._24{width:7.299947pt;}
._2a{width:8.197653pt;}
._4{width:9.360000pt;}
._28{width:10.279787pt;}
._27{width:11.222400pt;}
._29{width:12.237760pt;}
._2b{width:13.413440pt;}
._25{width:15.925120pt;}
._2d{width:16.993920pt;}
._30{width:18.515840pt;}
._31{width:19.773013pt;}
._33{width:21.215680pt;}
._32{width:22.712000pt;}
._39{width:23.626560pt;}
._2f{width:24.903040pt;}
._1c{width:26.494827pt;}
._3b{width:27.428907pt;}
._20{width:28.407467pt;}
._1a{width:29.693867pt;}
._16{width:30.774187pt;}
._38{width:37.995840pt;}
._12{width:42.313067pt;}
._37{width:43.767360pt;}
._21{width:45.199787pt;}
._11{width:47.222507pt;}
._d{width:52.520107pt;}
._35{width:54.081280pt;}
._36{width:55.001173pt;}
._34{width:57.168107pt;}
._1e{width:62.937387pt;}
._8{width:74.858667pt;}
._10{width:84.634027pt;}
._17{width:96.498027pt;}
._13{width:108.254507pt;}
._1b{width:112.209067pt;}
._14{width:161.217387pt;}
._15{width:167.309867pt;}
._e{width:169.607787pt;}
._9{width:173.943680pt;}
._2c{width:174.864640pt;}
._2e{width:741.571200pt;}
._3{width:763.171200pt;}
._1{width:1120.632107pt;}
._3a{width:2077.517013pt;}
.fs3{font-size:37.440000pt;}
.fs6{font-size:40.960000pt;}
.fs5{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.893333pt;}
.y1{bottom:18.960000pt;}
.y2{bottom:20.000000pt;}
.y2c{bottom:21.413333pt;}
.y3{bottom:23.360000pt;}
.y4{bottom:24.400000pt;}
.y2b{bottom:33.760000pt;}
.y199{bottom:43.520000pt;}
.y157{bottom:45.120000pt;}
.y28{bottom:45.840000pt;}
.y136{bottom:46.000000pt;}
.y126{bottom:47.680000pt;}
.yff{bottom:49.440000pt;}
.y83{bottom:50.320000pt;}
.y89{bottom:50.480000pt;}
.y1a7{bottom:51.840000pt;}
.y86{bottom:52.880000pt;}
.y152{bottom:54.000000pt;}
.y58{bottom:54.160000pt;}
.y103{bottom:57.200000pt;}
.y147{bottom:59.280000pt;}
.y36{bottom:62.880000pt;}
.ya5{bottom:62.960000pt;}
.y27{bottom:63.680000pt;}
.y125{bottom:65.440000pt;}
.y88{bottom:66.480000pt;}
.y14d{bottom:67.200000pt;}
.yfe{bottom:67.280000pt;}
.y82{bottom:68.080000pt;}
.y61{bottom:68.320000pt;}
.y1a6{bottom:69.600000pt;}
.y151{bottom:70.000000pt;}
.y168{bottom:70.880000pt;}
.y57{bottom:72.000000pt;}
.y102{bottom:73.200000pt;}
.y135{bottom:77.120000pt;}
.y198{bottom:77.440000pt;}
.y35{bottom:78.880000pt;}
.y156{bottom:79.040000pt;}
.ya4{bottom:80.720000pt;}
.y26{bottom:81.440000pt;}
.y87{bottom:82.480000pt;}
.y124{bottom:83.200000pt;}
.y14c{bottom:84.960000pt;}
.yfd{bottom:85.040000pt;}
.y81{bottom:85.840000pt;}
.y150{bottom:86.000000pt;}
.y60{bottom:86.080000pt;}
.y1a5{bottom:87.360000pt;}
.y56{bottom:89.760000pt;}
.y146{bottom:90.400000pt;}
.y34{bottom:94.880000pt;}
.y197{bottom:98.160000pt;}
.ya3{bottom:98.560000pt;}
.y25{bottom:99.200000pt;}
.y123{bottom:100.960000pt;}
.y14f{bottom:102.000000pt;}
.yfc{bottom:102.800000pt;}
.y80{bottom:103.680000pt;}
.y5f{bottom:103.920000pt;}
.y167{bottom:104.800000pt;}
.y1a4{bottom:105.120000pt;}
.y55{bottom:107.520000pt;}
.y134{bottom:108.240000pt;}
.y33{bottom:110.880000pt;}
.y155{bottom:112.960000pt;}
.ya2{bottom:116.320000pt;}
.y24{bottom:116.960000pt;}
.y14e{bottom:118.000000pt;}
.y122{bottom:118.800000pt;}
.yfb{bottom:120.560000pt;}
.y7f{bottom:121.440000pt;}
.y145{bottom:121.520000pt;}
.y5e{bottom:121.680000pt;}
.y1a3{bottom:122.960000pt;}
.y54{bottom:125.280000pt;}
.y32{bottom:126.960000pt;}
.y196{bottom:129.280000pt;}
.ya1{bottom:134.080000pt;}
.y23{bottom:134.800000pt;}
.y121{bottom:136.560000pt;}
.y14b{bottom:138.320000pt;}
.yfa{bottom:138.400000pt;}
.y166{bottom:138.720000pt;}
.y7e{bottom:139.200000pt;}
.y133{bottom:139.360000pt;}
.y5d{bottom:139.440000pt;}
.y1a2{bottom:140.720000pt;}
.y31{bottom:142.960000pt;}
.y53{bottom:143.120000pt;}
.y154{bottom:146.880000pt;}
.ya0{bottom:151.840000pt;}
.y22{bottom:152.560000pt;}
.y144{bottom:152.640000pt;}
.y183{bottom:154.160000pt;}
.y120{bottom:154.320000pt;}
.y14a{bottom:156.080000pt;}
.yf9{bottom:156.160000pt;}
.y7d{bottom:157.040000pt;}
.y5c{bottom:157.200000pt;}
.y1a1{bottom:158.480000pt;}
.y30{bottom:158.960000pt;}
.y195{bottom:160.400000pt;}
.y52{bottom:160.880000pt;}
.y9f{bottom:169.680000pt;}
.y21{bottom:170.320000pt;}
.y132{bottom:170.400000pt;}
.y182{bottom:172.000000pt;}
.y11f{bottom:172.080000pt;}
.y165{bottom:172.640000pt;}
.yf8{bottom:173.920000pt;}
.y7c{bottom:174.800000pt;}
.y2f{bottom:174.960000pt;}
.y5b{bottom:175.040000pt;}
.y1a0{bottom:176.320000pt;}
.y51{bottom:178.640000pt;}
.y153{bottom:180.800000pt;}
.y143{bottom:183.760000pt;}
.y9e{bottom:187.440000pt;}
.ybc{bottom:187.680000pt;}
.y20{bottom:188.080000pt;}
.y181{bottom:189.760000pt;}
.y11e{bottom:189.920000pt;}
.y2e{bottom:190.960000pt;}
.y194{bottom:191.520000pt;}
.yf7{bottom:191.680000pt;}
.y7b{bottom:192.560000pt;}
.y5a{bottom:192.800000pt;}
.y19f{bottom:194.080000pt;}
.y50{bottom:196.400000pt;}
.y1ad{bottom:197.440000pt;}
.y131{bottom:201.520000pt;}
.y9d{bottom:205.200000pt;}
.ybb{bottom:205.520000pt;}
.y1f{bottom:205.920000pt;}
.y164{bottom:206.560000pt;}
.y2d{bottom:206.960000pt;}
.y180{bottom:207.520000pt;}
.y11d{bottom:207.680000pt;}
.y149{bottom:208.720000pt;}
.yf6{bottom:209.520000pt;}
.y59{bottom:209.840000pt;}
.y7a{bottom:210.320000pt;}
.y19e{bottom:211.840000pt;}
.y4f{bottom:214.240000pt;}
.y142{bottom:214.880000pt;}
.y1ac{bottom:215.200000pt;}
.yba{bottom:222.586667pt;}
.y193{bottom:222.666667pt;}
.y9c{bottom:222.986667pt;}
.y1e{bottom:223.706667pt;}
.y148{bottom:224.746667pt;}
.y17f{bottom:225.386667pt;}
.y11c{bottom:225.466667pt;}
.yf5{bottom:227.306667pt;}
.y79{bottom:228.186667pt;}
.y19d{bottom:229.626667pt;}
.y4e{bottom:232.026667pt;}
.y130{bottom:232.666667pt;}
.y1ab{bottom:235.866667pt;}
.yb9{bottom:238.586667pt;}
.y163{bottom:240.506667pt;}
.y9b{bottom:240.826667pt;}
.y1d{bottom:241.466667pt;}
.y17e{bottom:243.146667pt;}
.y11b{bottom:243.306667pt;}
.yf4{bottom:245.066667pt;}
.y78{bottom:245.946667pt;}
.y141{bottom:246.026667pt;}
.y19c{bottom:247.466667pt;}
.y4d{bottom:249.786667pt;}
.y1aa{bottom:253.546667pt;}
.y192{bottom:253.706667pt;}
.yb8{bottom:254.586667pt;}
.ycc{bottom:254.826667pt;}
.y9a{bottom:258.586667pt;}
.y1c{bottom:259.306667pt;}
.y17d{bottom:260.906667pt;}
.y11a{bottom:261.066667pt;}
.yf3{bottom:262.826667pt;}
.y77{bottom:263.706667pt;}
.y12f{bottom:263.786667pt;}
.y19b{bottom:265.146667pt;}
.y4c{bottom:267.626667pt;}
.yb7{bottom:270.586667pt;}
.yd2{bottom:271.466667pt;}
.ycb{bottom:272.586667pt;}
.y1a9{bottom:274.266667pt;}
.y162{bottom:274.426667pt;}
.y99{bottom:276.346667pt;}
.y1b{bottom:277.066667pt;}
.y140{bottom:277.146667pt;}
.y17c{bottom:278.666667pt;}
.y119{bottom:278.826667pt;}
.yf2{bottom:280.666667pt;}
.y19a{bottom:281.146667pt;}
.y76{bottom:281.466667pt;}
.y191{bottom:284.826667pt;}
.y4b{bottom:285.386667pt;}
.yd1{bottom:289.226667pt;}
.yca{bottom:290.426667pt;}
.y1a8{bottom:292.426667pt;}
.yb6{bottom:294.106667pt;}
.y98{bottom:294.186667pt;}
.y1a{bottom:294.826667pt;}
.y12e{bottom:294.906667pt;}
.y17b{bottom:296.506667pt;}
.y118{bottom:296.586667pt;}
.yf1{bottom:298.426667pt;}
.y75{bottom:299.306667pt;}
.y4a{bottom:303.146667pt;}
.yab{bottom:304.186667pt;}
.yd0{bottom:306.986667pt;}
.yc9{bottom:308.186667pt;}
.y13f{bottom:308.266667pt;}
.y161{bottom:308.346667pt;}
.yb5{bottom:310.106667pt;}
.y97{bottom:311.946667pt;}
.y19{bottom:312.586667pt;}
.y17a{bottom:314.266667pt;}
.y117{bottom:314.426667pt;}
.y190{bottom:315.946667pt;}
.yf0{bottom:316.186667pt;}
.y74{bottom:317.066667pt;}
.y49{bottom:320.906667pt;}
.yaa{bottom:321.946667pt;}
.ycf{bottom:324.746667pt;}
.yc8{bottom:325.946667pt;}
.y12d{bottom:326.026667pt;}
.yb4{bottom:326.106667pt;}
.y100{bottom:328.266667pt;}
.y96{bottom:329.706667pt;}
.y18{bottom:330.426667pt;}
.y128{bottom:330.826667pt;}
.y179{bottom:332.026667pt;}
.y116{bottom:332.186667pt;}
.yef{bottom:334.026667pt;}
.y73{bottom:334.826667pt;}
.y185{bottom:337.066667pt;}
.y48{bottom:338.746667pt;}
.y13e{bottom:339.386667pt;}
.ya9{bottom:339.786667pt;}
.yb3{bottom:342.106667pt;}
.y160{bottom:342.266667pt;}
.yce{bottom:342.586667pt;}
.yc7{bottom:343.706667pt;}
.y18f{bottom:347.066667pt;}
.y95{bottom:347.466667pt;}
.y17{bottom:348.186667pt;}
.y178{bottom:349.786667pt;}
.y115{bottom:349.946667pt;}
.y8f{bottom:351.706667pt;}
.yee{bottom:351.786667pt;}
.y72{bottom:352.666667pt;}
.y101{bottom:353.706667pt;}
.y47{bottom:356.506667pt;}
.yda{bottom:357.066667pt;}
.y12c{bottom:357.146667pt;}
.ya8{bottom:357.466667pt;}
.yb2{bottom:358.106667pt;}
.ycd{bottom:360.346667pt;}
.yc6{bottom:361.546667pt;}
.y127{bottom:364.746667pt;}
.y94{bottom:365.306667pt;}
.y16{bottom:365.946667pt;}
.y177{bottom:367.626667pt;}
.y114{bottom:367.706667pt;}
.y8e{bottom:369.546667pt;}
.y71{bottom:370.426667pt;}
.y13d{bottom:370.506667pt;}
.y46{bottom:374.266667pt;}
.yb1{bottom:374.826667pt;}
.y15f{bottom:376.186667pt;}
.ya7{bottom:378.026667pt;}
.y18e{bottom:378.186667pt;}
.yc5{bottom:379.306667pt;}
.y93{bottom:383.066667pt;}
.y15{bottom:383.706667pt;}
.y176{bottom:385.386667pt;}
.y113{bottom:385.546667pt;}
.y8d{bottom:387.306667pt;}
.y70{bottom:388.186667pt;}
.y12b{bottom:388.266667pt;}
.yb0{bottom:391.866667pt;}
.y45{bottom:392.026667pt;}
.yd9{bottom:392.666667pt;}
.yc4{bottom:397.066667pt;}
.ya6{bottom:398.666667pt;}
.y92{bottom:400.826667pt;}
.y14{bottom:401.546667pt;}
.y13c{bottom:401.626667pt;}
.y175{bottom:403.146667pt;}
.y112{bottom:403.306667pt;}
.y8c{bottom:405.066667pt;}
.yed{bottom:405.146667pt;}
.y6f{bottom:405.946667pt;}
.yaf{bottom:407.866667pt;}
.y18d{bottom:409.306667pt;}
.y44{bottom:409.893333pt;}
.y15e{bottom:410.133333pt;}
.yd8{bottom:410.453333pt;}
.yc3{bottom:414.933333pt;}
.y91{bottom:418.613333pt;}
.y13{bottom:419.333333pt;}
.y12a{bottom:419.413333pt;}
.y174{bottom:421.013333pt;}
.y111{bottom:421.093333pt;}
.y8b{bottom:422.933333pt;}
.y6e{bottom:423.813333pt;}
.yae{bottom:423.893333pt;}
.y43{bottom:427.653333pt;}
.yd7{bottom:428.213333pt;}
.yc2{bottom:432.693333pt;}
.y13b{bottom:432.773333pt;}
.y90{bottom:436.453333pt;}
.y12{bottom:437.093333pt;}
.y173{bottom:438.773333pt;}
.y110{bottom:438.853333pt;}
.yad{bottom:439.893333pt;}
.y18c{bottom:440.453333pt;}
.y8a{bottom:440.693333pt;}
.y6d{bottom:441.573333pt;}
.y84{bottom:441.653333pt;}
.y15d{bottom:444.053333pt;}
.y42{bottom:445.413333pt;}
.yd6{bottom:445.973333pt;}
.yc1{bottom:450.453333pt;}
.y129{bottom:450.533333pt;}
.y11{bottom:454.933333pt;}
.yac{bottom:455.973333pt;}
.y172{bottom:456.533333pt;}
.y10f{bottom:456.693333pt;}
.yec{bottom:458.453333pt;}
.y6c{bottom:459.333333pt;}
.y41{bottom:463.173333pt;}
.yd5{bottom:463.813333pt;}
.y13a{bottom:463.893333pt;}
.y18b{bottom:471.573333pt;}
.y10{bottom:472.693333pt;}
.y171{bottom:474.293333pt;}
.y10e{bottom:474.453333pt;}
.yeb{bottom:476.293333pt;}
.y6b{bottom:477.093333pt;}
.y15c{bottom:477.973333pt;}
.y40{bottom:481.013333pt;}
.yc0{bottom:481.653333pt;}
.yf{bottom:490.453333pt;}
.y170{bottom:492.133333pt;}
.y10d{bottom:492.213333pt;}
.yea{bottom:494.053333pt;}
.y6a{bottom:494.933333pt;}
.yd4{bottom:495.013333pt;}
.y3f{bottom:498.773333pt;}
.ybf{bottom:499.333333pt;}
.y18a{bottom:502.693333pt;}
.ye{bottom:508.213333pt;}
.y16f{bottom:509.893333pt;}
.y10c{bottom:510.053333pt;}
.ye9{bottom:511.813333pt;}
.y15b{bottom:511.893333pt;}
.y69{bottom:512.693333pt;}
.ydf{bottom:512.773333pt;}
.y3e{bottom:516.533333pt;}
.ybe{bottom:517.173333pt;}
.yd{bottom:526.053333pt;}
.yd3{bottom:526.133333pt;}
.y16e{bottom:527.653333pt;}
.y10b{bottom:527.813333pt;}
.ye8{bottom:529.653333pt;}
.y68{bottom:530.453333pt;}
.y189{bottom:533.813333pt;}
.y3d{bottom:534.373333pt;}
.yc{bottom:543.813333pt;}
.yde{bottom:543.893333pt;}
.y16d{bottom:545.413333pt;}
.y10a{bottom:545.573333pt;}
.y15a{bottom:545.813333pt;}
.ye7{bottom:547.413333pt;}
.y67{bottom:548.213333pt;}
.ybd{bottom:548.293333pt;}
.y3c{bottom:552.133333pt;}
.y139{bottom:557.173333pt;}
.yb{bottom:561.573333pt;}
.y16c{bottom:563.253333pt;}
.y109{bottom:563.333333pt;}
.y188{bottom:564.933333pt;}
.ye6{bottom:565.173333pt;}
.y66{bottom:566.053333pt;}
.y3b{bottom:569.893333pt;}
.ydd{bottom:575.013333pt;}
.ya{bottom:579.333333pt;}
.y159{bottom:579.733333pt;}
.y16b{bottom:581.013333pt;}
.y108{bottom:581.173333pt;}
.ye5{bottom:582.933333pt;}
.y65{bottom:583.813333pt;}
.y3a{bottom:587.653333pt;}
.y138{bottom:588.293333pt;}
.y137{bottom:590.853333pt;}
.y187{bottom:596.053333pt;}
.y9{bottom:597.173333pt;}
.y16a{bottom:598.773333pt;}
.y107{bottom:598.933333pt;}
.ye4{bottom:600.773333pt;}
.y64{bottom:601.573333pt;}
.y85{bottom:601.653333pt;}
.y39{bottom:605.520000pt;}
.ydc{bottom:606.160000pt;}
.y158{bottom:613.680000pt;}
.y8{bottom:614.960000pt;}
.y169{bottom:616.560000pt;}
.y106{bottom:616.720000pt;}
.y184{bottom:618.480000pt;}
.ye3{bottom:618.560000pt;}
.y63{bottom:619.440000pt;}
.y38{bottom:623.280000pt;}
.y186{bottom:627.040000pt;}
.y7{bottom:632.720000pt;}
.y105{bottom:634.480000pt;}
.ye2{bottom:636.320000pt;}
.y62{bottom:637.200000pt;}
.y37{bottom:641.040000pt;}
.ye0{bottom:647.600000pt;}
.y6{bottom:650.480000pt;}
.ydb{bottom:650.560000pt;}
.y104{bottom:651.520000pt;}
.ye1{bottom:654.080000pt;}
.y2a{bottom:668.720000pt;}
.y29{bottom:681.120000pt;}
.hb{height:27.300000pt;}
.h7{height:37.406250pt;}
.h5{height:39.945469pt;}
.h6{height:40.080000pt;}
.ha{height:40.088437pt;}
.h4{height:42.187500pt;}
.h9{height:42.914062pt;}
.h8{height:46.968750pt;}
.h2{height:47.777656pt;}
.h3{height:57.218750pt;}
.h1{height:699.333333pt;}
.h0{height:699.360000pt;}
.w1{width:699.333333pt;}
.w0{width:699.360000pt;}
.w2{width:1341.920000pt;}
.w3{width:1342.000000pt;}
.x0{left:0.000000pt;}
.x25{left:47.280000pt;}
.x1{left:48.880000pt;}
.x2{left:66.640000pt;}
.x3{left:84.400000pt;}
.x2c{left:94.480000pt;}
.x4{left:102.186667pt;}
.x39{left:113.440000pt;}
.x5{left:120.026667pt;}
.x6{left:137.786667pt;}
.x7{left:155.546667pt;}
.x8{left:173.306667pt;}
.x9{left:191.146667pt;}
.xa{left:208.906667pt;}
.xb{left:226.666667pt;}
.xc{left:244.426667pt;}
.x2e{left:249.386667pt;}
.x37{left:256.586667pt;}
.x36{left:257.866667pt;}
.x35{left:261.066667pt;}
.xd{left:262.266667pt;}
.xe{left:280.026667pt;}
.xf{left:297.813333pt;}
.x2b{left:306.346667pt;}
.x10{left:315.653333pt;}
.x29{left:317.946667pt;}
.x2f{left:319.066667pt;}
.x11{left:333.413333pt;}
.x2d{left:337.866667pt;}
.x2a{left:340.506667pt;}
.x26{left:349.706667pt;}
.x12{left:351.173333pt;}
.x32{left:356.906667pt;}
.x31{left:358.186667pt;}
.x13{left:368.933333pt;}
.x33{left:378.986667pt;}
.x14{left:386.773333pt;}
.x30{left:395.786667pt;}
.x34{left:403.333333pt;}
.x15{left:404.533333pt;}
.x38{left:414.773333pt;}
.x16{left:422.293333pt;}
.x17{left:440.053333pt;}
.x3b{left:449.333333pt;}
.x18{left:457.893333pt;}
.x19{left:475.653333pt;}
.x27{left:481.253333pt;}
.x1a{left:493.440000pt;}
.x3a{left:496.533333pt;}
.x1b{left:511.280000pt;}
.x1c{left:529.040000pt;}
.x1d{left:546.800000pt;}
.x1e{left:564.560000pt;}
.x1f{left:582.400000pt;}
.x20{left:600.160000pt;}
.x21{left:617.920000pt;}
.x22{left:637.840000pt;}
.x28{left:652.133333pt;}
.x23{left:656.000000pt;}
.x24{left:669.680000pt;}
}

