
    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_3133ae0fec1b6f3c980702ef.woff')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_eec78a7554e8d1ebe8b355cf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_30fa922fbc77cb23119d866c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_1d5710df385f176f3c589c44.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_d8a5c1fc810a518c5c9c89ef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_0bc26bd4f08c6999b163fcc3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_24a4f013effcb5c8ec269845.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6990d95cf189dba9564a8121.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b51958a53f843d038bf6ad2a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-71.784000px;}
.v0{vertical-align:0.000000px;}
.ls44{letter-spacing:-3.521520px;}
.ls2d{letter-spacing:-3.312000px;}
.ls3e{letter-spacing:-3.135600px;}
.ls4e{letter-spacing:-3.087360px;}
.ls45{letter-spacing:-2.846160px;}
.ls20{letter-spacing:-2.583360px;}
.ls7{letter-spacing:-2.527200px;}
.ls4d{letter-spacing:-2.509920px;}
.lsd{letter-spacing:-2.450880px;}
.ls3f{letter-spacing:-2.412000px;}
.ls43{letter-spacing:-2.390400px;}
.lsc{letter-spacing:-2.384640px;}
.ls2b{letter-spacing:-2.318400px;}
.ls4c{letter-spacing:-2.270880px;}
.lse{letter-spacing:-2.252160px;}
.ls25{letter-spacing:-2.211120px;}
.ls9{letter-spacing:-2.190240px;}
.lsb{letter-spacing:-2.185920px;}
.ls11{letter-spacing:-2.160000px;}
.ls49{letter-spacing:-2.122560px;}
.lsf{letter-spacing:-2.119680px;}
.ls4{letter-spacing:-2.106000px;}
.ls40{letter-spacing:-2.091600px;}
.ls12{letter-spacing:-2.053440px;}
.ls26{letter-spacing:-2.031840px;}
.ls6{letter-spacing:-2.021760px;}
.lsa{letter-spacing:-1.987200px;}
.ls41{letter-spacing:-1.972080px;}
.ls42{letter-spacing:-1.912320px;}
.ls18{letter-spacing:-1.854720px;}
.ls22{letter-spacing:-1.792800px;}
.ls4b{letter-spacing:-1.736640px;}
.ls10{letter-spacing:-1.656000px;}
.ls5{letter-spacing:-1.516320px;}
.ls24{letter-spacing:-1.494000px;}
.ls2a{letter-spacing:-1.457280px;}
.ls4a{letter-spacing:-1.398960px;}
.ls3{letter-spacing:-1.347840px;}
.ls29{letter-spacing:-1.324800px;}
.ls23{letter-spacing:-1.314720px;}
.ls8{letter-spacing:-1.263600px;}
.ls47{letter-spacing:-1.254960px;}
.ls48{letter-spacing:-1.206000px;}
.ls21{letter-spacing:-1.192320px;}
.ls36{letter-spacing:-1.126080px;}
.ls46{letter-spacing:-1.075680px;}
.ls19{letter-spacing:-0.728640px;}
.ls17{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.728640px;}
.ls31{letter-spacing:0.735264px;}
.ls2e{letter-spacing:0.814752px;}
.ls14{letter-spacing:0.907488px;}
.ls28{letter-spacing:1.457280px;}
.ls1e{letter-spacing:1.613520px;}
.ls0{letter-spacing:1.622880px;}
.ls33{letter-spacing:2.848320px;}
.ls1a{letter-spacing:3.576960px;}
.ls30{letter-spacing:3.696192px;}
.ls37{letter-spacing:4.305600px;}
.ls35{letter-spacing:4.471200px;}
.ls13{letter-spacing:4.848768px;}
.ls15{letter-spacing:5.034240px;}
.ls16{letter-spacing:5.451552px;}
.ls39{letter-spacing:5.940000px;}
.ls2f{letter-spacing:6.604128px;}
.ls38{letter-spacing:6.660000px;}
.ls27{letter-spacing:7.220160px;}
.ls2c{letter-spacing:7.344000px;}
.ls3a{letter-spacing:7.380000px;}
.ls3b{letter-spacing:8.100000px;}
.ls3c{letter-spacing:8.820000px;}
.ls34{letter-spacing:9.339840px;}
.ls1b{letter-spacing:12.254400px;}
.ls1{letter-spacing:14.544000px;}
.ls32{letter-spacing:15.831360px;}
.ls1d{letter-spacing:66.971520px;}
.ls3d{letter-spacing:212.566320px;}
.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;}
}
.ws27{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws79{word-spacing:-15.433920px;}
.ws3c{word-spacing:-15.367680px;}
.ws58{word-spacing:-15.102720px;}
.ws81{word-spacing:-14.940000px;}
.ws28{word-spacing:-14.705280px;}
.ws59{word-spacing:-14.572800px;}
.ws29{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.374080px;}
.ws4{word-spacing:-14.307840px;}
.ws5a{word-spacing:-14.241600px;}
.ws5b{word-spacing:-14.109120px;}
.ws3b{word-spacing:-13.976640px;}
.ws88{word-spacing:-13.446000px;}
.ws84{word-spacing:-13.147200px;}
.ws86{word-spacing:-13.027680px;}
.ws0{word-spacing:-12.983040px;}
.ws8b{word-spacing:-12.908160px;}
.ws83{word-spacing:-12.848400px;}
.ws85{word-spacing:-12.728880px;}
.wsa4{word-spacing:-12.669120px;}
.ws1{word-spacing:-12.585600px;}
.ws87{word-spacing:-12.549600px;}
.ws2{word-spacing:-12.519360px;}
.ws8c{word-spacing:-10.854000px;}
.ws8d{word-spacing:-10.661040px;}
.wsa5{word-spacing:-9.937440px;}
.ws82{word-spacing:-9.648000px;}
.ws8a{word-spacing:-9.213840px;}
.ws89{word-spacing:-8.538480px;}
.ws6{word-spacing:-1.095120px;}
.ws9{word-spacing:-0.926640px;}
.ws7f{word-spacing:-0.861120px;}
.ws53{word-spacing:-0.657360px;}
.wse{word-spacing:-0.421200px;}
.ws7{word-spacing:-0.336960px;}
.ws1a{word-spacing:-0.331200px;}
.ws8{word-spacing:-0.252720px;}
.ws72{word-spacing:-0.179280px;}
.ws3e{word-spacing:-0.132480px;}
.ws5{word-spacing:0.000000px;}
.ws4a{word-spacing:0.059760px;}
.wsc{word-spacing:0.084240px;}
.ws3d{word-spacing:0.162000px;}
.wsf{word-spacing:0.198720px;}
.wsa{word-spacing:0.252720px;}
.ws20{word-spacing:0.264960px;}
.ws2a{word-spacing:0.324000px;}
.ws10{word-spacing:0.397440px;}
.ws21{word-spacing:0.463680px;}
.ws70{word-spacing:0.537840px;}
.ws3f{word-spacing:0.596160px;}
.ws99{word-spacing:0.717120px;}
.ws30{word-spacing:0.728640px;}
.ws50{word-spacing:0.776880px;}
.ws91{word-spacing:0.956160px;}
.ws9b{word-spacing:1.075680px;}
.ws60{word-spacing:1.126080px;}
.ws51{word-spacing:1.254960px;}
.wsd{word-spacing:1.263600px;}
.ws2b{word-spacing:1.324800px;}
.ws25{word-spacing:1.457280px;}
.ws47{word-spacing:1.494000px;}
.wsb{word-spacing:1.516320px;}
.ws11{word-spacing:1.589760px;}
.ws17{word-spacing:1.656000px;}
.wsa7{word-spacing:1.736640px;}
.ws94{word-spacing:1.792800px;}
.ws62{word-spacing:1.854720px;}
.ws46{word-spacing:1.972080px;}
.ws56{word-spacing:2.053440px;}
.wsa2{word-spacing:2.122560px;}
.ws2e{word-spacing:2.185920px;}
.ws6d{word-spacing:2.252160px;}
.ws1f{word-spacing:2.318400px;}
.ws9a{word-spacing:2.412000px;}
.ws1d{word-spacing:2.517120px;}
.ws6b{word-spacing:2.583360px;}
.ws48{word-spacing:2.689200px;}
.ws26{word-spacing:2.782080px;}
.wsa0{word-spacing:2.846160px;}
.ws2d{word-spacing:2.914560px;}
.ws49{word-spacing:2.928240px;}
.wsab{word-spacing:3.087360px;}
.ws4c{word-spacing:3.107520px;}
.ws8e{word-spacing:3.135600px;}
.ws18{word-spacing:3.245760px;}
.ws4d{word-spacing:3.406320px;}
.ws69{word-spacing:3.444480px;}
.ws3a{word-spacing:3.510720px;}
.ws2c{word-spacing:3.643200px;}
.ws6f{word-spacing:3.645360px;}
.ws4e{word-spacing:3.824640px;}
.ws12{word-spacing:3.841920px;}
.ws19{word-spacing:3.974400px;}
.ws76{word-spacing:4.040640px;}
.wsa3{word-spacing:4.123440px;}
.ws39{word-spacing:4.239360px;}
.wsa8{word-spacing:4.242960px;}
.wsa1{word-spacing:4.302720px;}
.ws71{word-spacing:4.362480px;}
.ws24{word-spacing:4.371840px;}
.wsa9{word-spacing:4.541760px;}
.ws1b{word-spacing:4.703040px;}
.ws63{word-spacing:4.769280px;}
.wsac{word-spacing:4.840560px;}
.ws7d{word-spacing:4.901760px;}
.ws35{word-spacing:4.968000px;}
.ws52{word-spacing:5.079600px;}
.ws2f{word-spacing:5.100480px;}
.ws1c{word-spacing:5.431680px;}
.ws77{word-spacing:5.497920px;}
.wsaa{word-spacing:5.557680px;}
.ws22{word-spacing:5.630400px;}
.ws23{word-spacing:5.762880px;}
.ws16{word-spacing:5.895360px;}
.ws15{word-spacing:5.961600px;}
.wsb0{word-spacing:5.976000px;}
.wsaf{word-spacing:6.274800px;}
.ws5c{word-spacing:6.359040px;}
.ws41{word-spacing:6.491520px;}
.ws67{word-spacing:6.756480px;}
.ws97{word-spacing:6.991920px;}
.ws40{word-spacing:7.087680px;}
.ws31{word-spacing:7.220160px;}
.ws9f{word-spacing:7.410240px;}
.ws34{word-spacing:7.816320px;}
.ws9e{word-spacing:7.888320px;}
.ws54{word-spacing:7.948800px;}
.ws6c{word-spacing:8.213760px;}
.ws36{word-spacing:8.346240px;}
.ws57{word-spacing:8.544960px;}
.ws37{word-spacing:8.677440px;}
.ws38{word-spacing:8.743680px;}
.ws92{word-spacing:9.203040px;}
.ws55{word-spacing:9.273600px;}
.ws32{word-spacing:9.406080px;}
.ws8f{word-spacing:9.442080px;}
.ws93{word-spacing:9.920160px;}
.ws7c{word-spacing:9.936000px;}
.ws68{word-spacing:10.002240px;}
.ws33{word-spacing:10.134720px;}
.ws1e{word-spacing:10.267200px;}
.ws61{word-spacing:10.399680px;}
.ws13{word-spacing:10.465920px;}
.wsae{word-spacing:10.637280px;}
.ws5f{word-spacing:10.664640px;}
.ws43{word-spacing:10.797120px;}
.ws90{word-spacing:10.876320px;}
.ws6a{word-spacing:11.062080px;}
.ws64{word-spacing:11.194560px;}
.wsad{word-spacing:11.354400px;}
.ws78{word-spacing:11.393280px;}
.ws65{word-spacing:11.525760px;}
.ws66{word-spacing:11.592000px;}
.ws95{word-spacing:11.593440px;}
.ws96{word-spacing:12.071520px;}
.ws44{word-spacing:12.850560px;}
.ws73{word-spacing:12.983040px;}
.ws6e{word-spacing:13.380480px;}
.ws42{word-spacing:13.711680px;}
.ws14{word-spacing:14.042880px;}
.ws7e{word-spacing:14.307840px;}
.ws5e{word-spacing:14.440320px;}
.ws7b{word-spacing:14.837760px;}
.ws5d{word-spacing:15.168960px;}
.ws7a{word-spacing:15.897600px;}
.ws80{word-spacing:16.560000px;}
.ws4b{word-spacing:17.091360px;}
.ws74{word-spacing:17.686080px;}
.ws45{word-spacing:18.017280px;}
.ws75{word-spacing:18.745920px;}
.wsa6{word-spacing:49.003200px;}
.ws9c{word-spacing:213.642000px;}
.ws9d{word-spacing:214.598160px;}
.ws98{word-spacing:717.896880px;}
._4{margin-left:-2.374416px;}
._1{margin-left:-1.162512px;}
._2{width:1.061424px;}
._3{width:2.118960px;}
._6{width:3.434976px;}
._c{width:4.835520px;}
._7{width:5.961600px;}
._9{width:7.220160px;}
._b{width:8.677440px;}
._a{width:9.962928px;}
._d{width:13.870368px;}
._0{width:401.706720px;}
._8{width:705.874608px;}
._5{width:1415.502000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.080000px;}
.ybb{bottom:98.425800px;}
.y79{bottom:101.653920px;}
.y28{bottom:101.890800px;}
.y115{bottom:107.364240px;}
.yfb{bottom:107.439840px;}
.ya8{bottom:108.891930px;}
.ya3{bottom:112.587840px;}
.yd1{bottom:113.916810px;}
.yba{bottom:115.711380px;}
.y78{bottom:118.939500px;}
.y27{bottom:120.785760px;}
.y11e{bottom:126.196560px;}
.y114{bottom:126.259200px;}
.yfa{bottom:126.334800px;}
.ya7{bottom:127.786890px;}
.y134{bottom:128.688840px;}
.ya2{bottom:131.482800px;}
.yd0{bottom:132.993930px;}
.yb9{bottom:132.996960px;}
.y77{bottom:136.045800px;}
.y26{bottom:139.680720px;}
.y11d{bottom:145.273680px;}
.y113{bottom:145.336320px;}
.yf9{bottom:145.411920px;}
.y133{bottom:145.974420px;}
.ya6{bottom:146.681850px;}
.yb8{bottom:150.282540px;}
.ya1{bottom:150.377760px;}
.ycf{bottom:151.888890px;}
.y76{bottom:153.331380px;}
.y25{bottom:158.757840px;}
.y132{bottom:163.251900px;}
.y11c{bottom:164.168640px;}
.y112{bottom:164.231280px;}
.yf8{bottom:164.306880px;}
.ya5{bottom:165.758970px;}
.yb7{bottom:167.568120px;}
.ya0{bottom:169.454880px;}
.y75{bottom:170.616960px;}
.yce{bottom:170.966010px;}
.y24{bottom:177.652800px;}
.y11b{bottom:183.063600px;}
.y111{bottom:183.126240px;}
.yf7{bottom:183.201840px;}
.ya4{bottom:184.653930px;}
.yb6{bottom:184.674420px;}
.y131{bottom:185.034420px;}
.y74{bottom:187.902540px;}
.y9f{bottom:188.349840px;}
.ycd{bottom:189.860970px;}
.y23{bottom:196.200000px;}
.yb5{bottom:201.960000px;}
.y11a{bottom:202.140720px;}
.y110{bottom:202.203360px;}
.yf6{bottom:202.278960px;}
.y130{bottom:202.311180px;}
.y4e{bottom:203.731050px;}
.y73{bottom:205.188120px;}
.y9e{bottom:207.426960px;}
.ycc{bottom:208.755930px;}
.y22{bottom:217.548720px;}
.yb4{bottom:219.806640px;}
.y119{bottom:221.035680px;}
.y10f{bottom:221.098320px;}
.yf5{bottom:221.173920px;}
.y72{bottom:222.294420px;}
.y4d{bottom:222.626010px;}
.y12f{bottom:223.914420px;}
.y9d{bottom:226.321920px;}
.ycb{bottom:227.833050px;}
.y21{bottom:237.702240px;}
.yb3{bottom:238.701600px;}
.y118{bottom:240.112800px;}
.y10e{bottom:240.175440px;}
.yf4{bottom:240.251040px;}
.y12e{bottom:241.200000px;}
.y4c{bottom:241.520970px;}
.y9c{bottom:245.216880px;}
.yca{bottom:246.728010px;}
.y71{bottom:257.526000px;}
.yb2{bottom:257.596560px;}
.y20{bottom:257.855760px;}
.y117{bottom:258.660000px;}
.y10d{bottom:259.070400px;}
.yf3{bottom:259.146000px;}
.y4b{bottom:260.598090px;}
.y12d{bottom:262.963260px;}
.y9b{bottom:264.294000px;}
.yc9{bottom:265.805130px;}
.y70{bottom:276.420960px;}
.yb1{bottom:276.673680px;}
.y1f{bottom:278.009280px;}
.y10c{bottom:278.147520px;}
.yf2{bottom:278.223120px;}
.y116{bottom:279.128730px;}
.y4a{bottom:279.493050px;}
.y12c{bottom:280.248840px;}
.y9a{bottom:283.188960px;}
.yc8{bottom:284.700090px;}
.y6f{bottom:295.315920px;}
.yb0{bottom:295.568640px;}
.y10b{bottom:297.042480px;}
.yf1{bottom:297.118080px;}
.y12b{bottom:297.534420px;}
.y1e{bottom:298.162800px;}
.y49{bottom:298.570170px;}
.y99{bottom:302.266080px;}
.yc7{bottom:303.595050px;}
.y6e{bottom:314.393040px;}
.yaf{bottom:314.645760px;}
.y12a{bottom:314.816760px;}
.y10a{bottom:315.937440px;}
.yf0{bottom:316.013040px;}
.y48{bottom:317.465130px;}
.y1d{bottom:318.316320px;}
.y98{bottom:321.161040px;}
.yc6{bottom:322.672170px;}
.y6d{bottom:333.288000px;}
.yae{bottom:333.540720px;}
.y109{bottom:335.014560px;}
.yef{bottom:335.090160px;}
.y129{bottom:336.420000px;}
.y47{bottom:336.542250px;}
.y1c{bottom:338.469840px;}
.y97{bottom:340.056000px;}
.yc5{bottom:341.567130px;}
.y6c{bottom:352.365120px;}
.yad{bottom:352.435680px;}
.y108{bottom:353.909520px;}
.yee{bottom:353.985120px;}
.y46{bottom:355.437210px;}
.y128{bottom:358.200000px;}
.y1b{bottom:358.623360px;}
.y96{bottom:359.133120px;}
.yc4{bottom:360.644250px;}
.y6b{bottom:371.260080px;}
.yac{bottom:371.512800px;}
.y107{bottom:372.986640px;}
.yed{bottom:373.062240px;}
.y45{bottom:374.332170px;}
.y127{bottom:375.468840px;}
.y95{bottom:378.028080px;}
.y1a{bottom:378.776880px;}
.yc3{bottom:379.539210px;}
.yab{bottom:390.060000px;}
.y6a{bottom:390.155040px;}
.y106{bottom:391.881600px;}
.yec{bottom:391.957200px;}
.y126{bottom:392.754420px;}
.y44{bottom:393.409290px;}
.y94{bottom:397.105200px;}
.yc2{bottom:398.434170px;}
.y19{bottom:398.930400px;}
.y69{bottom:409.232160px;}
.y125{bottom:410.040000px;}
.yaa{bottom:410.767200px;}
.y105{bottom:410.776560px;}
.yeb{bottom:410.852160px;}
.y43{bottom:412.304250px;}
.y93{bottom:416.000160px;}
.yc1{bottom:417.511290px;}
.y18{bottom:418.918320px;}
.y68{bottom:428.127120px;}
.ya9{bottom:429.480000px;}
.y104{bottom:429.853680px;}
.yea{bottom:429.929280px;}
.y42{bottom:431.381370px;}
.y124{bottom:431.814420px;}
.y92{bottom:435.077280px;}
.yc0{bottom:436.406250px;}
.y17{bottom:439.071840px;}
.y67{bottom:447.204240px;}
.y103{bottom:448.748640px;}
.ye9{bottom:448.824240px;}
.y123{bottom:449.091180px;}
.y41{bottom:450.276330px;}
.y91{bottom:453.972240px;}
.ybf{bottom:455.483370px;}
.y16{bottom:459.225360px;}
.y66{bottom:466.099200px;}
.y102{bottom:467.825760px;}
.ye8{bottom:467.901360px;}
.y40{bottom:469.171290px;}
.y122{bottom:470.694420px;}
.y90{bottom:472.867200px;}
.ybe{bottom:474.378330px;}
.y14a{bottom:477.744480px;}
.y15{bottom:479.378880px;}
.y65{bottom:484.994160px;}
.y101{bottom:486.720720px;}
.ye7{bottom:486.796320px;}
.y121{bottom:487.980000px;}
.y3f{bottom:488.248410px;}
.y8f{bottom:491.580000px;}
.ybd{bottom:493.455450px;}
.y149{bottom:497.003760px;}
.y14{bottom:499.532400px;}
.y64{bottom:504.071280px;}
.y100{bottom:505.615680px;}
.y120{bottom:505.627200px;}
.ye6{bottom:505.691280px;}
.y3e{bottom:507.143370px;}
.y8e{bottom:511.986090px;}
.ybc{bottom:512.350410px;}
.y148{bottom:515.716560px;}
.y13{bottom:519.685920px;}
.y63{bottom:522.966240px;}
.y11f{bottom:524.340000px;}
.yff{bottom:524.692800px;}
.ye5{bottom:524.768400px;}
.y3d{bottom:526.220490px;}
.y8d{bottom:531.245370px;}
.y147{bottom:534.611520px;}
.y12{bottom:539.839440px;}
.y62{bottom:542.043360px;}
.yfe{bottom:543.240000px;}
.ye4{bottom:543.663360px;}
.y3c{bottom:545.115450px;}
.y8c{bottom:550.322490px;}
.y146{bottom:553.688640px;}
.y11{bottom:559.992960px;}
.y61{bottom:560.938320px;}
.ye3{bottom:562.740480px;}
.yfd{bottom:563.646090px;}
.y3b{bottom:564.010410px;}
.y8b{bottom:569.217450px;}
.y145{bottom:572.583600px;}
.y60{bottom:579.833280px;}
.y10{bottom:580.146480px;}
.ye2{bottom:581.635440px;}
.yfc{bottom:582.723210px;}
.y3a{bottom:583.087530px;}
.y8a{bottom:588.294570px;}
.y144{bottom:591.478560px;}
.y5f{bottom:598.910400px;}
.yf{bottom:600.300000px;}
.ye1{bottom:600.530400px;}
.y39{bottom:601.982490px;}
.y89{bottom:607.189530px;}
.y143{bottom:610.920000px;}
.y5e{bottom:617.805360px;}
.ye0{bottom:619.607520px;}
.ye{bottom:620.299440px;}
.y38{bottom:621.059610px;}
.y88{bottom:626.084490px;}
.y142{bottom:629.424360px;}
.y5d{bottom:636.882480px;}
.ydf{bottom:638.502480px;}
.y37{bottom:639.954570px;}
.yd{bottom:640.452960px;}
.y87{bottom:645.161610px;}
.y141{bottom:646.709940px;}
.y5c{bottom:655.777440px;}
.yde{bottom:657.579600px;}
.y36{bottom:658.849530px;}
.yc{bottom:660.606480px;}
.y140{bottom:663.816240px;}
.y86{bottom:664.056570px;}
.y5b{bottom:674.672400px;}
.ydd{bottom:676.474560px;}
.y35{bottom:677.926650px;}
.yb{bottom:680.760000px;}
.y13f{bottom:681.101820px;}
.y85{bottom:683.133690px;}
.y5a{bottom:693.749520px;}
.ydc{bottom:695.369520px;}
.y34{bottom:696.821610px;}
.y13e{bottom:698.387400px;}
.ya{bottom:701.986680px;}
.y84{bottom:702.028650px;}
.y59{bottom:712.644480px;}
.ydb{bottom:714.446640px;}
.y13d{bottom:715.672980px;}
.y33{bottom:715.898730px;}
.y83{bottom:720.923610px;}
.y9{bottom:727.722000px;}
.y58{bottom:731.721600px;}
.y13c{bottom:732.600000px;}
.yda{bottom:733.341600px;}
.y32{bottom:734.793690px;}
.y82{bottom:740.000730px;}
.y13b{bottom:750.240720px;}
.y57{bottom:750.616560px;}
.yd9{bottom:752.418720px;}
.y8{bottom:753.288840px;}
.y31{bottom:753.688650px;}
.y81{bottom:758.895690px;}
.y13a{bottom:769.500000px;}
.y56{bottom:769.693680px;}
.yd8{bottom:771.313680px;}
.y30{bottom:772.765770px;}
.y80{bottom:777.972810px;}
.y7{bottom:779.024160px;}
.y55{bottom:788.588640px;}
.yd7{bottom:790.390800px;}
.y2f{bottom:791.660730px;}
.y139{bottom:792.534270px;}
.y7f{bottom:796.867770px;}
.y6{bottom:804.591000px;}
.y54{bottom:807.483600px;}
.yd6{bottom:809.285760px;}
.y138{bottom:809.811900px;}
.y2e{bottom:810.737850px;}
.y7e{bottom:815.762730px;}
.y53{bottom:826.560720px;}
.yd5{bottom:828.180720px;}
.y2d{bottom:829.632810px;}
.y5{bottom:830.326320px;}
.y137{bottom:831.594420px;}
.y7d{bottom:834.839850px;}
.y52{bottom:845.455680px;}
.yd4{bottom:847.257840px;}
.y2c{bottom:848.709930px;}
.y136{bottom:848.880000px;}
.y7c{bottom:853.368840px;}
.y4{bottom:855.893160px;}
.y51{bottom:864.532800px;}
.yd3{bottom:866.152800px;}
.y2b{bottom:867.604890px;}
.y7b{bottom:870.654420px;}
.y135{bottom:870.659850px;}
.y3{bottom:881.460000px;}
.y50{bottom:883.080000px;}
.yd2{bottom:884.700000px;}
.y2a{bottom:886.499850px;}
.y7a{bottom:887.940000px;}
.y4f{bottom:900.180000px;}
.y1{bottom:933.479850px;}
.y29{bottom:939.600000px;}
.h9{height:5.805000px;}
.h3{height:44.534180px;}
.h2{height:44.820000px;}
.h5{height:54.628594px;}
.hf{height:58.621992px;}
.ha{height:58.651172px;}
.he{height:58.664132px;}
.h12{height:58.682972px;}
.h11{height:58.683572px;}
.hc{height:58.686452px;}
.hd{height:58.695812px;}
.h10{height:58.718132px;}
.h13{height:60.226875px;}
.h8{height:64.978594px;}
.h7{height:65.010937px;}
.hb{height:66.757500px;}
.h4{height:69.473320px;}
.h6{height:75.093750px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760000px;}
.x3{left:118.448280px;}
.xc{left:122.762880px;}
.xa{left:127.787040px;}
.xb{left:148.680000px;}
.x4{left:183.249900px;}
.x5{left:335.703240px;}
.x7{left:343.627200px;}
.x6{left:430.030980px;}
.x9{left:474.120000px;}
.x8{left:496.260720px;}
.x2{left:627.300000px;}
@media print{
.v1{vertical-align:-63.808000pt;}
.v0{vertical-align:0.000000pt;}
.ls44{letter-spacing:-3.130240pt;}
.ls2d{letter-spacing:-2.944000pt;}
.ls3e{letter-spacing:-2.787200pt;}
.ls4e{letter-spacing:-2.744320pt;}
.ls45{letter-spacing:-2.529920pt;}
.ls20{letter-spacing:-2.296320pt;}
.ls7{letter-spacing:-2.246400pt;}
.ls4d{letter-spacing:-2.231040pt;}
.lsd{letter-spacing:-2.178560pt;}
.ls3f{letter-spacing:-2.144000pt;}
.ls43{letter-spacing:-2.124800pt;}
.lsc{letter-spacing:-2.119680pt;}
.ls2b{letter-spacing:-2.060800pt;}
.ls4c{letter-spacing:-2.018560pt;}
.lse{letter-spacing:-2.001920pt;}
.ls25{letter-spacing:-1.965440pt;}
.ls9{letter-spacing:-1.946880pt;}
.lsb{letter-spacing:-1.943040pt;}
.ls11{letter-spacing:-1.920000pt;}
.ls49{letter-spacing:-1.886720pt;}
.lsf{letter-spacing:-1.884160pt;}
.ls4{letter-spacing:-1.872000pt;}
.ls40{letter-spacing:-1.859200pt;}
.ls12{letter-spacing:-1.825280pt;}
.ls26{letter-spacing:-1.806080pt;}
.ls6{letter-spacing:-1.797120pt;}
.lsa{letter-spacing:-1.766400pt;}
.ls41{letter-spacing:-1.752960pt;}
.ls42{letter-spacing:-1.699840pt;}
.ls18{letter-spacing:-1.648640pt;}
.ls22{letter-spacing:-1.593600pt;}
.ls4b{letter-spacing:-1.543680pt;}
.ls10{letter-spacing:-1.472000pt;}
.ls5{letter-spacing:-1.347840pt;}
.ls24{letter-spacing:-1.328000pt;}
.ls2a{letter-spacing:-1.295360pt;}
.ls4a{letter-spacing:-1.243520pt;}
.ls3{letter-spacing:-1.198080pt;}
.ls29{letter-spacing:-1.177600pt;}
.ls23{letter-spacing:-1.168640pt;}
.ls8{letter-spacing:-1.123200pt;}
.ls47{letter-spacing:-1.115520pt;}
.ls48{letter-spacing:-1.072000pt;}
.ls21{letter-spacing:-1.059840pt;}
.ls36{letter-spacing:-1.000960pt;}
.ls46{letter-spacing:-0.956160pt;}
.ls19{letter-spacing:-0.647680pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.647680pt;}
.ls31{letter-spacing:0.653568pt;}
.ls2e{letter-spacing:0.724224pt;}
.ls14{letter-spacing:0.806656pt;}
.ls28{letter-spacing:1.295360pt;}
.ls1e{letter-spacing:1.434240pt;}
.ls0{letter-spacing:1.442560pt;}
.ls33{letter-spacing:2.531840pt;}
.ls1a{letter-spacing:3.179520pt;}
.ls30{letter-spacing:3.285504pt;}
.ls37{letter-spacing:3.827200pt;}
.ls35{letter-spacing:3.974400pt;}
.ls13{letter-spacing:4.310016pt;}
.ls15{letter-spacing:4.474880pt;}
.ls16{letter-spacing:4.845824pt;}
.ls39{letter-spacing:5.280000pt;}
.ls2f{letter-spacing:5.870336pt;}
.ls38{letter-spacing:5.920000pt;}
.ls27{letter-spacing:6.417920pt;}
.ls2c{letter-spacing:6.528000pt;}
.ls3a{letter-spacing:6.560000pt;}
.ls3b{letter-spacing:7.200000pt;}
.ls3c{letter-spacing:7.840000pt;}
.ls34{letter-spacing:8.302080pt;}
.ls1b{letter-spacing:10.892800pt;}
.ls1{letter-spacing:12.928000pt;}
.ls32{letter-spacing:14.072320pt;}
.ls1d{letter-spacing:59.530240pt;}
.ls3d{letter-spacing:188.947840pt;}
.ws27{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws79{word-spacing:-13.719040pt;}
.ws3c{word-spacing:-13.660160pt;}
.ws58{word-spacing:-13.424640pt;}
.ws81{word-spacing:-13.280000pt;}
.ws28{word-spacing:-13.071360pt;}
.ws59{word-spacing:-12.953600pt;}
.ws29{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.776960pt;}
.ws4{word-spacing:-12.718080pt;}
.ws5a{word-spacing:-12.659200pt;}
.ws5b{word-spacing:-12.541440pt;}
.ws3b{word-spacing:-12.423680pt;}
.ws88{word-spacing:-11.952000pt;}
.ws84{word-spacing:-11.686400pt;}
.ws86{word-spacing:-11.580160pt;}
.ws0{word-spacing:-11.540480pt;}
.ws8b{word-spacing:-11.473920pt;}
.ws83{word-spacing:-11.420800pt;}
.ws85{word-spacing:-11.314560pt;}
.wsa4{word-spacing:-11.261440pt;}
.ws1{word-spacing:-11.187200pt;}
.ws87{word-spacing:-11.155200pt;}
.ws2{word-spacing:-11.128320pt;}
.ws8c{word-spacing:-9.648000pt;}
.ws8d{word-spacing:-9.476480pt;}
.wsa5{word-spacing:-8.833280pt;}
.ws82{word-spacing:-8.576000pt;}
.ws8a{word-spacing:-8.190080pt;}
.ws89{word-spacing:-7.589760pt;}
.ws6{word-spacing:-0.973440pt;}
.ws9{word-spacing:-0.823680pt;}
.ws7f{word-spacing:-0.765440pt;}
.ws53{word-spacing:-0.584320pt;}
.wse{word-spacing:-0.374400pt;}
.ws7{word-spacing:-0.299520pt;}
.ws1a{word-spacing:-0.294400pt;}
.ws8{word-spacing:-0.224640pt;}
.ws72{word-spacing:-0.159360pt;}
.ws3e{word-spacing:-0.117760pt;}
.ws5{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.053120pt;}
.wsc{word-spacing:0.074880pt;}
.ws3d{word-spacing:0.144000pt;}
.wsf{word-spacing:0.176640pt;}
.wsa{word-spacing:0.224640pt;}
.ws20{word-spacing:0.235520pt;}
.ws2a{word-spacing:0.288000pt;}
.ws10{word-spacing:0.353280pt;}
.ws21{word-spacing:0.412160pt;}
.ws70{word-spacing:0.478080pt;}
.ws3f{word-spacing:0.529920pt;}
.ws99{word-spacing:0.637440pt;}
.ws30{word-spacing:0.647680pt;}
.ws50{word-spacing:0.690560pt;}
.ws91{word-spacing:0.849920pt;}
.ws9b{word-spacing:0.956160pt;}
.ws60{word-spacing:1.000960pt;}
.ws51{word-spacing:1.115520pt;}
.wsd{word-spacing:1.123200pt;}
.ws2b{word-spacing:1.177600pt;}
.ws25{word-spacing:1.295360pt;}
.ws47{word-spacing:1.328000pt;}
.wsb{word-spacing:1.347840pt;}
.ws11{word-spacing:1.413120pt;}
.ws17{word-spacing:1.472000pt;}
.wsa7{word-spacing:1.543680pt;}
.ws94{word-spacing:1.593600pt;}
.ws62{word-spacing:1.648640pt;}
.ws46{word-spacing:1.752960pt;}
.ws56{word-spacing:1.825280pt;}
.wsa2{word-spacing:1.886720pt;}
.ws2e{word-spacing:1.943040pt;}
.ws6d{word-spacing:2.001920pt;}
.ws1f{word-spacing:2.060800pt;}
.ws9a{word-spacing:2.144000pt;}
.ws1d{word-spacing:2.237440pt;}
.ws6b{word-spacing:2.296320pt;}
.ws48{word-spacing:2.390400pt;}
.ws26{word-spacing:2.472960pt;}
.wsa0{word-spacing:2.529920pt;}
.ws2d{word-spacing:2.590720pt;}
.ws49{word-spacing:2.602880pt;}
.wsab{word-spacing:2.744320pt;}
.ws4c{word-spacing:2.762240pt;}
.ws8e{word-spacing:2.787200pt;}
.ws18{word-spacing:2.885120pt;}
.ws4d{word-spacing:3.027840pt;}
.ws69{word-spacing:3.061760pt;}
.ws3a{word-spacing:3.120640pt;}
.ws2c{word-spacing:3.238400pt;}
.ws6f{word-spacing:3.240320pt;}
.ws4e{word-spacing:3.399680pt;}
.ws12{word-spacing:3.415040pt;}
.ws19{word-spacing:3.532800pt;}
.ws76{word-spacing:3.591680pt;}
.wsa3{word-spacing:3.665280pt;}
.ws39{word-spacing:3.768320pt;}
.wsa8{word-spacing:3.771520pt;}
.wsa1{word-spacing:3.824640pt;}
.ws71{word-spacing:3.877760pt;}
.ws24{word-spacing:3.886080pt;}
.wsa9{word-spacing:4.037120pt;}
.ws1b{word-spacing:4.180480pt;}
.ws63{word-spacing:4.239360pt;}
.wsac{word-spacing:4.302720pt;}
.ws7d{word-spacing:4.357120pt;}
.ws35{word-spacing:4.416000pt;}
.ws52{word-spacing:4.515200pt;}
.ws2f{word-spacing:4.533760pt;}
.ws1c{word-spacing:4.828160pt;}
.ws77{word-spacing:4.887040pt;}
.wsaa{word-spacing:4.940160pt;}
.ws22{word-spacing:5.004800pt;}
.ws23{word-spacing:5.122560pt;}
.ws16{word-spacing:5.240320pt;}
.ws15{word-spacing:5.299200pt;}
.wsb0{word-spacing:5.312000pt;}
.wsaf{word-spacing:5.577600pt;}
.ws5c{word-spacing:5.652480pt;}
.ws41{word-spacing:5.770240pt;}
.ws67{word-spacing:6.005760pt;}
.ws97{word-spacing:6.215040pt;}
.ws40{word-spacing:6.300160pt;}
.ws31{word-spacing:6.417920pt;}
.ws9f{word-spacing:6.586880pt;}
.ws34{word-spacing:6.947840pt;}
.ws9e{word-spacing:7.011840pt;}
.ws54{word-spacing:7.065600pt;}
.ws6c{word-spacing:7.301120pt;}
.ws36{word-spacing:7.418880pt;}
.ws57{word-spacing:7.595520pt;}
.ws37{word-spacing:7.713280pt;}
.ws38{word-spacing:7.772160pt;}
.ws92{word-spacing:8.180480pt;}
.ws55{word-spacing:8.243200pt;}
.ws32{word-spacing:8.360960pt;}
.ws8f{word-spacing:8.392960pt;}
.ws93{word-spacing:8.817920pt;}
.ws7c{word-spacing:8.832000pt;}
.ws68{word-spacing:8.890880pt;}
.ws33{word-spacing:9.008640pt;}
.ws1e{word-spacing:9.126400pt;}
.ws61{word-spacing:9.244160pt;}
.ws13{word-spacing:9.303040pt;}
.wsae{word-spacing:9.455360pt;}
.ws5f{word-spacing:9.479680pt;}
.ws43{word-spacing:9.597440pt;}
.ws90{word-spacing:9.667840pt;}
.ws6a{word-spacing:9.832960pt;}
.ws64{word-spacing:9.950720pt;}
.wsad{word-spacing:10.092800pt;}
.ws78{word-spacing:10.127360pt;}
.ws65{word-spacing:10.245120pt;}
.ws66{word-spacing:10.304000pt;}
.ws95{word-spacing:10.305280pt;}
.ws96{word-spacing:10.730240pt;}
.ws44{word-spacing:11.422720pt;}
.ws73{word-spacing:11.540480pt;}
.ws6e{word-spacing:11.893760pt;}
.ws42{word-spacing:12.188160pt;}
.ws14{word-spacing:12.482560pt;}
.ws7e{word-spacing:12.718080pt;}
.ws5e{word-spacing:12.835840pt;}
.ws7b{word-spacing:13.189120pt;}
.ws5d{word-spacing:13.483520pt;}
.ws7a{word-spacing:14.131200pt;}
.ws80{word-spacing:14.720000pt;}
.ws4b{word-spacing:15.192320pt;}
.ws74{word-spacing:15.720960pt;}
.ws45{word-spacing:16.015360pt;}
.ws75{word-spacing:16.663040pt;}
.wsa6{word-spacing:43.558400pt;}
.ws9c{word-spacing:189.904000pt;}
.ws9d{word-spacing:190.753920pt;}
.ws98{word-spacing:638.130560pt;}
._4{margin-left:-2.110592pt;}
._1{margin-left:-1.033344pt;}
._2{width:0.943488pt;}
._3{width:1.883520pt;}
._6{width:3.053312pt;}
._c{width:4.298240pt;}
._7{width:5.299200pt;}
._9{width:6.417920pt;}
._b{width:7.713280pt;}
._a{width:8.855936pt;}
._d{width:12.329216pt;}
._0{width:357.072640pt;}
._8{width:627.444096pt;}
._5{width:1258.224000pt;}
.fs5{font-size:5.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.960000pt;}
.ybb{bottom:87.489600pt;}
.y79{bottom:90.359040pt;}
.y28{bottom:90.569600pt;}
.y115{bottom:95.434880pt;}
.yfb{bottom:95.502080pt;}
.ya8{bottom:96.792827pt;}
.ya3{bottom:100.078080pt;}
.yd1{bottom:101.259387pt;}
.yba{bottom:102.854560pt;}
.y78{bottom:105.724000pt;}
.y27{bottom:107.365120pt;}
.y11e{bottom:112.174720pt;}
.y114{bottom:112.230400pt;}
.yfa{bottom:112.297600pt;}
.ya7{bottom:113.588347pt;}
.y134{bottom:114.390080pt;}
.ya2{bottom:116.873600pt;}
.yd0{bottom:118.216827pt;}
.yb9{bottom:118.219520pt;}
.y77{bottom:120.929600pt;}
.y26{bottom:124.160640pt;}
.y11d{bottom:129.132160pt;}
.y113{bottom:129.187840pt;}
.yf9{bottom:129.255040pt;}
.y133{bottom:129.755040pt;}
.ya6{bottom:130.383867pt;}
.yb8{bottom:133.584480pt;}
.ya1{bottom:133.669120pt;}
.ycf{bottom:135.012347pt;}
.y76{bottom:136.294560pt;}
.y25{bottom:141.118080pt;}
.y132{bottom:145.112800pt;}
.y11c{bottom:145.927680pt;}
.y112{bottom:145.983360pt;}
.yf8{bottom:146.050560pt;}
.ya5{bottom:147.341307pt;}
.yb7{bottom:148.949440pt;}
.ya0{bottom:150.626560pt;}
.y75{bottom:151.659520pt;}
.yce{bottom:151.969787pt;}
.y24{bottom:157.913600pt;}
.y11b{bottom:162.723200pt;}
.y111{bottom:162.778880pt;}
.yf7{bottom:162.846080pt;}
.ya4{bottom:164.136827pt;}
.yb6{bottom:164.155040pt;}
.y131{bottom:164.475040pt;}
.y74{bottom:167.024480pt;}
.y9f{bottom:167.422080pt;}
.ycd{bottom:168.765307pt;}
.y23{bottom:174.400000pt;}
.yb5{bottom:179.520000pt;}
.y11a{bottom:179.680640pt;}
.y110{bottom:179.736320pt;}
.yf6{bottom:179.803520pt;}
.y130{bottom:179.832160pt;}
.y4e{bottom:181.094267pt;}
.y73{bottom:182.389440pt;}
.y9e{bottom:184.379520pt;}
.ycc{bottom:185.560827pt;}
.y22{bottom:193.376640pt;}
.yb4{bottom:195.383680pt;}
.y119{bottom:196.476160pt;}
.y10f{bottom:196.531840pt;}
.yf5{bottom:196.599040pt;}
.y72{bottom:197.595040pt;}
.y4d{bottom:197.889787pt;}
.y12f{bottom:199.035040pt;}
.y9d{bottom:201.175040pt;}
.ycb{bottom:202.518267pt;}
.y21{bottom:211.290880pt;}
.yb3{bottom:212.179200pt;}
.y118{bottom:213.433600pt;}
.y10e{bottom:213.489280pt;}
.yf4{bottom:213.556480pt;}
.y12e{bottom:214.400000pt;}
.y4c{bottom:214.685307pt;}
.y9c{bottom:217.970560pt;}
.yca{bottom:219.313787pt;}
.y71{bottom:228.912000pt;}
.yb2{bottom:228.974720pt;}
.y20{bottom:229.205120pt;}
.y117{bottom:229.920000pt;}
.y10d{bottom:230.284800pt;}
.yf3{bottom:230.352000pt;}
.y4b{bottom:231.642747pt;}
.y12d{bottom:233.745120pt;}
.y9b{bottom:234.928000pt;}
.yc9{bottom:236.271227pt;}
.y70{bottom:245.707520pt;}
.yb1{bottom:245.932160pt;}
.y1f{bottom:247.119360pt;}
.y10c{bottom:247.242240pt;}
.yf2{bottom:247.309440pt;}
.y116{bottom:248.114427pt;}
.y4a{bottom:248.438267pt;}
.y12c{bottom:249.110080pt;}
.y9a{bottom:251.723520pt;}
.yc8{bottom:253.066747pt;}
.y6f{bottom:262.503040pt;}
.yb0{bottom:262.727680pt;}
.y10b{bottom:264.037760pt;}
.yf1{bottom:264.104960pt;}
.y12b{bottom:264.475040pt;}
.y1e{bottom:265.033600pt;}
.y49{bottom:265.395707pt;}
.y99{bottom:268.680960pt;}
.yc7{bottom:269.862267pt;}
.y6e{bottom:279.460480pt;}
.yaf{bottom:279.685120pt;}
.y12a{bottom:279.837120pt;}
.y10a{bottom:280.833280pt;}
.yf0{bottom:280.900480pt;}
.y48{bottom:282.191227pt;}
.y1d{bottom:282.947840pt;}
.y98{bottom:285.476480pt;}
.yc6{bottom:286.819707pt;}
.y6d{bottom:296.256000pt;}
.yae{bottom:296.480640pt;}
.y109{bottom:297.790720pt;}
.yef{bottom:297.857920pt;}
.y129{bottom:299.040000pt;}
.y47{bottom:299.148667pt;}
.y1c{bottom:300.862080pt;}
.y97{bottom:302.272000pt;}
.yc5{bottom:303.615227pt;}
.y6c{bottom:313.213440pt;}
.yad{bottom:313.276160pt;}
.y108{bottom:314.586240pt;}
.yee{bottom:314.653440pt;}
.y46{bottom:315.944187pt;}
.y128{bottom:318.400000pt;}
.y1b{bottom:318.776320pt;}
.y96{bottom:319.229440pt;}
.yc4{bottom:320.572667pt;}
.y6b{bottom:330.008960pt;}
.yac{bottom:330.233600pt;}
.y107{bottom:331.543680pt;}
.yed{bottom:331.610880pt;}
.y45{bottom:332.739707pt;}
.y127{bottom:333.750080pt;}
.y95{bottom:336.024960pt;}
.y1a{bottom:336.690560pt;}
.yc3{bottom:337.368187pt;}
.yab{bottom:346.720000pt;}
.y6a{bottom:346.804480pt;}
.y106{bottom:348.339200pt;}
.yec{bottom:348.406400pt;}
.y126{bottom:349.115040pt;}
.y44{bottom:349.697147pt;}
.y94{bottom:352.982400pt;}
.yc2{bottom:354.163707pt;}
.y19{bottom:354.604800pt;}
.y69{bottom:363.761920pt;}
.y125{bottom:364.480000pt;}
.yaa{bottom:365.126400pt;}
.y105{bottom:365.134720pt;}
.yeb{bottom:365.201920pt;}
.y43{bottom:366.492667pt;}
.y93{bottom:369.777920pt;}
.yc1{bottom:371.121147pt;}
.y18{bottom:372.371840pt;}
.y68{bottom:380.557440pt;}
.ya9{bottom:381.760000pt;}
.y104{bottom:382.092160pt;}
.yea{bottom:382.159360pt;}
.y42{bottom:383.450107pt;}
.y124{bottom:383.835040pt;}
.y92{bottom:386.735360pt;}
.yc0{bottom:387.916667pt;}
.y17{bottom:390.286080pt;}
.y67{bottom:397.514880pt;}
.y103{bottom:398.887680pt;}
.ye9{bottom:398.954880pt;}
.y123{bottom:399.192160pt;}
.y41{bottom:400.245627pt;}
.y91{bottom:403.530880pt;}
.ybf{bottom:404.874107pt;}
.y16{bottom:408.200320pt;}
.y66{bottom:414.310400pt;}
.y102{bottom:415.845120pt;}
.ye8{bottom:415.912320pt;}
.y40{bottom:417.041147pt;}
.y122{bottom:418.395040pt;}
.y90{bottom:420.326400pt;}
.ybe{bottom:421.669627pt;}
.y14a{bottom:424.661760pt;}
.y15{bottom:426.114560pt;}
.y65{bottom:431.105920pt;}
.y101{bottom:432.640640pt;}
.ye7{bottom:432.707840pt;}
.y121{bottom:433.760000pt;}
.y3f{bottom:433.998587pt;}
.y8f{bottom:436.960000pt;}
.ybd{bottom:438.627067pt;}
.y149{bottom:441.781120pt;}
.y14{bottom:444.028800pt;}
.y64{bottom:448.063360pt;}
.y100{bottom:449.436160pt;}
.y120{bottom:449.446400pt;}
.ye6{bottom:449.503360pt;}
.y3e{bottom:450.794107pt;}
.y8e{bottom:455.098747pt;}
.ybc{bottom:455.422587pt;}
.y148{bottom:458.414720pt;}
.y13{bottom:461.943040pt;}
.y63{bottom:464.858880pt;}
.y11f{bottom:466.080000pt;}
.yff{bottom:466.393600pt;}
.ye5{bottom:466.460800pt;}
.y3d{bottom:467.751547pt;}
.y8d{bottom:472.218107pt;}
.y147{bottom:475.210240pt;}
.y12{bottom:479.857280pt;}
.y62{bottom:481.816320pt;}
.yfe{bottom:482.880000pt;}
.ye4{bottom:483.256320pt;}
.y3c{bottom:484.547067pt;}
.y8c{bottom:489.175547pt;}
.y146{bottom:492.167680pt;}
.y11{bottom:497.771520pt;}
.y61{bottom:498.611840pt;}
.ye3{bottom:500.213760pt;}
.yfd{bottom:501.018747pt;}
.y3b{bottom:501.342587pt;}
.y8b{bottom:505.971067pt;}
.y145{bottom:508.963200pt;}
.y60{bottom:515.407360pt;}
.y10{bottom:515.685760pt;}
.ye2{bottom:517.009280pt;}
.yfc{bottom:517.976187pt;}
.y3a{bottom:518.300027pt;}
.y8a{bottom:522.928507pt;}
.y144{bottom:525.758720pt;}
.y5f{bottom:532.364800pt;}
.yf{bottom:533.600000pt;}
.ye1{bottom:533.804800pt;}
.y39{bottom:535.095547pt;}
.y89{bottom:539.724027pt;}
.y143{bottom:543.040000pt;}
.y5e{bottom:549.160320pt;}
.ye0{bottom:550.762240pt;}
.ye{bottom:551.377280pt;}
.y38{bottom:552.052987pt;}
.y88{bottom:556.519547pt;}
.y142{bottom:559.488320pt;}
.y5d{bottom:566.117760pt;}
.ydf{bottom:567.557760pt;}
.y37{bottom:568.848507pt;}
.yd{bottom:569.291520pt;}
.y87{bottom:573.476987pt;}
.y141{bottom:574.853280pt;}
.y5c{bottom:582.913280pt;}
.yde{bottom:584.515200pt;}
.y36{bottom:585.644027pt;}
.yc{bottom:587.205760pt;}
.y140{bottom:590.058880pt;}
.y86{bottom:590.272507pt;}
.y5b{bottom:599.708800pt;}
.ydd{bottom:601.310720pt;}
.y35{bottom:602.601467pt;}
.yb{bottom:605.120000pt;}
.y13f{bottom:605.423840pt;}
.y85{bottom:607.229947pt;}
.y5a{bottom:616.666240pt;}
.ydc{bottom:618.106240pt;}
.y34{bottom:619.396987pt;}
.y13e{bottom:620.788800pt;}
.ya{bottom:623.988160pt;}
.y84{bottom:624.025467pt;}
.y59{bottom:633.461760pt;}
.ydb{bottom:635.063680pt;}
.y13d{bottom:636.153760pt;}
.y33{bottom:636.354427pt;}
.y83{bottom:640.820987pt;}
.y9{bottom:646.864000pt;}
.y58{bottom:650.419200pt;}
.y13c{bottom:651.200000pt;}
.yda{bottom:651.859200pt;}
.y32{bottom:653.149947pt;}
.y82{bottom:657.778427pt;}
.y13b{bottom:666.880640pt;}
.y57{bottom:667.214720pt;}
.yd9{bottom:668.816640pt;}
.y8{bottom:669.590080pt;}
.y31{bottom:669.945467pt;}
.y81{bottom:674.573947pt;}
.y13a{bottom:684.000000pt;}
.y56{bottom:684.172160pt;}
.yd8{bottom:685.612160pt;}
.y30{bottom:686.902907pt;}
.y80{bottom:691.531387pt;}
.y7{bottom:692.465920pt;}
.y55{bottom:700.967680pt;}
.yd7{bottom:702.569600pt;}
.y2f{bottom:703.698427pt;}
.y139{bottom:704.474907pt;}
.y7f{bottom:708.326907pt;}
.y6{bottom:715.192000pt;}
.y54{bottom:717.763200pt;}
.yd6{bottom:719.365120pt;}
.y138{bottom:719.832800pt;}
.y2e{bottom:720.655867pt;}
.y7e{bottom:725.122427pt;}
.y53{bottom:734.720640pt;}
.yd5{bottom:736.160640pt;}
.y2d{bottom:737.451387pt;}
.y5{bottom:738.067840pt;}
.y137{bottom:739.195040pt;}
.y7d{bottom:742.079867pt;}
.y52{bottom:751.516160pt;}
.yd4{bottom:753.118080pt;}
.y2c{bottom:754.408827pt;}
.y136{bottom:754.560000pt;}
.y7c{bottom:758.550080pt;}
.y4{bottom:760.793920pt;}
.y51{bottom:768.473600pt;}
.yd3{bottom:769.913600pt;}
.y2b{bottom:771.204347pt;}
.y7b{bottom:773.915040pt;}
.y135{bottom:773.919867pt;}
.y3{bottom:783.520000pt;}
.y50{bottom:784.960000pt;}
.yd2{bottom:786.400000pt;}
.y2a{bottom:787.999867pt;}
.y7a{bottom:789.280000pt;}
.y4f{bottom:800.160000pt;}
.y1{bottom:829.759867pt;}
.y29{bottom:835.200000pt;}
.h9{height:5.160000pt;}
.h3{height:39.585938pt;}
.h2{height:39.840000pt;}
.h5{height:48.558750pt;}
.hf{height:52.108438pt;}
.ha{height:52.134375pt;}
.he{height:52.145895pt;}
.h12{height:52.162642pt;}
.h11{height:52.163175pt;}
.hc{height:52.165735pt;}
.hd{height:52.174055pt;}
.h10{height:52.193895pt;}
.h13{height:53.535000pt;}
.h8{height:57.758750pt;}
.h7{height:57.787500pt;}
.hb{height:59.340000pt;}
.h4{height:61.754062pt;}
.h6{height:66.750000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.120000pt;}
.x3{left:105.287360pt;}
.xc{left:109.122560pt;}
.xa{left:113.588480pt;}
.xb{left:132.160000pt;}
.x4{left:162.888800pt;}
.x5{left:298.402880pt;}
.x7{left:305.446400pt;}
.x6{left:382.249760pt;}
.x9{left:421.440000pt;}
.x8{left:441.120640pt;}
.x2{left:557.600000pt;}
}

