
    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_8132db623413873cf038fad2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_3c65acbd7628bf2fcafb67af.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_7e107b68fa485bcc50a983f2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_383d673654c94c134991a4d8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_783f6fbdcf26bbbb2b356047.woff')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_24005fdb326faf9b97fa98bc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.689000;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_44145d6844874d66fc200e3e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902000;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_5f3d764f56fec608f0d8e0f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.639000;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_44da2e3a18b6698bfe368297.woff')format("woff");}.ff9{font-family:ff9;line-height:0.514000;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);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.368628px;}
.ls2{letter-spacing:-2.917064px;}
.ls1{letter-spacing:-2.869243px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.041843px;}
.ls4{letter-spacing:0.050809px;}
.ls7{letter-spacing:0.101618px;}
.ls0{letter-spacing:0.143443px;}
.ls9{letter-spacing:0.152428px;}
.lsf{letter-spacing:7.196962px;}
.lsa{letter-spacing:10.314268px;}
.lsc{letter-spacing:14.379004px;}
.ls6{letter-spacing:15.344378px;}
.lsd{letter-spacing:16.055707px;}
.lsb{letter-spacing:21.847956px;}
.ls5{letter-spacing:24.490034px;}
.ls8{letter-spacing:24.845699px;}
.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;}
}
.wsc{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.050809px;}
.ws7{word-spacing:-0.047821px;}
.ws102{word-spacing:-0.041843px;}
.ws85{word-spacing:0.000000px;}
.ws60{word-spacing:7.214906px;}
.ws5c{word-spacing:7.265716px;}
.ws50{word-spacing:7.468952px;}
.ws62{word-spacing:8.688373px;}
.ws112{word-spacing:8.745145px;}
.ws9e{word-spacing:9.145656px;}
.wsab{word-spacing:9.298084px;}
.wsd9{word-spacing:9.348893px;}
.ws10d{word-spacing:9.414630px;}
.ws6e{word-spacing:9.501320px;}
.ws117{word-spacing:9.582001px;}
.ws16{word-spacing:9.653748px;}
.ws97{word-spacing:10.060222px;}
.ws43{word-spacing:10.111031px;}
.ws110{word-spacing:10.125958px;}
.wsb8{word-spacing:10.212649px;}
.ws19{word-spacing:10.263458px;}
.ws14{word-spacing:10.517504px;}
.ws114{word-spacing:10.669914px;}
.ws33{word-spacing:10.669932px;}
.ws4b{word-spacing:10.873169px;}
.wsb7{word-spacing:10.923978px;}
.wsc6{word-spacing:11.025596px;}
.wsc5{word-spacing:11.127215px;}
.wsaa{word-spacing:11.178024px;}
.ws103{word-spacing:11.213870px;}
.ws7a{word-spacing:11.228833px;}
.wsd2{word-spacing:11.506770px;}
.ws108{word-spacing:11.632298px;}
.ws101{word-spacing:11.674141px;}
.wsd5{word-spacing:11.715984px;}
.wsd3{word-spacing:11.757827px;}
.ws11d{word-spacing:11.799670px;}
.ws4a{word-spacing:11.838544px;}
.ws113{word-spacing:11.841512px;}
.ws106{word-spacing:11.883355px;}
.ws3f{word-spacing:11.940162px;}
.ws10a{word-spacing:12.008884px;}
.ws7b{word-spacing:12.092590px;}
.ws4f{word-spacing:12.143399px;}
.ws48{word-spacing:12.194208px;}
.ws40{word-spacing:12.245017px;}
.ws2a{word-spacing:12.448254px;}
.ws63{word-spacing:12.549872px;}
.ws107{word-spacing:12.552840px;}
.wsd0{word-spacing:12.731947px;}
.ws111{word-spacing:12.762054px;}
.wsbb{word-spacing:12.803918px;}
.wsd8{word-spacing:12.816082px;}
.wsa{word-spacing:12.851754px;}
.wsac{word-spacing:12.854728px;}
.wsd7{word-spacing:12.863903px;}
.ws15{word-spacing:12.905537px;}
.ws5{word-spacing:12.911724px;}
.ws84{word-spacing:12.959545px;}
.ws4{word-spacing:13.007366px;}
.ws83{word-spacing:13.055188px;}
.ws6a{word-spacing:13.057964px;}
.ws9{word-spacing:13.150632px;}
.ws8{word-spacing:13.246472px;}
.ws6{word-spacing:13.342115px;}
.ws11c{word-spacing:13.347853px;}
.ws21{word-spacing:13.413629px;}
.ws41{word-spacing:13.515247px;}
.ws54{word-spacing:13.616866px;}
.ws10e{word-spacing:13.766281px;}
.ws81{word-spacing:13.769293px;}
.ws10{word-spacing:13.921721px;}
.wsa6{word-spacing:14.023339px;}
.ws96{word-spacing:14.074148px;}
.ws4d{word-spacing:14.124958px;}
.wsd1{word-spacing:14.142866px;}
.wsbe{word-spacing:14.226576px;}
.ws12{word-spacing:14.328194px;}
.ws18{word-spacing:14.429813px;}
.wsd4{word-spacing:14.519452px;}
.ws5b{word-spacing:14.531431px;}
.wsc8{word-spacing:14.633050px;}
.wsce{word-spacing:14.683859px;}
.ws29{word-spacing:14.785477px;}
.wsb1{word-spacing:14.887096px;}
.ws3b{word-spacing:14.937905px;}
.ws3{word-spacing:14.955788px;}
.wsb2{word-spacing:14.988714px;}
.ws2{word-spacing:15.117182px;}
.ws91{word-spacing:15.242760px;}
.ws17{word-spacing:15.293569px;}
.wsb5{word-spacing:15.395188px;}
.ws7d{word-spacing:15.496806px;}
.wsf7{word-spacing:15.547615px;}
.ws9a{word-spacing:15.649234px;}
.ws99{word-spacing:15.801661px;}
.wsf4{word-spacing:15.852470px;}
.wsc1{word-spacing:15.903280px;}
.wse4{word-spacing:16.055707px;}
.wsf5{word-spacing:16.106516px;}
.ws89{word-spacing:16.309753px;}
.ws7e{word-spacing:16.411372px;}
.ws116{word-spacing:16.444220px;}
.wsc2{word-spacing:16.462181px;}
.wse{word-spacing:16.557841px;}
.wsc3{word-spacing:16.563799px;}
.ws72{word-spacing:16.665418px;}
.ws6f{word-spacing:16.767036px;}
.ws11b{word-spacing:16.778963px;}
.wse1{word-spacing:16.868654px;}
.ws119{word-spacing:16.946334px;}
.ws88{word-spacing:17.021082px;}
.wsbc{word-spacing:17.275128px;}
.wsee{word-spacing:17.376746px;}
.wsbd{word-spacing:17.529174px;}
.ws93{word-spacing:17.681602px;}
.wsd6{word-spacing:17.825033px;}
.ws42{word-spacing:17.884838px;}
.wsad{word-spacing:18.240503px;}
.wsfd{word-spacing:18.342121px;}
.wsf6{word-spacing:18.646976px;}
.ws118{word-spacing:18.871103px;}
.ws1e{word-spacing:19.002641px;}
.ws105{word-spacing:19.038474px;}
.ws2f{word-spacing:19.155068px;}
.wsb0{word-spacing:19.256687px;}
.ws1c{word-spacing:19.307496px;}
.ws24{word-spacing:19.409114px;}
.ws49{word-spacing:19.459924px;}
.wscc{word-spacing:19.510733px;}
.ws104{word-spacing:19.540588px;}
.ws37{word-spacing:19.612351px;}
.wsb3{word-spacing:19.663160px;}
.wscb{word-spacing:19.764779px;}
.wse6{word-spacing:19.815588px;}
.ws100{word-spacing:19.833487px;}
.ws8e{word-spacing:19.968016px;}
.ws20{word-spacing:20.526917px;}
.ws11a{word-spacing:20.879557px;}
.ws61{word-spacing:21.085818px;}
.wsbf{word-spacing:21.187436px;}
.ws75{word-spacing:21.289055px;}
.wsde{word-spacing:21.339864px;}
.ws66{word-spacing:21.441482px;}
.wsd{word-spacing:21.578992px;}
.ws94{word-spacing:21.593910px;}
.wscf{word-spacing:21.746338px;}
.ws95{word-spacing:21.797147px;}
.wsae{word-spacing:21.847956px;}
.wsb{word-spacing:21.937645px;}
.wsec{word-spacing:21.949574px;}
.ws7c{word-spacing:22.102002px;}
.wsed{word-spacing:22.152811px;}
.ws10c{word-spacing:22.218527px;}
.wsdc{word-spacing:22.254430px;}
.wsa9{word-spacing:22.305239px;}
.ws5d{word-spacing:22.356048px;}
.wsfc{word-spacing:22.406857px;}
.ws70{word-spacing:22.508476px;}
.wsa8{word-spacing:22.559285px;}
.wsc0{word-spacing:22.610094px;}
.ws87{word-spacing:22.711712px;}
.ws71{word-spacing:22.762522px;}
.ws8d{word-spacing:22.914949px;}
.wse0{word-spacing:22.965758px;}
.ws5a{word-spacing:23.118186px;}
.ws51{word-spacing:23.270614px;}
.ws79{word-spacing:23.473850px;}
.ws7f{word-spacing:23.524660px;}
.wseb{word-spacing:23.626278px;}
.ws8b{word-spacing:23.677087px;}
.wsea{word-spacing:23.778706px;}
.wsda{word-spacing:23.829515px;}
.wsa2{word-spacing:24.032752px;}
.ws4c{word-spacing:24.286798px;}
.wsa5{word-spacing:24.337607px;}
.wsf0{word-spacing:24.388416px;}
.ws1f{word-spacing:24.439225px;}
.ws1a{word-spacing:24.490034px;}
.wsa4{word-spacing:24.744080px;}
.wsa3{word-spacing:24.794890px;}
.ws68{word-spacing:24.998126px;}
.wsef{word-spacing:25.048936px;}
.wse9{word-spacing:25.099745px;}
.ws6d{word-spacing:25.150554px;}
.ws13{word-spacing:25.252172px;}
.ws34{word-spacing:25.302982px;}
.ws109{word-spacing:25.314894px;}
.wsb9{word-spacing:25.353791px;}
.ws47{word-spacing:25.404600px;}
.ws5f{word-spacing:25.506218px;}
.ws3e{word-spacing:25.709455px;}
.ws10f{word-spacing:25.817008px;}
.ws10b{word-spacing:25.984379px;}
.ws2e{word-spacing:26.217547px;}
.ws115{word-spacing:26.235436px;}
.ws23{word-spacing:26.369975px;}
.ws3c{word-spacing:26.725639px;}
.ws80{word-spacing:26.878067px;}
.ws69{word-spacing:27.030494px;}
.wsaf{word-spacing:27.081304px;}
.ws77{word-spacing:27.233731px;}
.wse8{word-spacing:27.335350px;}
.ws8c{word-spacing:27.386159px;}
.ws5e{word-spacing:27.538586px;}
.ws98{word-spacing:27.741823px;}
.ws67{word-spacing:27.894251px;}
.wsb6{word-spacing:28.041735px;}
.ws26{word-spacing:28.300724px;}
.wsb4{word-spacing:28.351534px;}
.ws27{word-spacing:28.503961px;}
.wsf3{word-spacing:28.808816px;}
.ws30{word-spacing:29.215290px;}
.ws39{word-spacing:29.418527px;}
.wsc7{word-spacing:29.570954px;}
.wse7{word-spacing:29.621764px;}
.ws38{word-spacing:30.079046px;}
.wsdf{word-spacing:30.231474px;}
.ws76{word-spacing:30.282283px;}
.ws25{word-spacing:30.383902px;}
.ws58{word-spacing:30.587138px;}
.ws1b{word-spacing:30.637948px;}
.ws22{word-spacing:30.790375px;}
.ws59{word-spacing:30.942803px;}
.ws45{word-spacing:31.095230px;}
.wse2{word-spacing:31.196849px;}
.ws11{word-spacing:31.552513px;}
.ws78{word-spacing:32.060605px;}
.wsf{word-spacing:32.111414px;}
.ws6c{word-spacing:32.213033px;}
.ws36{word-spacing:32.314651px;}
.ws28{word-spacing:32.416270px;}
.ws64{word-spacing:32.619506px;}
.wsa0{word-spacing:32.822743px;}
.ws9f{word-spacing:32.873552px;}
.wsa1{word-spacing:33.025980px;}
.ws9d{word-spacing:33.127598px;}
.ws4e{word-spacing:33.330835px;}
.wsff{word-spacing:33.767140px;}
.ws8f{word-spacing:35.159966px;}
.ws52{word-spacing:35.363203px;}
.ws3a{word-spacing:35.617249px;}
.ws35{word-spacing:35.922104px;}
.ws1{word-spacing:36.152464px;}
.ws0{word-spacing:36.224195px;}
.ws2c{word-spacing:36.531815px;}
.wsfe{word-spacing:36.836670px;}
.ws3d{word-spacing:36.989098px;}
.ws2b{word-spacing:37.039907px;}
.wsa7{word-spacing:37.598808px;}
.ws46{word-spacing:37.700426px;}
.ws92{word-spacing:38.106900px;}
.ws32{word-spacing:38.411755px;}
.wsf2{word-spacing:38.462564px;}
.ws6b{word-spacing:38.869038px;}
.ws57{word-spacing:39.224702px;}
.ws56{word-spacing:39.478748px;}
.ws8a{word-spacing:40.444123px;}
.ws73{word-spacing:40.799788px;}
.wsdb{word-spacing:41.155452px;}
.ws9c{word-spacing:41.460307px;}
.ws9b{word-spacing:41.511116px;}
.wsf8{word-spacing:41.663544px;}
.ws90{word-spacing:42.781346px;}
.ws82{word-spacing:43.373828px;}
.ws44{word-spacing:43.441866px;}
.ws53{word-spacing:43.848340px;}
.wsca{word-spacing:44.254813px;}
.wsc9{word-spacing:44.356432px;}
.ws2d{word-spacing:45.067760px;}
.wsfb{word-spacing:45.728280px;}
.wsf9{word-spacing:45.931517px;}
.wsfa{word-spacing:46.033135px;}
.wse5{word-spacing:46.490418px;}
.ws55{word-spacing:47.608220px;}
.ws74{word-spacing:48.776832px;}
.wsba{word-spacing:49.386542px;}
.wsc4{word-spacing:49.538970px;}
.ws31{word-spacing:49.894634px;}
.wsf1{word-spacing:51.672956px;}
.wsdd{word-spacing:51.723766px;}
.ws65{word-spacing:60.107284px;}
.ws86{word-spacing:62.800171px;}
.wscd{word-spacing:62.850980px;}
.wse3{word-spacing:66.763289px;}
._d{margin-left:-3.628277px;}
._e{margin-left:-2.110109px;}
._1{margin-left:-1.004245px;}
._2{width:1.255288px;}
._12{width:10.365077px;}
._a{width:11.940162px;}
._c{width:12.956346px;}
._0{width:14.250718px;}
._5{width:15.496806px;}
._10{width:17.448379px;}
._11{width:18.799404px;}
._13{width:20.374489px;}
._3{width:22.953830px;}
._6{width:25.607837px;}
._7{width:27.640205px;}
._8{width:29.875810px;}
._4{width:32.670316px;}
._f{width:33.686500px;}
._16{width:35.106109px;}
._9{width:39.732794px;}
._b{width:44.508859px;}
._15{width:52.943186px;}
._14{width:67.830282px;}
.fc4{color:rgb(210,205,174);}
.fc3{color:rgb(148,49,43);}
.fc2{color:rgb(71,114,44);}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.876200px;}
.fs7{font-size:33.869400px;}
.fsa{font-size:35.565000px;}
.fs2{font-size:35.860800px;}
.fsc{font-size:41.842800px;}
.fsb{font-size:44.830800px;}
.fs4{font-size:47.821200px;}
.fs6{font-size:50.809200px;}
.fs1{font-size:53.797800px;}
.fs5{font-size:59.775600px;}
.fs8{font-size:65.754000px;}
.fs0{font-size:119.551800px;}
.fs9{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y6b{bottom:31.379550px;}
.y7a{bottom:75.854276px;}
.ya6{bottom:75.854819px;}
.y5f{bottom:75.855579px;}
.y38{bottom:75.857543px;}
.y79{bottom:92.265648px;}
.ya5{bottom:92.266191px;}
.y5e{bottom:92.266950px;}
.y37{bottom:92.268914px;}
.y78{bottom:108.765936px;}
.ya4{bottom:108.766478px;}
.y5d{bottom:108.767238px;}
.y36{bottom:108.769202px;}
.y77{bottom:125.177307px;}
.ya3{bottom:125.177850px;}
.y5c{bottom:125.178610px;}
.y35{bottom:125.180574px;}
.ya2{bottom:130.790550px;}
.y76{bottom:141.588679px;}
.y5b{bottom:141.589981px;}
.y34{bottom:141.591945px;}
.y75{bottom:158.088967px;}
.y5a{bottom:158.090269px;}
.y33{bottom:158.092233px;}
.y74{bottom:174.500338px;}
.y59{bottom:174.501640px;}
.y32{bottom:174.503605px;}
.y73{bottom:190.911710px;}
.y58{bottom:190.913012px;}
.y31{bottom:190.914976px;}
.ya1{bottom:207.324384px;}
.y72{bottom:207.411997px;}
.y57{bottom:207.413300px;}
.y30{bottom:207.415264px;}
.y71{bottom:223.823369px;}
.y56{bottom:223.824671px;}
.y2f{bottom:223.826635px;}
.y70{bottom:240.234741px;}
.y55{bottom:240.236043px;}
.y2e{bottom:240.238007px;}
.y6f{bottom:256.646112px;}
.y54{bottom:256.647415px;}
.y2d{bottom:256.649379px;}
.y6e{bottom:273.146400px;}
.y53{bottom:273.147702px;}
.y2c{bottom:273.149666px;}
.y52{bottom:289.559074px;}
.y2b{bottom:289.561038px;}
.y51{bottom:305.970445px;}
.y2a{bottom:305.972410px;}
.y50{bottom:322.470733px;}
.y29{bottom:322.472697px;}
.yaf{bottom:322.747675px;}
.yae{bottom:335.415583px;}
.y4f{bottom:338.882105px;}
.y28{bottom:338.884069px;}
.yad{bottom:348.167176px;}
.y4e{bottom:355.293476px;}
.y27{bottom:355.295440px;}
.yac{bottom:360.835084px;}
.y4d{bottom:371.793764px;}
.y26{bottom:371.795728px;}
.yab{bottom:373.502991px;}
.yaa{bottom:386.254585px;}
.y4c{bottom:388.205136px;}
.y25{bottom:388.207100px;}
.ya9{bottom:398.922492px;}
.y4b{bottom:404.616507px;}
.y24{bottom:404.618471px;}
.ya8{bottom:411.590400px;}
.y4a{bottom:421.116795px;}
.y23{bottom:421.118759px;}
.ya7{bottom:424.346400px;}
.y49{bottom:437.528167px;}
.y22{bottom:437.530131px;}
.y48{bottom:453.939538px;}
.y21{bottom:453.941502px;}
.y47{bottom:470.350910px;}
.y20{bottom:470.352874px;}
.ya0{bottom:470.439826px;}
.yc4{bottom:470.439919px;}
.yd5{bottom:470.447757px;}
.yd4{bottom:482.435719px;}
.y46{bottom:486.851198px;}
.yc3{bottom:486.851291px;}
.y1f{bottom:486.853162px;}
.yd3{bottom:494.339996px;}
.y45{bottom:503.262569px;}
.y1e{bottom:503.264533px;}
.yc2{bottom:503.351578px;}
.yd2{bottom:506.327958px;}
.yf5{bottom:507.781995px;}
.y44{bottom:519.673941px;}
.y1d{bottom:519.675905px;}
.y9f{bottom:519.762857px;}
.yc1{bottom:519.762950px;}
.yf4{bottom:519.769957px;}
.yd1{bottom:531.757920px;}
.y43{bottom:536.174228px;}
.yc0{bottom:536.174321px;}
.y1c{bottom:536.176193px;}
.yd0{bottom:543.745882px;}
.yf3{bottom:545.199919px;}
.y40{bottom:552.585238px;}
.y42{bottom:552.585600px;}
.y9e{bottom:552.585693px;}
.y1b{bottom:552.587564px;}
.ycf{bottom:555.650158px;}
.yf1{bottom:557.104196px;}
.yf2{bottom:557.271567px;}
.y41{bottom:558.198300px;}
.y3f{bottom:568.996610px;}
.y6a{bottom:568.996972px;}
.y9d{bottom:568.997065px;}
.y1a{bottom:568.998936px;}
.ybf{bottom:569.085981px;}
.yf0{bottom:569.092158px;}
.yef{bottom:581.080120px;}
.yce{bottom:585.410850px;}
.y3e{bottom:585.496898px;}
.y69{bottom:585.497259px;}
.y9c{bottom:585.497352px;}
.y19{bottom:585.499223px;}
.y3d{bottom:601.908269px;}
.y68{bottom:601.908631px;}
.y9b{bottom:601.908724px;}
.y18{bottom:601.910595px;}
.yee{bottom:606.426396px;}
.y3c{bottom:618.319641px;}
.y67{bottom:618.320002px;}
.y9a{bottom:618.320096px;}
.y17{bottom:618.321967px;}
.ybe{bottom:618.409012px;}
.yed{bottom:618.414358px;}
.yec{bottom:630.402321px;}
.y3b{bottom:634.731012px;}
.y66{bottom:634.731374px;}
.y16{bottom:634.733338px;}
.y99{bottom:634.820383px;}
.yeb{bottom:642.306597px;}
.y3a{bottom:651.231300px;}
.y65{bottom:651.231662px;}
.y98{bottom:651.231755px;}
.y15{bottom:651.233626px;}
.y39{bottom:656.843850px;}
.y64{bottom:667.643033px;}
.y97{bottom:667.643126px;}
.y14{bottom:667.644998px;}
.ybd{bottom:667.732043px;}
.yea{bottom:667.736559px;}
.y63{bottom:684.054405px;}
.y13{bottom:684.056369px;}
.y96{bottom:684.143414px;}
.ye9{bottom:693.166521px;}
.y62{bottom:700.554693px;}
.y95{bottom:700.554786px;}
.y12{bottom:700.556657px;}
.ye8{bottom:705.154483px;}
.y61{bottom:716.966064px;}
.y94{bottom:716.966157px;}
.y11{bottom:716.968028px;}
.ybc{bottom:717.055073px;}
.ye7{bottom:717.058759px;}
.y60{bottom:733.377436px;}
.y10{bottom:733.379400px;}
.y93{bottom:733.466445px;}
.ye6{bottom:742.488721px;}
.y92{bottom:749.877817px;}
.ye5{bottom:754.476683px;}
.y91{bottom:766.289188px;}
.yf{bottom:778.782042px;}
.ye4{bottom:779.822959px;}
.y90{bottom:782.700560px;}
.ybb{bottom:782.789476px;}
.ye3{bottom:791.810922px;}
.ye{bottom:796.729666px;}
.y8f{bottom:799.200848px;}
.yd{bottom:814.587626px;}
.y8e{bottom:815.612219px;}
.ye2{bottom:817.240883px;}
.ye1{bottom:829.145160px;}
.yba{bottom:832.112507px;}
.yc{bottom:832.535250px;}
.y8d{bottom:848.523878px;}
.ye0{bottom:854.575122px;}
.y8a{bottom:864.932562px;}
.yb9{bottom:864.934707px;}
.y8c{bottom:864.935250px;}
.ydf{bottom:866.563084px;}
.yb{bottom:869.694757px;}
.y8b{bottom:870.632850px;}
.yde{bottom:878.467361px;}
.y89{bottom:881.432850px;}
.yb8{bottom:881.434995px;}
.ycd{bottom:881.435538px;}
.y87{bottom:881.436354px;}
.ya{bottom:883.897654px;}
.y88{bottom:887.045400px;}
.yb7{bottom:897.846367px;}
.ycc{bottom:897.846909px;}
.y86{bottom:897.847726px;}
.y9{bottom:898.100550px;}
.y8{bottom:901.672200px;}
.ydd{bottom:903.897322px;}
.y7{bottom:912.302100px;}
.yb6{bottom:914.257738px;}
.ycb{bottom:914.258281px;}
.y85{bottom:914.259097px;}
.y6{bottom:915.873750px;}
.ydc{bottom:915.885284px;}
.y3{bottom:926.503650px;}
.y5{bottom:927.269100px;}
.ydb{bottom:927.873247px;}
.y4{bottom:930.585600px;}
.yb5{bottom:930.669110px;}
.yca{bottom:930.669652px;}
.y84{bottom:930.670469px;}
.yda{bottom:939.777523px;}
.yb4{bottom:947.169397px;}
.yc9{bottom:947.169940px;}
.y83{bottom:947.170757px;}
.yb3{bottom:963.580769px;}
.yc8{bottom:963.581312px;}
.y82{bottom:963.582128px;}
.yd9{bottom:965.207485px;}
.y2{bottom:969.360652px;}
.yd8{bottom:977.195447px;}
.y7f{bottom:979.990812px;}
.yb2{bottom:979.992141px;}
.yc7{bottom:979.992683px;}
.y81{bottom:979.993500px;}
.y80{bottom:985.691100px;}
.y7e{bottom:996.491100px;}
.y7c{bottom:996.491576px;}
.yb1{bottom:996.492428px;}
.yc6{bottom:996.492971px;}
.y1{bottom:1000.743000px;}
.y7d{bottom:1002.103650px;}
.yd7{bottom:1002.541723px;}
.y7b{bottom:1012.902947px;}
.yb0{bottom:1012.903800px;}
.yc5{bottom:1012.904343px;}
.yd6{bottom:1014.529685px;}
.y6d{bottom:1084.846950px;}
.y6c{bottom:1117.842150px;}
.h5{height:23.301502px;}
.h9{height:24.758531px;}
.h4{height:26.214245px;}
.hf{height:30.587087px;}
.he{height:32.771315px;}
.h6{height:34.957297px;}
.hc{height:37.039907px;}
.h8{height:37.141525px;}
.hd{height:38.213898px;}
.h3{height:39.326192px;}
.h7{height:43.695964px;}
.ha{height:48.066174px;}
.h2{height:87.392366px;}
.hb{height:104.583215px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x12{left:79.681800px;}
.x1{left:89.631450px;}
.x13{left:92.358695px;}
.x6{left:94.563750px;}
.x7{left:102.384559px;}
.x2{left:177.222000px;}
.x3{left:186.576300px;}
.x22{left:242.447100px;}
.x23{left:253.417200px;}
.x4{left:264.812550px;}
.x5{left:273.231450px;}
.x14{left:330.717355px;}
.x8{left:340.755921px;}
.x15{left:343.394250px;}
.xb{left:353.432765px;}
.x9{left:356.740050px;}
.xa{left:367.710150px;}
.xc{left:441.694350px;}
.xd{left:455.725800px;}
.x21{left:503.773050px;}
.x16{left:581.752910px;}
.xe{left:591.780135px;}
.xf{left:604.457031px;}
.x17{left:624.699000px;}
.x18{left:633.883350px;}
.x11{left:661.351050px;}
.x1f{left:679.464450px;}
.x20{left:690.434400px;}
.x19{left:726.321150px;}
.x1d{left:727.936800px;}
.x1a{left:731.593500px;}
.x1e{left:733.124250px;}
.x10{left:769.691100px;}
.x1b{left:806.088000px;}
.x1c{left:811.360350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.327669pt;}
.ls2{letter-spacing:-2.592946pt;}
.ls1{letter-spacing:-2.550438pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.037194pt;}
.ls4{letter-spacing:0.045164pt;}
.ls7{letter-spacing:0.090327pt;}
.ls0{letter-spacing:0.127505pt;}
.ls9{letter-spacing:0.135491pt;}
.lsf{letter-spacing:6.397299pt;}
.lsa{letter-spacing:9.168238pt;}
.lsc{letter-spacing:12.781337pt;}
.ls6{letter-spacing:13.639447pt;}
.lsd{letter-spacing:14.271740pt;}
.lsb{letter-spacing:19.420405pt;}
.ls5{letter-spacing:21.768919pt;}
.ls8{letter-spacing:22.085066pt;}
.wsc{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.045164pt;}
.ws7{word-spacing:-0.042508pt;}
.ws102{word-spacing:-0.037194pt;}
.ws85{word-spacing:0.000000pt;}
.ws60{word-spacing:6.413250pt;}
.ws5c{word-spacing:6.458414pt;}
.ws50{word-spacing:6.639069pt;}
.ws62{word-spacing:7.722998pt;}
.ws112{word-spacing:7.773462pt;}
.ws9e{word-spacing:8.129472pt;}
.wsab{word-spacing:8.264963pt;}
.wsd9{word-spacing:8.310127pt;}
.ws10d{word-spacing:8.368560pt;}
.ws6e{word-spacing:8.445618pt;}
.ws117{word-spacing:8.517334pt;}
.ws16{word-spacing:8.581109pt;}
.ws97{word-spacing:8.942419pt;}
.ws43{word-spacing:8.987583pt;}
.ws110{word-spacing:9.000851pt;}
.wsb8{word-spacing:9.077910pt;}
.ws19{word-spacing:9.123074pt;}
.ws14{word-spacing:9.348893pt;}
.ws114{word-spacing:9.484368pt;}
.ws33{word-spacing:9.484384pt;}
.ws4b{word-spacing:9.665039pt;}
.wsb7{word-spacing:9.710203pt;}
.wsc6{word-spacing:9.800530pt;}
.wsc5{word-spacing:9.890858pt;}
.wsaa{word-spacing:9.936021pt;}
.ws103{word-spacing:9.967885pt;}
.ws7a{word-spacing:9.981185pt;}
.wsd2{word-spacing:10.228240pt;}
.ws108{word-spacing:10.339821pt;}
.ws101{word-spacing:10.377014pt;}
.wsd5{word-spacing:10.414208pt;}
.wsd3{word-spacing:10.451402pt;}
.ws11d{word-spacing:10.488595pt;}
.ws4a{word-spacing:10.523150pt;}
.ws113{word-spacing:10.525789pt;}
.ws106{word-spacing:10.562982pt;}
.ws3f{word-spacing:10.613477pt;}
.ws10a{word-spacing:10.674563pt;}
.ws7b{word-spacing:10.748969pt;}
.ws4f{word-spacing:10.794132pt;}
.ws48{word-spacing:10.839296pt;}
.ws40{word-spacing:10.884460pt;}
.ws2a{word-spacing:11.065115pt;}
.ws63{word-spacing:11.155442pt;}
.ws107{word-spacing:11.158080pt;}
.wsd0{word-spacing:11.317286pt;}
.ws111{word-spacing:11.344048pt;}
.wsbb{word-spacing:11.381261pt;}
.wsd8{word-spacing:11.392073pt;}
.wsa{word-spacing:11.423781pt;}
.wsac{word-spacing:11.426425pt;}
.wsd7{word-spacing:11.434580pt;}
.ws15{word-spacing:11.471588pt;}
.ws5{word-spacing:11.477088pt;}
.ws84{word-spacing:11.519596pt;}
.ws4{word-spacing:11.562103pt;}
.ws83{word-spacing:11.604611pt;}
.ws6a{word-spacing:11.607079pt;}
.ws9{word-spacing:11.689451pt;}
.ws8{word-spacing:11.774642pt;}
.ws6{word-spacing:11.859658pt;}
.ws11c{word-spacing:11.864758pt;}
.ws21{word-spacing:11.923226pt;}
.ws41{word-spacing:12.013553pt;}
.ws54{word-spacing:12.103881pt;}
.ws10e{word-spacing:12.236694pt;}
.ws81{word-spacing:12.239372pt;}
.ws10{word-spacing:12.374863pt;}
.wsa6{word-spacing:12.465190pt;}
.ws96{word-spacing:12.510354pt;}
.ws4d{word-spacing:12.555518pt;}
.wsd1{word-spacing:12.571437pt;}
.wsbe{word-spacing:12.645845pt;}
.ws12{word-spacing:12.736173pt;}
.ws18{word-spacing:12.826500pt;}
.wsd4{word-spacing:12.906179pt;}
.ws5b{word-spacing:12.916828pt;}
.wsc8{word-spacing:13.007155pt;}
.wsce{word-spacing:13.052319pt;}
.ws29{word-spacing:13.142646pt;}
.wsb1{word-spacing:13.232974pt;}
.ws3b{word-spacing:13.278138pt;}
.ws3{word-spacing:13.294034pt;}
.wsb2{word-spacing:13.323301pt;}
.ws2{word-spacing:13.437495pt;}
.ws91{word-spacing:13.549120pt;}
.ws17{word-spacing:13.594284pt;}
.wsb5{word-spacing:13.684611pt;}
.ws7d{word-spacing:13.774939pt;}
.wsf7{word-spacing:13.820102pt;}
.ws9a{word-spacing:13.910430pt;}
.ws99{word-spacing:14.045921pt;}
.wsf4{word-spacing:14.091085pt;}
.wsc1{word-spacing:14.136249pt;}
.wse4{word-spacing:14.271740pt;}
.wsf5{word-spacing:14.316903pt;}
.ws89{word-spacing:14.497558pt;}
.ws7e{word-spacing:14.587886pt;}
.ws116{word-spacing:14.617085pt;}
.wsc2{word-spacing:14.633050pt;}
.wse{word-spacing:14.718081pt;}
.wsc3{word-spacing:14.723377pt;}
.ws72{word-spacing:14.813705pt;}
.ws6f{word-spacing:14.904032pt;}
.ws11b{word-spacing:14.914634pt;}
.wse1{word-spacing:14.994359pt;}
.ws119{word-spacing:15.063408pt;}
.ws88{word-spacing:15.129851pt;}
.wsbc{word-spacing:15.355669pt;}
.wsee{word-spacing:15.445997pt;}
.wsbd{word-spacing:15.581488pt;}
.ws93{word-spacing:15.716979pt;}
.wsd6{word-spacing:15.844474pt;}
.ws42{word-spacing:15.897634pt;}
.wsad{word-spacing:16.213780pt;}
.wsfd{word-spacing:16.304108pt;}
.wsf6{word-spacing:16.575090pt;}
.ws118{word-spacing:16.774314pt;}
.ws1e{word-spacing:16.891236pt;}
.ws105{word-spacing:16.923088pt;}
.ws2f{word-spacing:17.026727pt;}
.wsb0{word-spacing:17.117055pt;}
.ws1c{word-spacing:17.162219pt;}
.ws24{word-spacing:17.252546pt;}
.ws49{word-spacing:17.297710pt;}
.wscc{word-spacing:17.342874pt;}
.ws104{word-spacing:17.369411pt;}
.ws37{word-spacing:17.433201pt;}
.wsb3{word-spacing:17.478365pt;}
.wscb{word-spacing:17.568692pt;}
.wse6{word-spacing:17.613856pt;}
.ws100{word-spacing:17.629766pt;}
.ws8e{word-spacing:17.749347pt;}
.ws20{word-spacing:18.246148pt;}
.ws11a{word-spacing:18.559606pt;}
.ws61{word-spacing:18.742949pt;}
.wsbf{word-spacing:18.833277pt;}
.ws75{word-spacing:18.923604pt;}
.wsde{word-spacing:18.968768pt;}
.ws66{word-spacing:19.059095pt;}
.wsd{word-spacing:19.181326pt;}
.ws94{word-spacing:19.194587pt;}
.wscf{word-spacing:19.330078pt;}
.ws95{word-spacing:19.375242pt;}
.wsae{word-spacing:19.420405pt;}
.wsb{word-spacing:19.500129pt;}
.wsec{word-spacing:19.510733pt;}
.ws7c{word-spacing:19.646224pt;}
.wsed{word-spacing:19.691388pt;}
.ws10c{word-spacing:19.749802pt;}
.wsdc{word-spacing:19.781715pt;}
.wsa9{word-spacing:19.826879pt;}
.ws5d{word-spacing:19.872043pt;}
.wsfc{word-spacing:19.917206pt;}
.ws70{word-spacing:20.007534pt;}
.wsa8{word-spacing:20.052698pt;}
.wsc0{word-spacing:20.097861pt;}
.ws87{word-spacing:20.188189pt;}
.ws71{word-spacing:20.233353pt;}
.ws8d{word-spacing:20.368844pt;}
.wse0{word-spacing:20.414007pt;}
.ws5a{word-spacing:20.549499pt;}
.ws51{word-spacing:20.684990pt;}
.ws79{word-spacing:20.865645pt;}
.ws7f{word-spacing:20.910809pt;}
.wseb{word-spacing:21.001136pt;}
.ws8b{word-spacing:21.046300pt;}
.wsea{word-spacing:21.136627pt;}
.wsda{word-spacing:21.181791pt;}
.wsa2{word-spacing:21.362446pt;}
.ws4c{word-spacing:21.588265pt;}
.wsa5{word-spacing:21.633428pt;}
.wsf0{word-spacing:21.678592pt;}
.ws1f{word-spacing:21.723756pt;}
.ws1a{word-spacing:21.768919pt;}
.wsa4{word-spacing:21.994738pt;}
.wsa3{word-spacing:22.039902pt;}
.ws68{word-spacing:22.220557pt;}
.wsef{word-spacing:22.265721pt;}
.wse9{word-spacing:22.310884pt;}
.ws6d{word-spacing:22.356048pt;}
.ws13{word-spacing:22.446375pt;}
.ws34{word-spacing:22.491539pt;}
.ws109{word-spacing:22.502128pt;}
.wsb9{word-spacing:22.536703pt;}
.ws47{word-spacing:22.581867pt;}
.ws5f{word-spacing:22.672194pt;}
.ws3e{word-spacing:22.852849pt;}
.ws10f{word-spacing:22.948451pt;}
.ws10b{word-spacing:23.097226pt;}
.ws2e{word-spacing:23.304486pt;}
.ws115{word-spacing:23.320387pt;}
.ws23{word-spacing:23.439978pt;}
.ws3c{word-spacing:23.756124pt;}
.ws80{word-spacing:23.891615pt;}
.ws69{word-spacing:24.027106pt;}
.wsaf{word-spacing:24.072270pt;}
.ws77{word-spacing:24.207761pt;}
.wse8{word-spacing:24.298089pt;}
.ws8c{word-spacing:24.343252pt;}
.ws5e{word-spacing:24.478743pt;}
.ws98{word-spacing:24.659398pt;}
.ws67{word-spacing:24.794890pt;}
.wsb6{word-spacing:24.925987pt;}
.ws26{word-spacing:25.156199pt;}
.wsb4{word-spacing:25.201363pt;}
.ws27{word-spacing:25.336854pt;}
.wsf3{word-spacing:25.607837pt;}
.ws30{word-spacing:25.969147pt;}
.ws39{word-spacing:26.149802pt;}
.wsc7{word-spacing:26.285293pt;}
.wse7{word-spacing:26.330457pt;}
.ws38{word-spacing:26.736930pt;}
.wsdf{word-spacing:26.872421pt;}
.ws76{word-spacing:26.917585pt;}
.ws25{word-spacing:27.007913pt;}
.ws58{word-spacing:27.188567pt;}
.ws1b{word-spacing:27.233731pt;}
.ws22{word-spacing:27.369222pt;}
.ws59{word-spacing:27.504714pt;}
.ws45{word-spacing:27.640205pt;}
.wse2{word-spacing:27.730532pt;}
.ws11{word-spacing:28.046678pt;}
.ws78{word-spacing:28.498316pt;}
.wsf{word-spacing:28.543479pt;}
.ws6c{word-spacing:28.633807pt;}
.ws36{word-spacing:28.724134pt;}
.ws28{word-spacing:28.814462pt;}
.ws64{word-spacing:28.995117pt;}
.wsa0{word-spacing:29.175772pt;}
.ws9f{word-spacing:29.220935pt;}
.wsa1{word-spacing:29.356427pt;}
.ws9d{word-spacing:29.446754pt;}
.ws4e{word-spacing:29.627409pt;}
.wsff{word-spacing:30.015235pt;}
.ws8f{word-spacing:31.253303pt;}
.ws52{word-spacing:31.433958pt;}
.ws3a{word-spacing:31.659777pt;}
.ws35{word-spacing:31.930759pt;}
.ws1{word-spacing:32.135524pt;}
.ws0{word-spacing:32.199285pt;}
.ws2c{word-spacing:32.472724pt;}
.wsfe{word-spacing:32.743707pt;}
.ws3d{word-spacing:32.879198pt;}
.ws2b{word-spacing:32.924362pt;}
.wsa7{word-spacing:33.421163pt;}
.ws46{word-spacing:33.511490pt;}
.ws92{word-spacing:33.872800pt;}
.ws32{word-spacing:34.143782pt;}
.wsf2{word-spacing:34.188946pt;}
.ws6b{word-spacing:34.550256pt;}
.ws57{word-spacing:34.866402pt;}
.ws56{word-spacing:35.092221pt;}
.ws8a{word-spacing:35.950332pt;}
.ws73{word-spacing:36.266478pt;}
.wsdb{word-spacing:36.582624pt;}
.ws9c{word-spacing:36.853606pt;}
.ws9b{word-spacing:36.898770pt;}
.wsf8{word-spacing:37.034261pt;}
.ws90{word-spacing:38.027863pt;}
.ws82{word-spacing:38.554514pt;}
.ws44{word-spacing:38.614992pt;}
.ws53{word-spacing:38.976302pt;}
.wsca{word-spacing:39.337612pt;}
.wsc9{word-spacing:39.427939pt;}
.ws2d{word-spacing:40.060231pt;}
.wsfb{word-spacing:40.647360pt;}
.wsf9{word-spacing:40.828015pt;}
.wsfa{word-spacing:40.918342pt;}
.wse5{word-spacing:41.324816pt;}
.ws55{word-spacing:42.318418pt;}
.ws74{word-spacing:43.357184pt;}
.wsba{word-spacing:43.899149pt;}
.wsc4{word-spacing:44.034640pt;}
.ws31{word-spacing:44.350786pt;}
.wsf1{word-spacing:45.931517pt;}
.wsdd{word-spacing:45.976681pt;}
.ws65{word-spacing:53.428697pt;}
.ws86{word-spacing:55.822374pt;}
.wscd{word-spacing:55.867538pt;}
.wse3{word-spacing:59.345146pt;}
._d{margin-left:-3.225135pt;}
._e{margin-left:-1.875652pt;}
._1{margin-left:-0.892662pt;}
._2{width:1.115811pt;}
._12{width:9.213402pt;}
._a{width:10.613477pt;}
._c{width:11.516752pt;}
._0{width:12.667305pt;}
._5{width:13.774939pt;}
._10{width:15.509670pt;}
._11{width:16.710581pt;}
._13{width:18.110657pt;}
._3{width:20.403405pt;}
._6{width:22.762522pt;}
._7{width:24.569071pt;}
._8{width:26.556275pt;}
._4{width:29.040281pt;}
._f{width:29.943555pt;}
._16{width:31.205430pt;}
._9{width:35.318039pt;}
._b{width:39.563430pt;}
._15{width:47.060610pt;}
._14{width:60.293584pt;}
.fs3{font-size:28.334400pt;}
.fs7{font-size:30.106133pt;}
.fsa{font-size:31.613333pt;}
.fs2{font-size:31.876267pt;}
.fsc{font-size:37.193600pt;}
.fsb{font-size:39.849600pt;}
.fs4{font-size:42.507733pt;}
.fs6{font-size:45.163733pt;}
.fs1{font-size:47.820267pt;}
.fs5{font-size:53.133867pt;}
.fs8{font-size:58.448000pt;}
.fs0{font-size:106.268267pt;}
.fs9{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:27.892933pt;}
.y7a{bottom:67.426023pt;}
.ya6{bottom:67.426506pt;}
.y5f{bottom:67.427181pt;}
.y38{bottom:67.428927pt;}
.y79{bottom:82.013909pt;}
.ya5{bottom:82.014392pt;}
.y5e{bottom:82.015067pt;}
.y37{bottom:82.016813pt;}
.y78{bottom:96.680832pt;}
.ya4{bottom:96.681314pt;}
.y5d{bottom:96.681989pt;}
.y36{bottom:96.683735pt;}
.y77{bottom:111.268718pt;}
.ya3{bottom:111.269200pt;}
.y5c{bottom:111.269875pt;}
.y35{bottom:111.271621pt;}
.ya2{bottom:116.258267pt;}
.y76{bottom:125.856603pt;}
.y5b{bottom:125.857761pt;}
.y34{bottom:125.859507pt;}
.y75{bottom:140.523526pt;}
.y5a{bottom:140.524683pt;}
.y33{bottom:140.526429pt;}
.y74{bottom:155.111412pt;}
.y59{bottom:155.112569pt;}
.y32{bottom:155.114315pt;}
.y73{bottom:169.699298pt;}
.y58{bottom:169.700455pt;}
.y31{bottom:169.702201pt;}
.ya1{bottom:184.288341pt;}
.y72{bottom:184.366220pt;}
.y57{bottom:184.367378pt;}
.y30{bottom:184.369123pt;}
.y71{bottom:198.954106pt;}
.y56{bottom:198.955263pt;}
.y2f{bottom:198.957009pt;}
.y70{bottom:213.541992pt;}
.y55{bottom:213.543149pt;}
.y2e{bottom:213.544895pt;}
.y6f{bottom:228.129878pt;}
.y54{bottom:228.131035pt;}
.y2d{bottom:228.132781pt;}
.y6e{bottom:242.796800pt;}
.y53{bottom:242.797958pt;}
.y2c{bottom:242.799703pt;}
.y52{bottom:257.385843pt;}
.y2b{bottom:257.387589pt;}
.y51{bottom:271.973729pt;}
.y2a{bottom:271.975475pt;}
.y50{bottom:286.640652pt;}
.y29{bottom:286.642398pt;}
.yaf{bottom:286.886822pt;}
.yae{bottom:298.147185pt;}
.y4f{bottom:301.228538pt;}
.y28{bottom:301.230283pt;}
.yad{bottom:309.481934pt;}
.y4e{bottom:315.816423pt;}
.y27{bottom:315.818169pt;}
.yac{bottom:320.742297pt;}
.y4d{bottom:330.483346pt;}
.y26{bottom:330.485092pt;}
.yab{bottom:332.002659pt;}
.yaa{bottom:343.337409pt;}
.y4c{bottom:345.071232pt;}
.y25{bottom:345.072978pt;}
.ya9{bottom:354.597771pt;}
.y4b{bottom:359.659118pt;}
.y24{bottom:359.660863pt;}
.ya8{bottom:365.858133pt;}
.y4a{bottom:374.326040pt;}
.y23{bottom:374.327786pt;}
.ya7{bottom:377.196800pt;}
.y49{bottom:388.913926pt;}
.y22{bottom:388.915672pt;}
.y48{bottom:403.501812pt;}
.y21{bottom:403.503558pt;}
.y47{bottom:418.089698pt;}
.y20{bottom:418.091443pt;}
.ya0{bottom:418.168734pt;}
.yc4{bottom:418.168817pt;}
.yd5{bottom:418.175784pt;}
.yd4{bottom:428.831750pt;}
.y46{bottom:432.756620pt;}
.yc3{bottom:432.756703pt;}
.y1f{bottom:432.758366pt;}
.yd3{bottom:439.413330pt;}
.y45{bottom:447.344506pt;}
.y1e{bottom:447.346252pt;}
.yc2{bottom:447.423625pt;}
.yd2{bottom:450.069296pt;}
.yf5{bottom:451.361774pt;}
.y44{bottom:461.932392pt;}
.y1d{bottom:461.934138pt;}
.y9f{bottom:462.011428pt;}
.yc1{bottom:462.011511pt;}
.yf4{bottom:462.017740pt;}
.yd1{bottom:472.673706pt;}
.y43{bottom:476.599314pt;}
.yc0{bottom:476.599397pt;}
.y1c{bottom:476.601060pt;}
.yd0{bottom:483.329673pt;}
.yf3{bottom:484.622150pt;}
.y40{bottom:491.186878pt;}
.y42{bottom:491.187200pt;}
.y9e{bottom:491.187283pt;}
.y1b{bottom:491.188946pt;}
.ycf{bottom:493.911252pt;}
.yf1{bottom:495.203730pt;}
.yf2{bottom:495.352504pt;}
.y41{bottom:496.176267pt;}
.y3f{bottom:505.774764pt;}
.y6a{bottom:505.775086pt;}
.y9d{bottom:505.775169pt;}
.y1a{bottom:505.776832pt;}
.ybf{bottom:505.854205pt;}
.yf0{bottom:505.859696pt;}
.yef{bottom:516.515662pt;}
.yce{bottom:520.365200pt;}
.y3e{bottom:520.441687pt;}
.y69{bottom:520.442008pt;}
.y9c{bottom:520.442091pt;}
.y19{bottom:520.443754pt;}
.y3d{bottom:535.029573pt;}
.y68{bottom:535.029894pt;}
.y9b{bottom:535.029977pt;}
.y18{bottom:535.031640pt;}
.yee{bottom:539.045686pt;}
.y3c{bottom:549.617458pt;}
.y67{bottom:549.617780pt;}
.y9a{bottom:549.617863pt;}
.y17{bottom:549.619526pt;}
.ybe{bottom:549.696899pt;}
.yed{bottom:549.701652pt;}
.yec{bottom:560.357618pt;}
.y3b{bottom:564.205344pt;}
.y66{bottom:564.205666pt;}
.y16{bottom:564.207412pt;}
.y99{bottom:564.284785pt;}
.yeb{bottom:570.939198pt;}
.y3a{bottom:578.872267pt;}
.y65{bottom:578.872588pt;}
.y98{bottom:578.872671pt;}
.y15{bottom:578.874334pt;}
.y39{bottom:583.861200pt;}
.y64{bottom:593.460474pt;}
.y97{bottom:593.460557pt;}
.y14{bottom:593.462220pt;}
.ybd{bottom:593.539593pt;}
.yea{bottom:593.543608pt;}
.y63{bottom:608.048360pt;}
.y13{bottom:608.050106pt;}
.y96{bottom:608.127479pt;}
.ye9{bottom:616.148018pt;}
.y62{bottom:622.715282pt;}
.y95{bottom:622.715365pt;}
.y12{bottom:622.717028pt;}
.ye8{bottom:626.803985pt;}
.y61{bottom:637.303168pt;}
.y94{bottom:637.303251pt;}
.y11{bottom:637.304914pt;}
.ybc{bottom:637.382287pt;}
.ye7{bottom:637.385564pt;}
.y60{bottom:651.891054pt;}
.y10{bottom:651.892800pt;}
.y93{bottom:651.970173pt;}
.ye6{bottom:659.989974pt;}
.y92{bottom:666.558059pt;}
.ye5{bottom:670.645941pt;}
.y91{bottom:681.145945pt;}
.yf{bottom:692.250704pt;}
.ye4{bottom:693.175964pt;}
.y90{bottom:695.733831pt;}
.ybb{bottom:695.812867pt;}
.ye3{bottom:703.831930pt;}
.ye{bottom:708.204147pt;}
.y8f{bottom:710.400753pt;}
.yd{bottom:724.077890pt;}
.y8e{bottom:724.988639pt;}
.ye2{bottom:726.436341pt;}
.ye1{bottom:737.017920pt;}
.yba{bottom:739.655562pt;}
.yc{bottom:740.031333pt;}
.y8d{bottom:754.243447pt;}
.ye0{bottom:759.622330pt;}
.y8a{bottom:768.828944pt;}
.yb9{bottom:768.830851pt;}
.y8c{bottom:768.831333pt;}
.ydf{bottom:770.278297pt;}
.yb{bottom:773.062006pt;}
.y8b{bottom:773.895867pt;}
.yde{bottom:780.859876pt;}
.y89{bottom:783.495867pt;}
.yb8{bottom:783.497773pt;}
.ycd{bottom:783.498256pt;}
.y87{bottom:783.498982pt;}
.ya{bottom:785.686803pt;}
.y88{bottom:788.484800pt;}
.yb7{bottom:798.085659pt;}
.ycc{bottom:798.086142pt;}
.y86{bottom:798.086867pt;}
.y9{bottom:798.311600pt;}
.y8{bottom:801.486400pt;}
.ydd{bottom:803.464286pt;}
.y7{bottom:810.935200pt;}
.yb6{bottom:812.673545pt;}
.ycb{bottom:812.674027pt;}
.y85{bottom:812.674753pt;}
.y6{bottom:814.110000pt;}
.ydc{bottom:814.120253pt;}
.y3{bottom:823.558800pt;}
.y5{bottom:824.239200pt;}
.ydb{bottom:824.776219pt;}
.y4{bottom:827.187200pt;}
.yb5{bottom:827.261431pt;}
.yca{bottom:827.261913pt;}
.y84{bottom:827.262639pt;}
.yda{bottom:835.357798pt;}
.yb4{bottom:841.928353pt;}
.yc9{bottom:841.928836pt;}
.y83{bottom:841.929562pt;}
.yb3{bottom:856.516239pt;}
.yc8{bottom:856.516722pt;}
.y82{bottom:856.517447pt;}
.yd9{bottom:857.962209pt;}
.y2{bottom:861.653913pt;}
.yd8{bottom:868.618175pt;}
.y7f{bottom:871.102944pt;}
.yb2{bottom:871.104125pt;}
.yc7{bottom:871.104607pt;}
.y81{bottom:871.105333pt;}
.y80{bottom:876.169867pt;}
.y7e{bottom:885.769867pt;}
.y7c{bottom:885.770290pt;}
.yb1{bottom:885.771047pt;}
.yc6{bottom:885.771530pt;}
.y1{bottom:889.549333pt;}
.y7d{bottom:890.758800pt;}
.yd7{bottom:891.148198pt;}
.y7b{bottom:900.358175pt;}
.yb0{bottom:900.358933pt;}
.yc5{bottom:900.359416pt;}
.yd6{bottom:901.804165pt;}
.y6d{bottom:964.308400pt;}
.y6c{bottom:993.637467pt;}
.h5{height:20.712446pt;}
.h9{height:22.007583pt;}
.h4{height:23.301551pt;}
.hf{height:27.188522pt;}
.he{height:29.130058pt;}
.h6{height:31.073153pt;}
.hc{height:32.924362pt;}
.h8{height:33.014689pt;}
.hd{height:33.967909pt;}
.h3{height:34.956615pt;}
.h7{height:38.840857pt;}
.ha{height:42.725488pt;}
.h2{height:77.682103pt;}
.hb{height:92.962858pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x12{left:70.828267pt;}
.x1{left:79.672400pt;}
.x13{left:82.096618pt;}
.x6{left:84.056667pt;}
.x7{left:91.008497pt;}
.x2{left:157.530667pt;}
.x3{left:165.845600pt;}
.x22{left:215.508533pt;}
.x23{left:225.259733pt;}
.x4{left:235.388933pt;}
.x5{left:242.872400pt;}
.x14{left:293.970982pt;}
.x8{left:302.894152pt;}
.x15{left:305.239334pt;}
.xb{left:314.162458pt;}
.x9{left:317.102267pt;}
.xa{left:326.853467pt;}
.xc{left:392.617200pt;}
.xd{left:405.089600pt;}
.x21{left:447.798267pt;}
.x16{left:517.113698pt;}
.xe{left:526.026787pt;}
.xf{left:537.295138pt;}
.x17{left:555.288000pt;}
.x18{left:563.451867pt;}
.x11{left:587.867600pt;}
.x1f{left:603.968400pt;}
.x20{left:613.719467pt;}
.x19{left:645.618800pt;}
.x1d{left:647.054933pt;}
.x1a{left:650.305333pt;}
.x1e{left:651.666000pt;}
.x10{left:684.169867pt;}
.x1b{left:716.522667pt;}
.x1c{left:721.209200pt;}
}

